/* ==========================================================================
   DESIGN SYSTEM - HOTEL CHIBOUGAMAU (MODERN VANILLA CSS)
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Rubik:wght@300;400;500;600;700&display=swap');

/* CSS Variables for Premium Styling */
:root {
    /* Color Palette */
    --color-primary: #1d1d1d;        /* Near-black charcoal */
    --color-primary-light: #2a2a2a;  /* Soft charcoal */
    --color-primary-dark: #0d0d0d;   /* Deep black */
    --color-accent: #940f15;         /* Hotel Chibougamau red */
    --color-accent-hover: #6b0f13;   /* Darker red */
    --color-accent-light: #fbe8e9;   /* Soft red/pink tint */
    --color-bg: #f5f5f5;             /* Light neutral background */
    --color-bg-card: #ffffff;        /* Pure White for Cards */
    --color-text: #2c2c2c;           /* Charcoal for readable body copy */
    --color-text-light: #6b6b6b;     /* Muted grey for descriptions */
    --color-border: #e5e5e5;         /* Soft borders */

    /* Fonts */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Rubik', sans-serif;

    /* Shadows and Glows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-accent-glow: 0 4px 14px rgba(148, 15, 21, 0.4);

    /* Borders and Transitions */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Base CTA Button Layout */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent-glow);
}

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

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Container Wrapper */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   NAVIGATION BAR & HEADER
   ========================================================================== */
header {
    background: rgba(255, 255, 255, 0.97);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-item > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

.nav-item > a:hover {
    color: var(--color-accent);
}

.nav-item > a:hover::after,
.nav-item.active > a::after {
    width: 100%;
}

.nav-item.active > a {
    color: var(--color-accent);
}

/* Dropdown submenus */
.nav-item.has-dropdown .dropdown-caret {
    font-size: 0.6rem;
    transition: var(--transition-fast);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: var(--transition-smooth);
    z-index: 50;
}

.nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
    display: block;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.nav-dropdown li a:hover {
    background-color: var(--color-accent-light);
    color: var(--color-accent);
}

.nav-cta {
    background-color: var(--color-accent) !important;
    color: #ffffff !important;
    padding: 0.65rem 1.5rem !important;
    border-radius: var(--radius-md);
}

.nav-cta::after { display: none; }

.nav-cta:hover {
    background-color: var(--color-accent-hover) !important;
    color: #ffffff !important;
}

/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1100;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   HERO BANNER & SLIDER
   ========================================================================== */
.hero-slider {
    position: relative;
    height: 560px;
    background-color: var(--color-primary-dark);
    overflow: hidden;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide-item.active {
    opacity: 1;
    z-index: 10;
}

.slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.85) 0%, rgba(13, 13, 13, 0.45) 60%, rgba(13, 13, 13, 0.2) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: #ffffff;
    max-width: 640px;
    padding: 0 2rem;
    transform: translateY(20px);
    transition: transform 1s ease-out;
}

.slide-item.active .slide-content {
    transform: translateY(0);
}

.slide-title {
    font-size: 3.25rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.slide-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    text-transform: none;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.75rem;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 2rem; }
.slider-next { right: 2rem; }

/* ==========================================================================
   SERVICES / CARDS SECTION
   ========================================================================== */
.section {
    padding: 6rem 0;
}

.section-bg {
    background-color: #ffffff;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-subtitle {
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 0.75rem auto 0 auto;
    border-radius: 2px;
}

/* Service Cards Grid */
.grid-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background-color: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(226, 232, 240, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(148, 15, 21, 0.2);
}

.service-icon-wrapper {
    width: 90px;
    height: 90px;
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--color-accent);
    color: #ffffff;
}

.service-icon-wrapper svg {
    width: 42px;
    height: 42px;
    fill: currentColor;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Simple amenity list (services page) */
.amenity-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 2rem;
}

.amenity-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem;
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.amenity-list li::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-accent);
}

/* ==========================================================================
   FEATURE BANNER SECTION
   ========================================================================== */
.feature-banner {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary-dark) 100%);
    color: #ffffff;
    text-align: center;
    padding: 5rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.feature-title {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.feature-desc {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* ==========================================================================
   FEATURED PROMO BANNER (MICROBRASSERIE)
   ========================================================================== */
.promo-banner {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
}

.promo-banner img {
    border-radius: var(--radius-md);
}

.promo-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.promo-banner p {
    color: var(--color-text-light);
}

.promo-banner .promo-phone {
    color: var(--color-accent);
    font-weight: 600;
}

/* ==========================================================================
   CAROUSEL GALLERY SECTION
   ========================================================================== */
.gallery-container {
    position: relative;
    margin-top: 1rem;
}

.gallery-track {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 240px;
    scroll-snap-align: start;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(0deg, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0) 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.4);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gallery-overlay-icon {
    color: #ffffff;
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

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

.gallery-item:hover .gallery-overlay-icon {
    transform: scale(1);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-border);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-dot.active {
    background-color: var(--color-accent);
    width: 25px;
    border-radius: 10px;
}

/* ==========================================================================
   CHAMBRES & SUITES PAGE - ROOM CARDS
   ========================================================================== */
.room-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.room-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    scroll-margin-top: 110px;
}

.room-card-img {
    height: 260px;
    overflow: hidden;
}

.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-card-body {
    padding: 2rem 2.25rem 2.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.room-card-body .room-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.room-config {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.room-config span {
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    margin-bottom: 1.75rem;
    font-size: 0.88rem;
    color: var(--color-text-light);
}

.room-amenities li {
    position: relative;
    padding-left: 1rem;
}

.room-amenities li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.room-card-body .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* ==========================================================================
   CONTACT PAGE - DETAILS & MAP
   ========================================================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: stretch;
}

.contact-info-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-info-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon-wrapper svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.contact-info-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.contact-info-details p,
.contact-info-details a {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-details a:hover {
    color: var(--color-accent);
}

/* Embedded Google Maps Container */
.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   EMPLOIS PAGE
   ========================================================================== */
.jobs-list {
    max-width: 640px;
    margin: 0 auto 2.5rem auto;
}

.jobs-list li {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-accent);
}

.jobs-cta {
    text-align: center;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
footer {
    background-color: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 2rem 0;
    border-top: 4px solid var(--color-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

.footer-logo {
    max-height: 70px;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-sm);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    background: var(--color-accent);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

/* Bottom Copyright Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background-color: var(--color-accent);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-5px);
}

/* ==========================================================================
   LIGHTBOX COMPONENT (IMAGE EXPANSION GALLERY)
   ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 80%;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    width: 100%;
    height: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   MEDIA QUERIES - RESPONSIVE STYLING
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-services { gap: 1.5rem; }
    .room-grid { gap: 1.5rem; }
    .amenity-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .nav-container { height: 75px; }

    .mobile-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
        gap: 1.5rem;
        z-index: 999;
        transition: var(--transition-smooth);
        padding: 3rem 1.5rem;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active { left: 0; }

    .nav-item > a { font-size: 1.15rem; }

    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        display: none;
        min-width: 0;
        width: 100%;
        padding: 0.25rem 0 0 1rem;
    }

    .nav-item.has-dropdown.open .nav-dropdown { display: block; }

    .hero-slider { height: 460px; }
    .slide-title { font-size: 2.35rem; }
    .slide-content { max-width: 100%; }
    .slider-arrow { width: 40px; height: 40px; font-size: 1.15rem; }
    .slider-prev { left: 1rem; }
    .slider-next { right: 1rem; }

    .grid-services { grid-template-columns: repeat(2, 1fr); }
    .room-grid { grid-template-columns: 1fr; }
    .promo-banner { grid-template-columns: 1fr; text-align: center; }
    .promo-banner img { margin: 0 auto; }
    .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

@media (max-width: 768px) {
    .section { padding: 4rem 0; }
    .section-title { font-size: 1.85rem; }
    .gallery-item { flex: 0 0 calc(50% - 0.75rem); }
    .amenity-list { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
}

@media (max-width: 576px) {
    .grid-services { grid-template-columns: 1fr; }
    .gallery-item { flex: 0 0 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-info-card { padding: 1.75rem 1.25rem; }
    .slide-title { font-size: 1.85rem; }
}
