/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #F0F2F5;
    background: #000000;
    letter-spacing: 0.1px;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Age Verification Section */
.age-verification {
    background: #000000;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center; /* Vertically center */
    justify-content: center; /* Horizontally center */
    text-align: center;
    border-bottom: 2px solid #C0A062;
}

.age-verification-container {
    max-width: 1280px;
    padding: 0 24px;
}

.age-verification-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.age-verification-link:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}

.age-verification-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 12px 40px rgba(192, 160, 98, 0.4);
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    cursor: pointer;
}

.age-verification-image:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 50px rgba(192, 160, 98, 0.6);
}

.age-verification-text {
    color: #C0A062;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .age-verification-image {
        max-width: 350px;
    }
    
    .age-verification {
        height: 100vh; /* Maintain full viewport height on mobile */
    }
    
    .hero {
        margin-top: 600px; /* Reduced but still massive spacing for mobile */
    }
}

@media (max-width: 480px) {
    .age-verification-image {
        max-width: 280px;
    }
    
    .age-verification {
        height: 100vh; /* Maintain full viewport height on small screens */
    }
    
    .hero {
        margin-top: 500px; /* Still substantial spacing for very small screens */
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 1000px; /* Massive spacing - increased from 200px to 1000px */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 24px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #F0F2F5;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 24px;
    color: #C0A062;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-btn {
    display: inline-block;
    padding: 16px 32px;
    background: #C0A062;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(192, 160, 98, 0.4);
}

.hero-btn:hover {
    background: #D4B67A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 160, 98, 0.6);
}

/* Section Styles */
section {
    padding: 120px 0; /* Increased spacing significantly */
}

.section-header {
    text-align: center;
    margin-bottom: 5rem; /* Increased spacing */
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.3;
    color: #C0A062;
    margin-bottom: 1rem;
    letter-spacing: 0.25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #C0A062, #D4B67A);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    color: #A9B4C2;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #000000;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    margin-bottom: 2rem;
    font-size: 18px;
    line-height: 1.8;
    color: #F0F2F5;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

/* Featured Hotels Section */
.featured {
    background: #000000;
    padding: 120px 0; /* Substantial spacing */
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem; /* Increased gap */
    margin-top: 4rem;
}

.hotel-card {
    background: #1a1a1a; /* Dark gray for better contrast against black */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.8);
    border-color: #C0A062;
}

.hotel-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}

.hotel-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(192, 160, 98, 0.9);
    color: #0D1B2A;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hotel-content {
    padding: 32px 24px;
}

.hotel-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 24px;
    color: #C0A062;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.hotel-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-section {
    border-left: 3px solid #415A77;
    padding-left: 16px;
}

.detail-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 18px;
    color: #F0F2F5;
    margin-bottom: 0.5rem;
}

.detail-text {
    font-size: 16px;
    line-height: 1.6;
    color: #A9B4C2;
}

/* Additional Content Section */
.additional-content {
    background: #000000;
    padding: 120px 0; /* Substantial spacing */
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem; /* Increased gap */
}

.content-card {
    background: #1a1a1a; /* Dark gray for contrast */
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333333;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.content-card:hover {
    background: #222222;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8);
    border-color: #C0A062;
}

.content-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 20px;
    color: #C0A062;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.content-text {
    color: #D0D0D0; /* Lighter gray for better readability on black */
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid #333333;
    padding: 80px 0 40px; /* Increased padding */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem; /* Increased margin */
    padding-bottom: 2rem;
    border-bottom: 1px solid #333333;
}

.footer-brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 24px;
    color: #C0A062;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.footer-tagline {
    color: #D0D0D0; /* Lighter for better contrast */
    font-style: italic;
}

.footer-copyright {
    color: #D0D0D0; /* Lighter for better contrast */
    font-size: 14px;
}

.disclaimer {
    background: #1a1a1a; /* Dark gray */
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #C0A062;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.disclaimer-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 18px;
    color: #C0A062;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.disclaimer-text {
    color: #D0D0D0; /* Lighter for better readability */
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.disclaimer-text:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Typography */
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    body {
        font-size: 16px;
    }

    /* Sections */
    section {
        padding: 80px 0; /* Reduced but still substantial spacing for mobile */
    }
    
    .hero {
        margin-top: 600px; /* Consistent with the earlier mobile responsive rule */
    }

    .hotel-name {
        font-size: 20px;
    }

    .detail-title {
        font-size: 16px;
    }

    .detail-text {
        font-size: 14px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    /* Grid adjustments */
    .hotels-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hotel-content {
        padding: 24px 16px;
    }

    .content-card {
        padding: 1.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus states for accessibility */
.hero-btn:focus,
.age-verification-image:focus,
.age-verification-link:focus {
    outline: 2px solid #C0A062;
    outline-offset: 2px;
}

/* High contrast for better readability */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: linear-gradient(45deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8));
    }
    
    .detail-text, .about-text, .content-text {
        color: #F0F2F5;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}