* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

header {
    padding: 1rem 0;
    background: transparent;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

footer {
    background: #f8f9fa;
    padding: 1rem 0;
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    border-top: 1px solid #e5e7eb;
}

.container {
    text-align: center;
    position: relative;
}

.rainier-r {
    width: 400px;
    height: 400px;
    margin: 0 auto 2rem auto;
    animation: subtleGlow 3s ease-in-out infinite alternate;
    transform: rotate(-2deg);
}

.rainier-r img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.3));
}

.subtitle {
    font-size: 2.5rem;
    color: #374151;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.contact-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.contact-btn:active {
    transform: translateY(0);
}

@keyframes subtleGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.3));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(220, 38, 38, 0.5));
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .rainier-r {
        width: 300px;
        height: 300px;
    }
    
    .subtitle {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .rainier-r {
        width: 200px;
        height: 200px;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #ffffff;
    margin: 15% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #dc2626;
}

.modal-content h2 {
    margin: 0 0 20px 0;
    color: #374151;
    font-size: 1.8rem;
    font-weight: 600;
}

.modal-content p {
    margin: 0;
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
}

.modal-content a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.modal-content a:hover {
    color: #b91c1c;
    text-decoration: underline;
}
