/* ========================================
   CHINOME HOUSE HOSTAL - Styles
   Paleta Tierra: #ef8c00, #520c25, #003b36, #695c1a, #a21915, #c26115
   ======================================== */

:root {
    /* Earth Colors */
    --amber: #ef8c00;
    --wine: #520c25;
    --forest: #003b36;
    --olive: #695c1a;
    --terracotta: #a21915;
    --burnt-orange: #c26115;

    /* Extended Palette */
    --sand: #f5e6d3;
    --cream: #faf6f0;
    --clay: #d4a574;
    --moss: #8b9a46;
    --stone: #8b7355;

    /* Gradients */
    --gradient-warm: linear-gradient(135deg, var(--amber) 0%, var(--burnt-orange) 100%);
    --gradient-earth: linear-gradient(135deg, var(--forest) 0%, var(--olive) 100%);
    --gradient-sunset: linear-gradient(135deg, var(--terracotta) 0%, var(--wine) 100%);

    /* Neutral Colors */
    --white: #ffffff;
    --gray-100: #faf6f0;
    --gray-200: #e8e0d5;
    --gray-300: #d4ccc0;
    --gray-600: #6b5b4f;
    --gray-800: #3d332b;
    --gray-900: #1a1612;

    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 100px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(26, 22, 18, 0.05);
    --shadow-md: 0 4px 12px rgba(26, 22, 18, 0.08);
    --shadow-lg: 0 8px 24px rgba(26, 22, 18, 0.12);
    --shadow-xl: 0 16px 48px rgba(26, 22, 18, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    padding: 20px 0;
    transition: var(--transition-normal);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(250, 246, 240, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-warm);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-main {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar.scrolled .brand-main {
    color: var(--gray-800);
}

.brand-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 18px !important;
    position: relative;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar.scrolled .nav-link {
    color: var(--gray-800);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--gradient-warm);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--amber) !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--amber) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.btn-reserve {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-warm);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.btn-reserve:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2861, 51, 43, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    filter: invert(1) brightness(100);
    transition: filter 0.3s ease;
}

.navbar.scrolled .navbar-toggler-icon {
    filter: none;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--cream);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-earth);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 59, 54, 0.9) 0%, rgba(105, 92, 26, 0.85) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(239, 140, 0, 0.2);
    backdrop-filter: blur(10px);
    color: var(--amber);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(239, 140, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge i {
    color: var(--moss);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title .highlight {
    color: var(--amber);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(239, 140, 0, 0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-warm);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(239, 140, 0, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(239, 140, 0, 0.45);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--amber);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--amber), transparent);
    animation: scroll-line 2s infinite;
}

@keyframes scroll-line {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(239, 140, 0, 0.1);
    color: var(--amber);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--amber);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
}

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

.about-images {
    position: relative;
}

.image-main {
    width: 85%;
}

.image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--sand) 0%, var(--clay) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--stone);
    opacity: 0.5;
}

.image-placeholder.small {
    aspect-ratio: 1;
}

.image-placeholder.small i {
    font-size: 2.5rem;
}

.image-secondary {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 45%;
    border: 8px solid var(--white);
    border-radius: 20px;
}

.experience-tag {
    position: absolute;
    top: -20px;
    right: 10%;
    background: var(--gradient-warm);
    padding: 20px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.tag-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.tag-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.about-content {
    padding-left: 40px;
}

.about-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.value-icon {
    width: 45px;
    height: 45px;
    background: rgba(239, 140, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--amber);
}

.value-item span {
    font-weight: 500;
    color: var(--gray-800);
}

/* ========================================
   ROOMS SECTION
   ======================================== */
.rooms-section {
    background: var(--gray-100);
}

.room-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.room-card.featured {
    border: 2px solid var(--amber);
}

.room-image {
    position: relative;
    overflow: hidden;
}

.room-image .image-placeholder {
    aspect-ratio: 16/10;
    border-radius: 0;
}

.room-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--amber);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-badge {
    background: var(--gradient-warm);
}

.room-content {
    padding: 25px;
}

.room-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.room-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 15px;
}

.room-features {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.room-features span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.room-features span i {
    color: var(--amber);
    margin-right: 5px;
}

.room-amenities {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.room-amenities i {
    width: 35px;
    height: 35px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--stone);
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.room-price .price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--amber);
}

.room-price .period {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* ========================================
   EXPERIENCES SECTION
   ======================================== */
.experiences-section {
    background: var(--white);
}

.experience-card {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition-normal);
    height: 100%;
    border: 2px solid transparent;
}

.experience-card:hover {
    background: var(--white);
    border-color: var(--amber);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.experience-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-warm);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
}

.experience-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.experience-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.experience-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--amber);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-normal);
}

.experience-link:hover {
    gap: 12px;
    color: var(--burnt-orange);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
    background: var(--gray-100);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sand) 0%, var(--clay) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.gallery-placeholder i {
    font-size: 2.5rem;
    color: var(--stone);
    opacity: 0.4;
}

.gallery-item.large .gallery-placeholder i {
    font-size: 4rem;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 59, 54, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--amber);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.author-info h5 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ========================================
   RESERVATION SECTION
   ======================================== */
.reservation-section {
    background: var(--gray-100);
    padding-bottom: var(--section-padding);
}

.reservation-box {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.reservation-info {
    background: var(--gradient-earth);
    padding: 50px;
    height: 100%;
    color: var(--white);
}

.reservation-info .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.reservation-info h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.reservation-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.info-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.reservation-form {
    padding: 50px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.95rem;
    background: var(--white);
    transition: var(--transition-normal);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 4px rgba(239, 140, 0, 0.1);
}

.form-control::placeholder {
    color: var(--gray-300);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background: var(--white);
    padding-bottom: 60px;
}

.contact-card {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.contact-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-warm);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
}

.contact-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 1rem;
    color: var(--amber);
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-card span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.social-section {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.social-section p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--gradient-warm);
    color: var(--white);
    transform: translateY(-3px);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--forest);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand .brand-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.footer-brand .brand-main {
    font-size: 1rem;
    color: var(--white);
}

.footer-brand .brand-sub {
    font-size: 0.7rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--amber);
    padding-left: 5px;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    :root {
        --section-padding: 70px;
    }

    .navbar-collapse {
        background: var(--cream);
        padding: 20px;
        border-radius: 20px;
        margin-top: 15px;
        box-shadow: var(--shadow-lg);
    }

    .btn-reserve {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }

    .about-content {
        padding-left: 0;
        margin-top: 50px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .reservation-info {
        padding: 40px;
    }

    .reservation-form {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-features {
        gap: 20px;
    }

    .image-main {
        width: 100%;
    }

    .image-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 70%;
        margin: -30px auto 0;
    }

    .experience-tag {
        right: 5%;
        padding: 15px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .reservation-info,
    .reservation-form {
        padding: 30px 20px;
    }
}

/* Animation classes */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}