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

:root {
    --emerald-green: #046c53;
    --emerald-dark: #02392d;
    --gold-accent: #d4af37;
    --gold-light: #f4e5c2;
    --white: #ffffff;
    --cream: #faf8f5;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--white);
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(4, 108, 83, 0.9), rgba(2, 57, 45, 0.95)),
                url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2940&q=80') center/cover no-repeat;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.brand {
    margin-bottom: 4rem;
}

.resort-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.location {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    color: var(--gold-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.main-content {
    margin-bottom: 4rem;
}

.coming-soon {
    margin-bottom: 3rem;
}

.coming-soon-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--gold-accent);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    color: var(--cream);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-section {
    margin-top: 3rem;
}

.contact-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.email-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
    color: var(--emerald-dark);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.email-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-accent));
}

.email-text {
    font-weight: 500;
}

.email-icon {
    transition: transform 0.3s ease;
}

.email-button:hover .email-icon {
    transform: translateX(2px);
}

.footer {
    position: absolute;
    bottom: 0rem;
    left: 0;
    right: 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold-accent);
    color: var(--emerald-dark);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 1.5rem;
    }
    
    .brand {
        margin-bottom: 3rem;
    }
    
    .contact-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .footer {
        bottom: 1rem;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        background: linear-gradient(135deg, rgba(4, 108, 83, 0.95), rgba(2, 57, 45, 1)),
                    url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2940&q=80') center/cover no-repeat;
    }
    
    .contact-content {
        padding: 1.5rem 1rem;
    }
    
    .email-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Animation and Transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand {
    animation: fadeInUp 1s ease-out;
}

.coming-soon {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.contact-section {
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* High resolution optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-section {
        background-image: linear-gradient(135deg, rgba(4, 108, 83, 0.9), rgba(2, 57, 45, 0.95)),
                          url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2940&q=80&dpr=2');
    }
}
