/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #F5F5F5;
    background-color: #121212;
    overflow-x: hidden;
}

/* ===== VARIABLES ===== */
:root {
    /* Colors */
    --primary-black: #121212;
    --primary-gold: #A1824F;
    --accent-red: #9B1C26;
    --light-text: #F5F5F5;
    --dark-text: #333333;
    --card-bg: #1C1C1C;
    --pattern-bg: #151515;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 8rem 0;
    --container-padding: 0 1.5rem;
    --card-padding: 2rem;
    --border-radius: 8px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, var(--pattern-bg) 0%, var(--primary-black) 100%);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    color: var(--primary-gold);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -1px;
    color: var(--primary-gold);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    line-height: 1.4;
    color: var(--light-text);
}

h4 {
    font-size: 1.25rem;
    color: var(--primary-gold);
    margin-bottom: 0.75rem;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background-color: var(--primary-gold);
    color: var(--primary-black);
    box-shadow: 0 4px 15px rgba(161, 130, 79, 0.3);
}

.btn--primary:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 8px 25px rgba(161, 130, 79, 0.4);
}

.btn--secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
}

.btn--secondary:hover {
    background-color: var(--primary-gold);
    color: var(--primary-black);
}

/* ===== TOP HERO IMAGE ===== */
.top-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-black);
    padding: 2rem 0;
    border-bottom: 3px solid var(--primary-gold);
}

.top-hero__image-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 1.5rem;
}

.top-hero__link {
    display: inline-block;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.top-hero__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(161, 130, 79, 0.1) 0%,
        rgba(155, 28, 38, 0.1) 100%
    );
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

.top-hero__link:hover::before {
    opacity: 1;
}

.top-hero__link:focus {
    outline: 3px solid var(--primary-gold);
    outline-offset: 4px;
}

.top-hero__image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    display: block;
}

.top-hero__link:hover .top-hero__image {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(161, 130, 79, 0.4);
}

.top-hero__link:active .top-hero__image {
    transform: scale(0.98);
}

/* Click indicator for better UX */
.top-hero__link::after {
    content: '🔗';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(161, 130, 79, 0.9);
    color: var(--primary-black);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 0.9rem;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
    z-index: 2;
    pointer-events: none;
}

.top-hero__link:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 2rem;
}

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

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.1) translate(-20px, -10px);
    }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(18, 18, 18, 0.8) 0%,
        rgba(18, 18, 18, 0.6) 50%,
        rgba(161, 130, 79, 0.3) 100%
    );
    z-index: -1;
}

.hero__content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero__title {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    color: var(--light-text);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__cta {
    margin-top: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(161, 130, 79, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(161, 130, 79, 0.5);
    }
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-gold);
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

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

/* ===== SECTION HEADERS ===== */
.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.section__divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-red) 100%);
    margin: 2rem auto;
    border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about__text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.about__text:last-child {
    margin-bottom: 0;
}

/* ===== HOTELS SECTION ===== */
.hotels__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.hotel__card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hotel__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(161, 130, 79, 0.2);
}

.hotel__image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.hotel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.hotel__card:hover .hotel__image img {
    transform: scale(1.05);
}

.hotel__image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(28, 28, 28, 0.9));
}

.hotel__content {
    padding: var(--card-padding);
}

.hotel__name {
    font-size: 1.75rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.hotel__name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-red);
}

.hotel__section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(161, 130, 79, 0.1);
}

.hotel__section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.hotel__section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.hotel__section-title i {
    font-size: 1rem;
    opacity: 0.8;
}

.hotel__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--light-text);
    opacity: 0.9;
}

/* ===== INFORMATION SECTION ===== */
.info__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.info__item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.info__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-red) 100%);
    transition: var(--transition-slow);
}

.info__item:hover::before {
    left: 0;
}

.info__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(161, 130, 79, 0.15);
}

.info__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.info__item:hover .info__icon {
    transform: rotate(360deg);
}

.info__icon i {
    font-size: 2rem;
    color: var(--primary-black);
}

.info__title {
    font-size: 1.25rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.info__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--light-text);
    opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--pattern-bg) 0%, var(--primary-black) 100%);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(161, 130, 79, 0.2);
}

.footer__disclaimer {
    text-align: center;
    margin-bottom: 2rem;
}

.footer__disclaimer-title {
    font-size: 1.25rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.footer__disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--primary-gold);
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.footer__divider {
    width: 100%;
    height: 1px;
    background: rgba(161, 130, 79, 0.3);
    margin: 2rem 0 1rem;
}

.footer__copyright-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--light-text);
    opacity: 0.7;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
    :root {
        --section-padding: 4rem 0;
    }
    
    .hotels__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info__grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
        --card-padding: 1.5rem;
    }
    
    /* EXTREME MOBILE: Full-screen hero image only */
    .top-hero {
        padding: 0; /* Remove padding for full-screen effect */
        min-height: 100vh; /* Full viewport height */
        height: 100vh; /* Explicit full height */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .top-hero__image-container {
        padding: 0 1rem;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .top-hero__link {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .top-hero__image {
        max-height: 100vh;
        max-width: 100%;
        object-fit: cover;
    }

    .top-hero__link::after {
        top: 1rem;
        right: 1rem;
        font-size: 0.9rem;
        padding: 0.5rem;
    }
    
    /* Hide main hero section on mobile to focus on top hero */
    .hero {
        display: none;
    }
    
    /* EXTREME SPACING: Push ALL text content dramatically lower */
    .about.section {
        margin-top: 70vh; /* Massive top margin - more than 50vh requested */
        padding-top: 10rem; /* Additional massive padding */
    }
    
    .hotels.section {
        margin-top: 8rem; /* Large spacing between sections */
    }
    
    .information.section {
        margin-top: 8rem; /* Large spacing between sections */
    }
    
    .hotels__grid {
        grid-template-columns: 1fr;
        gap: 3rem; /* Increased gap */
        margin-top: 8rem; /* Push hotel cards much lower */
    }
    
    .hotel__card {
        margin: 0 auto 5rem auto; /* Large bottom margin between cards */
        max-width: 500px;
    }
    
    .info__grid {
        grid-template-columns: 1fr;
        gap: 3rem; /* Increased gap */
        margin-top: 8rem; /* Push info grid much lower */
    }
    
    .section__header {
        margin-bottom: 6rem; /* Massive margin for section headers */
    }
    
    .hotel__section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .info__item {
        margin-bottom: 3rem; /* Extra spacing between info items */
    }
}

@media screen and (max-width: 480px) {
    :root {
        --section-padding: 2rem 0;
        --card-padding: 1rem;
        --container-padding: 0 1rem;
    }
    
    /* EXTREME SMALL MOBILE: Full-screen photo dominance */
    .top-hero {
        padding: 0; /* No padding for absolute full-screen */
        min-height: 100vh; /* Full viewport height */
        height: 100vh; /* Explicit full height */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .top-hero__image-container {
        padding: 0 0.5rem; /* Minimal padding for edge protection */
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .top-hero__image {
        max-height: 100vh;
        max-width: 100%;
        object-fit: cover;
        width: 100%; /* Ensure full width on small screens */
    }

    .top-hero__link::after {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 0.8rem;
        padding: 0.4rem;
    }

    /* Enhanced touch targets for mobile */
    .top-hero__link {
        -webkit-tap-highlight-color: rgba(161, 130, 79, 0.3);
        touch-action: manipulation;
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Keep hero hidden on small mobile too */
    .hero {
        display: none;
    }
    
    /* MAXIMUM SPACING: Even more dramatic push for small phones */
    .about.section {
        margin-top: 80vh; /* Extreme spacing - more than 50vh requested */
        padding-top: 12rem; /* Maximum padding for dramatic effect */
    }
    
    .hotels.section {
        margin-top: 10rem; /* Maximum spacing between sections */
    }
    
    .information.section {
        margin-top: 10rem; /* Maximum spacing between sections */
    }
    
    .hotels__grid {
        gap: 4rem; /* Maximum gap between hotel cards */
        margin-top: 10rem; /* Push hotel cards to maximum distance */
    }
    
    .hotel__card {
        margin: 0 auto 6rem auto; /* Maximum spacing between cards */
    }
    
    .info__grid {
        gap: 4rem; /* Maximum gap */
        margin-top: 10rem; /* Push info grid to maximum distance */
    }
    
    .section__header {
        margin-bottom: 8rem; /* Maximum spacing for section headers */
    }
    
    .hotel__image {
        height: 250px;
    }
    
    .info__item {
        padding: 1.5rem 1rem;
        margin-bottom: 4rem; /* Maximum spacing between info items */
    }
    
    .info__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .info__icon i {
        font-size: 1.5rem;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    .hotel__card,
    .info__item {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .hotel__card.animate,
    .info__item.animate {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Focus styles for keyboard navigation */
.btn:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-black: #000000;
        --light-text: #FFFFFF;
        --primary-gold: #FFD700;
    }
}