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

:root {
    /* Color Palette */
    --primary-blue: #0D1D34;
    --rich-gold: #D4AF37;
    --soft-gold: #E0C56E;
    --alabaster: #F8F8F8;
    --charcoal: #333333;
    --light-gray: #EAEAEA;
    --white: #FFFFFF;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 64px;
    --space-xxxl: 96px;
    
    /* Container */
    --container-max: 1280px;
    --container-padding: 32px;
    
    /* Shadows */
    --shadow-light: 0 5px 15px rgba(13, 29, 52, 0.08);
    --shadow-medium: 0 10px 30px rgba(13, 29, 52, 0.1);
    --shadow-heavy: 0 20px 60px rgba(13, 29, 52, 0.15);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--alabaster);
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: clamp(40px, 5vw, 64px);
    color: var(--rich-gold);
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--primary-blue);
    line-height: 1.3;
}

h3 {
    font-size: clamp(24px, 3vw, 32px);
    color: var(--primary-blue);
    line-height: 1.4;
}

h4 {
    font-family: var(--font-sans);
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--rich-gold);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

p {
    margin-bottom: var(--space-md);
    color: var(--charcoal);
}

.lead-text {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 400;
    color: var(--primary-blue);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

/* ===== Containers & Layout ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-xxxl) 0;
}

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

.section-title {
    margin-bottom: var(--space-md);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--rich-gold), var(--soft-gold));
    margin: 0 auto var(--space-md);
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--charcoal);
    max-width: 600px;
    margin: 0 auto;
}



/* ===== Hero Section ===== */
.hero {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin: var(--space-lg) 0;
    margin-bottom: 150vh;
}

.hero-link {
    display: block;
    width: 100%;
    max-width: 800px;
    height: 100%;
    text-decoration: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    background: #000000;
}

.hero-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: var(--transition-smooth);
}

.hero-link:hover .hero-image {
    transform: scale(1.02);
}

.hero-link:focus {
    outline: 3px solid var(--rich-gold);
    outline-offset: 3px;
}

/* ===== About Section ===== */
.about-section {
    background: var(--white);
}

.hero-title-moved {
    font-family: var(--font-serif);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--rich-gold);
    letter-spacing: -1px;
    margin-bottom: var(--space-md);
    text-align: center;
}

.hero-subtitle-moved {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--primary-blue);
    margin-bottom: var(--space-xl);
    text-align: center;
    font-weight: 400;
    line-height: 1.6;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xxl);
    align-items: start;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about-features {
    background: var(--alabaster);
    padding: var(--space-xl);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    font-size: 24px;
    color: var(--rich-gold);
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-item h4 {
    margin-bottom: var(--space-xs);
    font-size: 18px;
    text-transform: none;
    letter-spacing: normal;
}

.feature-item p {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--charcoal);
}

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

.hotel-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xxxl);
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.hotel-card:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.hotel-card:nth-child(even) .hotel-image {
    order: 2;
}

.hotel-card:nth-child(even) .hotel-content {
    order: 1;
}

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

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

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

.hotel-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--rich-gold);
    color: var(--primary-blue);
    padding: var(--space-xs) var(--space-md);
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hotel-content {
    padding: var(--space-xl);
}

.hotel-title {
    margin-bottom: var(--space-lg);
    color: var(--primary-blue);
}

.hotel-details {
    display: grid;
    gap: var(--space-lg);
}

.detail-section {
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--light-gray);
}

.detail-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-section h4 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--rich-gold);
}

.detail-section h4 i {
    font-size: 18px;
}

.detail-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
    color: var(--charcoal);
}

/* ===== Features Section ===== */
.features-section {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
}

.features-content h3 {
    font-size: clamp(28px, 3.5vw, 36px);
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
}

.features-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.benefits-list {
    display: grid;
    gap: var(--space-lg);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--alabaster);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.benefit-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-light);
    transform: translateX(10px);
}

.benefit-item i {
    font-size: 24px;
    color: var(--rich-gold);
    margin-top: 5px;
    flex-shrink: 0;
}

.benefit-item h4 {
    margin-bottom: var(--space-xs);
    font-size: 18px;
    text-transform: none;
    letter-spacing: normal;
    color: var(--primary-blue);
}

.benefit-item p {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--charcoal);
    line-height: 1.6;
}

.features-images {
    position: relative;
}

.image-stack {
    position: relative;
    height: 600px;
}

.feature-image {
    position: absolute;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    object-fit: cover;
    transition: var(--transition-smooth);
}

.feature-image:hover {
    transform: scale(1.02);
    z-index: 3;
}

.feature-image.primary {
    width: 70%;
    height: 60%;
    top: 0;
    left: 0;
    z-index: 2;
}

.feature-image.secondary {
    width: 60%;
    height: 45%;
    bottom: 30%;
    right: 0;
    z-index: 1;
}

.feature-image.tertiary {
    width: 50%;
    height: 35%;
    bottom: 0;
    left: 20%;
    z-index: 1;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: var(--space-xxl) 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--rich-gold);
    margin-bottom: var(--space-md);
}

.footer-logo i {
    margin-right: var(--space-sm);
    font-size: 28px;
}

.footer-section h4 {
    color: var(--rich-gold);
    margin-bottom: var(--space-md);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-sm);
}

.footer-section ul li:last-child {
    margin-bottom: 0;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-section a:hover {
    color: var(--rich-gold);
}

.footer-section i {
    margin-right: var(--space-sm);
    color: var(--rich-gold);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    text-align: center;
}

.copyright {
    margin-bottom: var(--space-md);
}

.disclaimer {
    font-size: 14px;
    color: #CCCCCC;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Responsive Design ===== */

/* Tablet Styles */
@media screen and (max-width: 1024px) {
    :root {
        --container-padding: 24px;
    }
    
    .hero {
        height: 425px;
        margin-bottom: 150vh;
    }
    
    .hero-link {
        max-width: 90%;
    }
    
    .about-content,
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .hotel-card,
    .hotel-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .hotel-card:nth-child(even) .hotel-image,
    .hotel-card:nth-child(even) .hotel-content {
        order: initial;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
    
    .image-stack {
        height: 400px;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    :root {
        --container-padding: 16px;
        --space-xxxl: 48px;
        --space-xxl: 32px;
    }
    
    .hero {
        height: 350px;
        margin: var(--space-md) 0;
        margin-bottom: 150vh;
    }
    
    .hero-link {
        max-width: 100%;
        border-radius: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .hotel-card {
        margin-bottom: var(--space-xl);
    }
    
    .hotel-image {
        min-height: 250px;
    }
    
    .hotel-content {
        padding: var(--space-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .features-images {
        order: -1;
    }
    
    .image-stack {
        height: 300px;
        margin-bottom: var(--space-lg);
    }
    
    .feature-image.primary {
        width: 80%;
        height: 70%;
    }
    
    .feature-image.secondary {
        width: 70%;
        height: 50%;
    }
    
    .feature-image.tertiary {
        width: 60%;
        height: 40%;
    }
}

@media screen and (max-width: 480px) {
    .section {
        padding: var(--space-xxl) 0;
    }
    
    body {
        font-size: 16px;
    }
    
    .hero {
        height: 280px;
        margin: var(--space-sm) 0;
        margin-bottom: 150vh;
    }
    
    .hero-content {
        padding: 0 var(--space-md);
    }
    
    .hotel-content {
        padding: var(--space-md);
    }
    
    .about-features {
        padding: var(--space-lg);
    }
    
    .benefit-item {
        padding: var(--space-sm);
    }
}

/* ===== Scroll Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== Accessibility & Focus States ===== */
.btn-primary:focus,
.btn-secondary:focus {
    outline: 3px solid var(--rich-gold);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== Print Styles ===== */
@media print {
    body {
        background: white;
        color: black;
        font-size: 12pt;
    }
    
    .hero {
        height: auto;
        padding: var(--space-xl) 0;
    }
}