/* Color Variables */
:root {
    /* Primary Colors */
    --primary-dark: #0D1B2A;
    --primary-accent: #C0A062;
    --primary-light: #F8F9FA;
    
    /* Text Colors */
    --text-dark: #1D1D1F;
    --text-light: #F5F5F5;
    --text-muted: #778DA9;
    
    /* Font Families */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Spacing Scale */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    
    /* Container */
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease-in-out;
    --transition-fast: all 0.2s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: var(--primary-accent);
}

h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--primary-dark);
}

h3 {
    font-size: clamp(22px, 3vw, 28px);
    color: var(--primary-dark);
}

h4 {
    font-size: clamp(18px, 2.5vw, 20px);
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-dark);
}

p {
    margin-bottom: var(--spacing-sm);
    font-size: 16px;
    line-height: 1.7;
}

/* Layout Components */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xxl) 0;
}

.section__title {
    margin-bottom: var(--spacing-xl);
}

.section__title.centered {
    text-align: center;
}



/* Hero Section */
.hero {
    height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--text-light);
}

.hero__overlay {
    display: none;
}

.hero__container {
    position: relative;
    z-index: 2;
}

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

.hero__title {
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
    font-size: 20px;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero__image-link {
    display: inline-block;
    transition: var(--transition-smooth);
}

.hero__image-link:hover {
    transform: scale(1.05);
}

.hero__image {
    max-width: 100%;
    max-height: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-family: var(--font-body);
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--primary-accent);
    color: var(--primary-dark);
    border-color: var(--primary-accent);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 160, 98, 0.3);
}

/* About Section */
.about {
    background: var(--primary-light);
    padding: var(--spacing-xxl) 0;
}

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

.about__description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

/* Hotels Section */
.hotels {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: var(--spacing-xxl) 0;
}

.hotel-card {
    background: var(--primary-light);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: var(--spacing-xl);
    transition: var(--transition-smooth);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    min-height: 400px;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-accent);
}

.hotel-card__image {
    overflow: hidden;
    position: relative;
}

.hotel-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.hotel-card__content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
}

.hotel-card__title {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xs);
}

.hotel-card__location {
    color: var(--primary-accent);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: var(--spacing-md);
}

/* Hotel Tabs */
.hotel-tabs {
    flex: 1;
}

.tab-buttons {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.tab-btn {
    padding: var(--spacing-xs) var(--spacing-sm);
    background: transparent;
    border: 2px solid var(--text-muted);
    color: var(--text-muted);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-accent);
    border-color: var(--primary-accent);
    color: var(--primary-dark);
}

.tab-content {
    flex: 1;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: var(--spacing-xxl) 0;
}

.features .section__title {
    color: var(--text-light);
}

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

.feature-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(192, 160, 98, 0.2);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-accent);
}

.feature-card__icon {
    font-size: 48px;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.feature-card h4 {
    color: var(--primary-accent);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--text-light);
    opacity: 0.9;
}

/* Disclaimer Section */
.disclaimer {
    background: var(--primary-light);
    padding: var(--spacing-xxl) 0;
    border-top: 1px solid rgba(192, 160, 98, 0.2);
}

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

.disclaimer__content p {
    margin-bottom: var(--spacing-md);
    font-size: 16px;
}

.disclaimer__notice {
    background: rgba(192, 160, 98, 0.1);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--primary-accent);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.footer__brand h3 {
    color: var(--primary-accent);
    margin: 0;
}

.footer__brand p {
    color: var(--text-light);
    opacity: 0.8;
    margin: 0;
}

.footer__bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
    color: var(--text-muted);
    margin: 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hotel-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hotel-card__image {
        height: 250px;
    }
    
    .tab-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
    
    .hero__subtitle {
        font-size: 18px;
    }
    
    .hotel-card {
        margin-bottom: var(--spacing-md);
    }
    
    .hotel-card__content {
        padding: var(--spacing-md);
    }
    
    .tab-buttons {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xs);
    }
    
    .tab-btn {
        font-size: 12px;
        padding: var(--spacing-xs);
    }
    
    .features__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .footer__content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    .hero__content {
        padding: 0 var(--spacing-sm);
    }
    
    .tab-buttons {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: var(--spacing-md);
    }
}

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

/* Focus states for keyboard navigation */
.btn:focus,
.tab-btn:focus {
    outline: 2px solid var(--primary-accent);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .btn {
        display: none;
    }
    
    .hero {
        background: none;
        color: var(--text-dark);
        height: auto;
        padding: var(--spacing-xl) 0;
    }
    
    .hotel-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid var(--text-muted);
    }
}
