/* ===== CSS Variables ===== */
:root {
    /* Color Palette */
    --onyx-black: #000000;
    --luxe-gold: #D4AF37;
    --crimson-red: #A41E22;
    --alabaster-white: #F5F5F5;
    --charcoal-gray: #AAAAAA;
    --dark-overlay: rgba(0, 0, 0, 0.7);
    --light-black: #000000;
    --darker-black: #000000;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    --spacing-section: 96px;

    /* Breakpoints */
    --mobile: 768px;
    --tablet: 1024px;
    --desktop: 1200px;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--alabaster-white);
    background-color: var(--onyx-black);
    overflow-x: hidden;
}

.container {
    max-width: var(--desktop);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--luxe-gold);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.4;
    font-weight: 500;
    color: var(--alabaster-white);
}

h4 {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.25px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    body {
        font-size: 1rem;
    }
}

/* ===== Age Verification Section ===== */
.age-verification {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--onyx-black);
    padding: var(--spacing-xxl) 0;
    margin-bottom: 300px;
}

.age-verification-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.age-verification-img {
    max-width: 90%;
    max-height: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.age-verification-img:hover {
    transform: scale(1.02);
}

.age-verification-content a {
    display: inline-block;
    text-decoration: none;
}

@media (max-width: 768px) {
    .age-verification {
        min-height: 100vh;
        padding: var(--spacing-xl) 0;
        margin-bottom: 250px;
    }
    
    .age-verification-img {
        max-width: 95%;
        max-height: 450px;
    }
}



/* ===== Sections ===== */
.section {
    padding: var(--spacing-section) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--luxe-gold);
}

/* ===== About Section ===== */
.about {
    background: linear-gradient(135deg, var(--onyx-black) 0%, var(--light-black) 100%);
}

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

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

/* ===== Hotels Section ===== */
.hotels {
    background: var(--onyx-black);
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
}

@media (max-width: 768px) {
    .hotels-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

.hotel-card {
    background: var(--light-black);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

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

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

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

.hotel-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(18, 18, 18, 0.5) 100%);
}

.hotel-content {
    padding: var(--spacing-lg);
}

.hotel-name {
    color: var(--luxe-gold);
    margin-bottom: var(--spacing-xs);
    font-size: 1.5rem;
}

.hotel-location {
    color: var(--charcoal-gray);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
}

.hotel-description {
    color: var(--alabaster-white);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== Additional Content Section ===== */
.additional-content {
    background: linear-gradient(135deg, var(--light-black) 0%, var(--onyx-black) 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

.content-item {
    padding: var(--spacing-lg);
    background: rgba(18, 18, 18, 0.5);
    border-radius: 8px;
    border-left: 4px solid var(--luxe-gold);
}

.content-title {
    color: var(--luxe-gold);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.content-text {
    line-height: 1.6;
    color: var(--alabaster-white);
}

/* ===== Disclaimer Section ===== */
.disclaimer {
    background: var(--darker-black);
    border-top: 2px solid var(--luxe-gold);
}

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

.disclaimer-title {
    color: var(--luxe-gold);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.disclaimer-text {
    color: var(--charcoal-gray);
    font-size: 0.875rem;
    line-height: 1.6;
    letter-spacing: 0.25px;
}

/* ===== Footer ===== */
.footer {
    background: var(--onyx-black);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--charcoal-gray);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-brand h4 {
    color: var(--luxe-gold);
    margin: 0;
    font-size: 1.25rem;
}

.footer-copyright p {
    color: var(--charcoal-gray);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

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

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

/* ===== AOS Override ===== */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--onyx-black);
}

::-webkit-scrollbar-thumb {
    background: var(--luxe-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8941f;
}

/* ===== Focus States ===== */
*:focus {
    outline: 2px solid var(--luxe-gold);
    outline-offset: 2px;
}

.nav-link:focus,
.hotel-card:focus {
    outline: 2px solid var(--luxe-gold);
    outline-offset: 2px;
}

/* ===== Additional Responsive Adjustments ===== */
@media (max-width: 520px) {
    .hotels-grid {
        grid-template-columns: 1fr;
    }
    
    .hotel-card {
        margin-bottom: var(--spacing-md);
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
}