html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset for fixed navbar */
}

:root {
    /* Colors */
    --primary-color: #181F20; /* Deep twilight */
    --secondary-color: #F7B538; /* Xanthous */
    --accent-color: #780116; /* Burgundy */
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --text-brown: #1a1110;
    --overlay-dark: rgba(0, 0, 0, 0.4);
    --overlay-gradient: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    --bg-light: #F9F9F9;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing-unit: 1rem;
    --section-padding: 6rem 2rem;
    
    /* Transitions */
    --transition-speed: 0.3s;
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-color);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

/* Discover Kigali Enhancements */
.discover-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.discover-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.discover-card h4 {
    color: #fff;
    margin-bottom: 0.3rem;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px; /* Space for arrow */
}

.discover-time {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: normal;
    white-space: nowrap;
}



.discover-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.discover-card:hover .discover-desc {
    opacity: 1;
    color: #fff;
}

.card-arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.discover-card:hover .card-arrow {
    opacity: 1;
    right: 0.5rem;
}

a {
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 3rem;
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    align-items: center;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background: rgba(24, 31, 32, 0.95); /* Deep Twilight */
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    padding: 0.8rem 3rem;
}

.navbar .logo {
    display: flex;
    align-items: center;
    z-index: 1001; /* Above mobile menu */
    margin-right: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Unified background */
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.navbar .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.navbar .logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 0.8rem;
    justify-content: center;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color); /* Gold for luxury */
    line-height: 1.1;
    letter-spacing: 0.5px;
    text-transform: none; /* Removed uppercase to allow mixed case */
}

.brand-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5); /* Unified background */
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.mobile-nav-actions {
    display: none;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    z-index: 1001;
}

.nav-links > a {
    text-decoration: none;
    color: #F7B538;
    font-weight: bold;
    font-size: 0.9rem;
    position: relative;
    /* Background removed for unified look */
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links > a:hover,
.nav-links > a.active {
    background-color: rgba(255, 255, 255, 0.1); /* Subtle hover inside the bar */
    color: #F7B538;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 6px; /* Rectangular with slight roundness per screenshot */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color); /* Deep Twilight text */
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color); /* Burgundy */
    border-color: var(--accent-color);
    color: #ffffff; /* White text */
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-color: #FFFFFF;
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--text-light);
    border: 2px solid var(--accent-color);
}

.btn-accent:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh; /* Allow height to grow */
    width: 100%;
    display: flex;
    align-items: center;
    padding: 150px 5% 60px 5%; /* Added breathing room: Top (Nav+Space) and Bottom */
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Image/DK8A0344.jpg'); /* Fixed background */
    background-size: 100% 100%; /* Force stretch to fill container */
    background-position: center center;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-background {
        background-size: 100% 100%; /* Ensure full visibility on large screens */
        background-position: center;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(24, 31, 32, 0.8) 0%, rgba(24, 31, 32, 0.4) 50%, rgba(24, 31, 32, 0.1) 100%);
    z-index: 2;
    opacity: 0.2; /* Reduced opacity as requested */
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    width: 100%;
    color: var(--text-light);
    margin-top: 0;
    
    /* Dark Glass Card Design */
    background: rgba(20, 20, 20, 0.47); 
    backdrop-filter: blur(10px);
    border: none;
    border-left: 5px solid var(--secondary-color); 
    border-radius: 6px; 
    padding: 1.85rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.hero-headline {
    font-size: 2.1rem; 
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: none; 
    color: var(--secondary-color); /* Xanthous */
}

.hero-text {
    font-size: 0.9rem; 
    margin-bottom: 1rem;
    opacity: 0.9;
    max-width: 100%;
    line-height: 1.5;
    color: #EEEEEE;
}

.hero-subtitle {
    font-family: 'Kaushan Script', cursive; 
    font-size: 1.3rem; 
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    transform: rotate(-2deg);
    display: inline-block;
}

.hero-info-row {
    display: flex;
    gap: 1.1rem;
    margin-bottom: 2.5rem;
    flex-wrap: nowrap; /* Forced single line */
    width: 100%;
    justify-content: flex-start;
    max-width: 100%;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Reduced gap */
    white-space: nowrap; /* Prevent text wrapping */
    min-width: 0;
}

.info-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.info-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

/* General Section Styles */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
    row-gap: 1.5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.about-title,
.about-text h2 {
    font-size: 2.5rem;
    margin: 0;
}

.about-title {
    grid-column: 1 / -1;
}

.about-lede {
    grid-column: 1 / -1;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.mobile-only-image {
    display: none;
    margin-bottom: 2rem;
}

/* Glassmorphism Cards (Health & Safety, Amenities) */
.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.glass-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
}

.glass-card h3 i {
    color: var(--secondary-color);
}

.glass-card ul {
    list-style: none;
}

.glass-card ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.glass-card ul li i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

/* Amenities Specific Overrides */
.amenities-section {
    background-color: var(--secondary-color); /* Xanthous */
    color: var(--text-brown);
}

.amenities-section .section-title {
    color: var(--accent-color); /* Burgundy */
}

.amenities-section .section-subtitle {
    color: var(--text-brown);
}

.amenities-section .glass-card {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.amenities-section .glass-card h3 {
    color: var(--accent-color); /* Burgundy */
}

.amenities-section .glass-card h3 i {
    color: var(--accent-color);
}

.amenities-section .glass-card ul li {
    color: var(--text-brown); /* Rich Brown */
}

.amenities-section .glass-card ul li i {
    color: var(--accent-color);
}

.amenities-section .amenity-link {
    color: var(--accent-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.35rem;
    border-radius: 6px;
    transition: background-color 0.2s ease, transform 0.2s ease, text-decoration-color 0.2s ease;
}

.amenities-section .amenity-link:hover {
    background-color: rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

/* Stays Grid */
.stays-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stay-card {
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.stay-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.stay-image {
    height: 250px;
    overflow: hidden;
}

.stay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.stay-card:hover .stay-image img {
    transform: scale(1.05);
}

.stay-details {
    padding: 1.5rem;
    color: var(--text-light);
}

.stay-details h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.stay-price {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.stay-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 1rem 0;
}

.stay-features i {
    color: var(--secondary-color);
    display: inline-block;
    width: 25px;
    text-align: center;
    margin-right: 8px;
}

/* Adapt buttons for dark card background */
.stay-card .btn-outline-primary {
    color: var(--text-light);
    border-color: var(--text-light);
}

.stay-card .btn-outline-primary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    border-color: var(--text-light);
}

/* Footer */
.footer {
    background-color: #080425; /* Darker than primary */
    padding: 5rem 2rem 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    width: fit-content;
    text-decoration: none;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 0;
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Animations */
.fade-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scroll Animations */
.fade-up-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; animation-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; animation-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; animation-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; animation-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; animation-delay: 0.75s; }

/* Room Details Grid */
.room-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-areas: 
        "info booking"
        "amenities booking";
    gap: 4rem;
    align-items: start;
}

.room-info {
    grid-area: info;
}

.room-amenities {
    grid-area: amenities;
}

.room-booking {
    grid-area: booking;
}

.amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    list-style: none;
    padding: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .room-details-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "info"
            "booking"
            "amenities";
        gap: 2rem;
    }

    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .hero-headline {
        font-size: 2.8rem;
    }
    
    .about-section {
        grid-template-columns: 1fr;
    }

    .mobile-only-image {
        display: block;
    }

    .desktop-only-image {
        display: none;
    }

    .stays-grid, .glass-grid {
        grid-template-columns: 1fr; /* Stack cards on tablet/mobile */
        padding: 0 1.5rem; /* Add horizontal padding for cards on mobile */
    }

    .amenities-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .navbar {
        flex-wrap: nowrap;
        padding: 0.75rem 0.9rem;
        gap: 0.5rem;
    }

    .navbar.scrolled {
        padding: 0.65rem 0.9rem;
    }

    .navbar .logo {
        padding: 0.35rem 0.75rem;
    }

    .navbar .logo img {
        height: 44px;
    }

    .logo-text {
        margin-left: 0.55rem;
    }

    .brand-name {
        font-size: 1.15rem;
        letter-spacing: 0.2px;
    }

    .brand-tagline {
        display: block;
        font-size: 0.7rem;
        letter-spacing: 0.6px;
    }

    .nav-links {
        flex-wrap: nowrap;
        padding: 0.35rem 0.75rem;
        gap: 0.1rem;
    }

    .nav-links > a {
        padding: 0.35rem 0.48rem;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .nav-actions {
        display: flex;
        gap: 0.5rem;
    }

    .navbar .btn {
        padding: 0.5rem 0.85rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .mobile-menu-btn {
        display: none;
    }
}

@media (max-width: 1280px) and (min-width: 993px) {
    .navbar {
        padding: 0.9rem 1.5rem;
        gap: 1rem;
    }

    .navbar.scrolled {
        padding: 0.7rem 1.5rem;
    }

    .navbar .logo {
        padding: 0.45rem 1rem;
    }

    .navbar .logo img {
        height: 52px;
    }

    .brand-name {
        font-size: 1.35rem;
    }

    .brand-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.6px;
    }

    .nav-links {
        padding: 0.45rem 1rem;
        gap: 0.25rem;
    }

    .nav-links > a {
        padding: 0.45rem 0.7rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .nav-btn {
        padding: 0.55rem 1.1rem;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        background: rgba(24, 31, 32, 0.95); /* Always dark on mobile for visibility */
        flex-wrap: nowrap;
    }
    
    .navbar.scrolled {
        padding: 0.8rem 1rem; /* Prevent large padding on scroll */
    }

    .navbar .logo {
        padding: 0.3rem 1rem; /* Reduce logo padding on mobile */
        max-width: calc(100% - 64px); /* Ensure space for hamburger */
        overflow: hidden;
    }

    .navbar .logo a {
        min-width: 0;
    }

    .navbar .logo img {
        height: 48px;
    }

    .logo-text {
        min-width: 0;
    }

    .brand-name {
        font-size: 1.2rem; /* Adjust font size for mobile */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-tagline {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .section {
        padding: 4rem 1.5rem; /* Reduce padding on mobile */
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%; /* Drawer style */
        max-width: 300px;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        gap: 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
        z-index: 1000;
        border-radius: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-actions {
        display: none; /* Hide desktop actions */
    }

    .mobile-nav-actions {
        display: block;
        margin-top: 1rem;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        margin-top: 60px; /* Clear navbar */
        width: 100%; /* Fix width */
        max-width: 100%;
        border-radius: 0;
        border-left: 3px solid var(--secondary-color);
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-info-row {
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem; /* Reduce bottom margin */
    }

    .info-item {
        width: 100%;
        font-size: 0.9rem; /* Slightly smaller text */
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Prevent horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Scroll Up Button */
.scroll-up-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2000;
}

.scroll-up-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-up-btn:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Stay Actions Container */
.stay-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.stay-actions .btn {
    flex: 1;
    padding: 0.8rem 0.5rem; /* Reduced padding to fit text */
    font-size: 0.9rem;
    text-align: center;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto !important; /* Override inline style */
}

/* Outline Primary Button */
.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
}

/* Room Features Section */
.room-features {
    background-color: #fff;
    padding: 6rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .room-features {
        padding: 4rem 1.5rem;
    }
}

/* Our Values Section */
.our-values {
    background-color: var(--primary-color);
    padding: 6rem 2rem;
}

.section-pill {
    background-color: rgba(247, 181, 56, 0.1);
    color: var(--secondary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid rgba(247, 181, 56, 0.3);
}

.our-values .section-title {
    color: #fff;
}

.our-values .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--secondary-color);
    
    /* Grid Layout for Icon/Title Alignment */
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1.5rem;
    align-items: center;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.value-icon {
    grid-column: 1;
    grid-row: 1;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
}

.value-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 700;
}

.value-card p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .our-values {
        padding: 4rem 1.5rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--primary-color);
    padding: 6rem 2rem;
    position: relative;
}

.why-choose-us .section-title {
    color: #fff;
    margin-bottom: 1rem;
}

.why-choose-us .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.difference-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.difference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.difference-icon {
    flex-shrink: 0;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.difference-content h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.difference-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (hover: none) and (pointer: coarse) and (min-width: 769px) and (max-width: 1366px) {
    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .difference-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-us {
        padding: 4rem 1.5rem;
    }
}

/* Specific override for Why Stay section to ensure 2x2 columns on desktop */
#why-stay .glass-grid,
.room-features .glass-grid,
#stays .stays-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 900px; /* Match the width of other 2-col sections for consistency */
    margin: 0 auto;
}

@media (max-width: 1200px) {
    #why-stay .glass-grid,
    .room-features .glass-grid,
    #stays .stays-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {
    #why-stay .glass-grid,
    .stays-grid,
    #stays .stays-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Location Section */
.location-section {
    background-color: var(--primary-color);
    padding: 6rem 2rem;
    position: relative;
}

.location-section .section-title {
    color: #fff;
    margin-bottom: 1rem;
}

.location-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.location-card {
    background: #fff; /* White card as per screenshot */
    padding: 2.5rem 2rem;
    border-radius: 8px; /* Slightly less rounded than value cards */
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.location-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.location-card h3 {
    color: var(--text-dark); /* Dark text on white card */
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0;
}

.location-card p {
    color: #555; /* Dark gray for readability */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.location-distance {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: auto;
}

@media (min-width: 768px) and (max-width: 992px) {
    .location-section .glass-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 900px;
    }
}

@media (min-width: 993px) and (max-width: 1366px) {
    .location-section .glass-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-section {
        padding: 4rem 1.5rem;
    }
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-color);
    padding: 6rem 2rem;
    position: relative;
    color: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Column Styling */
.contact-info-pill {
    background-color: var(--secondary-color);
    color: var(--primary-color); /* Changed to Deep Twilight */
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.contact-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
}

.contact-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon-circle {
    background-color: rgba(247, 181, 56, 0.2); /* Transparent gold */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-circle i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.contact-item-content h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-family: var(--font-body);
    font-weight: 700;
}

.contact-item-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    line-height: 1.5;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.whatsapp-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: var(--accent-color);
    color: #ffffff;
}

/* Right Column (Form Card) Styling */
.contact-form-card {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-form-card h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: #fff;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color); /* Deep Twilight text for contrast */
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
}

.submit-btn:hover {
    background-color: var(--accent-color);
    color: #ffffff;
}

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    width: 100%;
    padding: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    margin-top: 1rem;
    font-family: var(--font-body);
}

.btn-submit:hover {
    background-color: var(--accent-color);
    color: #ffffff;
}

.response-note {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

.response-note i {
    color: var(--secondary-color); /* Checkmark color */
    margin-top: 3px;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-description {
        max-width: 100%;
    }
}

.contact-map-container {
    margin-top: 5rem;
    width: 100%;
}

/* Map Overlay Card */
.map-frame-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.map-overlay-card {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    padding: 12px;
    border-radius: 2px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
    z-index: 10;
    width: 320px;
    max-width: calc(100% - 20px);
    display: flex;
    justify-content: space-between;
    font-family: 'Roboto', Arial, sans-serif; /* Google Maps font look */
}

.map-card-content h3 {
    font-family: 'Roboto', Arial, sans-serif;
    color: #202124;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.map-address {
    color: #5f6368;
    font-size: 13px;
    margin: 0 0 4px 0;
}

.map-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
    font-size: 13px;
}

.rating-score {
    color: #e7711b;
    font-weight: 500;
}

.rating-stars {
    color: #e7711b;
    font-size: 11px;
    letter-spacing: -1px;
}

.review-count {
    color: #1a73e8;
    text-decoration: none;
    margin-left: 2px;
}

.view-large-map {
    display: block;
    color: #1a73e8;
    text-decoration: none;
    font-size: 12px;
    margin-top: 4px;
}

.view-large-map:hover, .review-count:hover {
    text-decoration: underline;
}

.map-card-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-left: 10px;
}

.directions-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #1a73e8;
    font-size: 12px;
}

.directions-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234285F4'%3E%3Cpath d='M21.71 11.29l-9-9c-.39-.39-1.02-.39-1.41 0l-9 9c-.39.39-.39 1.02 0 1.41l9 9c.39.39 1.02.39 1.41 0l9-9c.39-.38.39-1.01 0-1.41zM14 14.5V12h-4v3H8v-4c0-.55.45-1 1-1h5V7.5l3.5 3.5-3.5 3.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-bottom: 2px;
}

.map-frame {
    transition: transform 0.3s ease;
}

.map-frame:hover {
    transform: translateY(-5px);
}

/* Reviews Slider - Horizontal Scroll with Read More */
.reviews-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.reviews-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 1rem;
    gap: 2rem;
    padding-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.reviews-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.review-slide {
    flex: 0 0 100%; /* Mobile first: full width */
    scroll-snap-align: start;
    min-width: 0;
}

@media (min-width: 768px) {
    .review-slide {
        flex: 0 0 calc(50% - 1rem); /* 2 cards on tablet */
    }
}

@media (min-width: 1024px) {
    .review-slide {
        flex: 0 0 calc(33.333% - 1.33rem); /* 3 cards on desktop */
    }
}

/* Ensure glass-card inside slider behaves well */
.reviews-slider .glass-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--secondary-color);
    color: var(--text-brown);
}

/* Read More Functionality */
.review-content-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.review-text {
    display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
    max-height: 18em; /* Fallback height limit approx 12 lines */
}

.review-text.expanded {
    -webkit-line-clamp: unset;
    max-height: none;
    overflow: visible;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    display: none; /* Hidden by default, JS will show if needed */
}

.read-more-btn:hover {
    text-decoration: underline;
}

/* Google Review Button */
.google-review-action {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    width: 100%;
}

/* Button Size Reductions for Header and Hero */
.navbar .btn,
.hero-cta .btn {
    padding: 0.6rem 1.35rem;
    font-size: 0.8rem;
}

.hero-cta .btn-outline-light,
.hero-cta .google-review-btn {
    background-color: #780116;
    border-color: #780116;
    color: #ffffff;
}

.hero-cta .google-review-btn:hover {
    background-color: #5a0110; /* Darker burgundy on hover */
    border-color: #5a0110;
    color: #ffffff;
}

.hero-cta .btn-outline-light:hover {
    background-color: var(--secondary-color); /* Xanthouse */
    color: var(--primary-color); /* Deep Twilight */
    border-color: var(--secondary-color);
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 27px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.google-review-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.google-review-btn:hover {
    background: #ffffff;
    color: #181F20;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(247, 181, 56, 0.4);
    border-color: #ffffff;
}

.google-review-btn:hover::before {
    left: 100%;
}

.google-review-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.google-review-btn:hover i {
    transform: scale(1.1);
    /* Google Brand Colors Gradient Text fallback */
    background: -webkit-linear-gradient(45deg, #4285F4, #DB4437, #F4B400, #0F9D58);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* Footer Logo Styling to match Header */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    width: fit-content;
    text-decoration: none;
}

.footer-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 0.8rem;
    justify-content: center;
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.footer-logo .brand-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.gallery-page {
    background-color: var(--primary-color);
    min-height: 100vh;
}

.gallery-page-hero {
    position: relative;
    padding: 9rem 2rem 4rem;
    overflow: hidden;
    background:
        radial-gradient(1000px 600px at 20% 20%, rgba(247, 181, 56, 0.18), transparent 60%),
        radial-gradient(900px 520px at 85% 30%, rgba(255, 255, 255, 0.08), transparent 60%),
        linear-gradient(180deg, rgba(24, 31, 32, 0.98), rgba(24, 31, 32, 1));
}

.gallery-page-hero::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(120deg, rgba(247, 181, 56, 0.25), rgba(255, 255, 255, 0.08), rgba(247, 181, 56, 0.18));
    filter: blur(24px);
    opacity: 0.9;
    transform: translate3d(0, 0, 0);
    animation: galleryGlow 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes galleryGlow {
    0% { transform: translate3d(-2%, -1%, 0) scale(1.02); opacity: 0.75; }
    50% { transform: translate3d(2%, 1%, 0) scale(1.06); opacity: 0.95; }
    100% { transform: translate3d(-2%, -1%, 0) scale(1.02); opacity: 0.75; }
}

.gallery-hero-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: end;
}

.gallery-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.6px;
    width: fit-content;
    margin-bottom: 1rem;
}

.gallery-kicker i {
    color: var(--secondary-color);
}

.gallery-title {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.gallery-subtitle {
    max-width: 46ch;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.05rem;
}

.gallery-hero-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 1.6rem 1.6rem 1.4rem;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
}

.gallery-hero-card h3 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.4px;
}

.gallery-hero-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.gallery-metric {
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.9rem 1rem;
}

.gallery-metric .label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.gallery-metric .value {
    margin-top: 0.35rem;
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1.15rem;
}

.gallery-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 6rem;
}

.lux-gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.2rem;
}

.gallery-item {
    position: relative;
    grid-column: span 4;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    transform: translateZ(0);
    cursor: pointer;
    content-visibility: auto;
    contain-intrinsic-size: 320px 240px;
}

.gallery-item.is-wide { grid-column: span 6; }
.gallery-item.is-compact { grid-column: span 3; }

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transform: scale(1.02);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: saturate(1.05) contrast(1.02);
}

.gallery-item.is-wide img { aspect-ratio: 16 / 9; }
.gallery-item.is-compact img { aspect-ratio: 1 / 1; }

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
    opacity: 0.9;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: saturate(1.12) contrast(1.05);
}

.gallery-item:hover::after {
    opacity: 1;
}

.lux-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(5, 3, 32, 0.78);
    backdrop-filter: blur(10px);
}

.lux-lightbox.active {
    display: flex;
}

.lux-lightbox-panel {
    position: relative;
    width: min(1200px, 94vw);
    max-height: 86vh;
}

.lux-lightbox-media {
    width: 100%;
    max-height: 86vh;
    display: block;
    border-radius: 18px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 25px 90px rgba(0, 0, 0, 0.55);
}

.lux-lightbox-close,
.lux-lightbox-nav {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(24, 31, 32, 0.55);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.lux-lightbox-close {
    top: -14px;
    right: -14px;
}

.lux-lightbox-nav.prev {
    top: 50%;
    left: -18px;
    transform: translateY(-50%);
}

.lux-lightbox-nav.next {
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
}

.lux-lightbox-close:hover,
.lux-lightbox-nav:hover {
    transform: translateY(-50%) scale(1.03);
    background: rgba(247, 181, 56, 0.18);
    border-color: rgba(247, 181, 56, 0.45);
}

.lux-lightbox-close:hover { transform: scale(1.03); }

.lux-lightbox-caption {
    margin-top: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.lux-lightbox-caption .index {
    color: rgba(247, 181, 56, 0.95);
    font-weight: 700;
    letter-spacing: 0.4px;
}

@media (max-width: 1200px) {
    .gallery-hero-inner {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

@media (max-width: 992px) {
    .lux-gallery-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }

    .gallery-item { grid-column: span 4; }
    .gallery-item.is-wide { grid-column: span 8; }
    .gallery-item.is-compact { grid-column: span 4; }

    .lux-lightbox-nav.prev { left: 10px; }
    .lux-lightbox-nav.next { right: 10px; }
}

@media (max-width: 600px) {
    .gallery-page-hero {
        padding: 8rem 1.2rem 3.2rem;
    }

    .gallery-wrap {
        padding: 2.1rem 1.2rem 5rem;
    }

    .lux-gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.9rem;
    }

    .gallery-item { grid-column: span 4; }
    .gallery-item.is-wide { grid-column: span 4; }
    .gallery-item.is-compact { grid-column: span 4; }

    .lux-lightbox-close {
        top: 12px;
        right: 12px;
    }

    .admin-page-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .admin-page-header__actions {
        width: 100%;
        display: flex;
        gap: 0.75rem;
    }

    .admin-page-header__actions .btn {
        flex: 1;
        justify-content: center;
    }
}

.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-page-header__actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
