/* Hotel Elisabeth Mechelen - Main Stylesheet */

:root {
    --color-black: #000000;
    --color-beige: #D4D3C3;
    --color-sage: #959380;
    --color-white: #FFFFFF;
    --color-text-primary: #444444;
    --color-text-secondary: #555555;
    --color-text-light: #c5c5c5;
    --color-neumorphic-bg: #1e1e1e;
    --vertical-menu-width: 250px;
    --facility-guidelines-min-width: 220px;
    --main-menu-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: transparent;
    color: var(--color-black);
    line-height: 1.6;
}

/* Translation Flash Prevention - Hide untranslated content until ready
 * Uses visibility: hidden to preserve layout and prevent flash of English content.
 * Elements become visible almost instantly on cached visits (< 10ms), so accessibility
 * impact is minimal. Screen readers will see content after translations are applied.
 */
[data-translate]:not(.translated) {
    visibility: hidden;
}

/* Show elements once translated */
.translated,
.translations-ready [data-translate] {
    visibility: visible;
}

/* Ensure all text inputs, textareas, and buttons use Raleway */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
}

input, textarea, button {
    font-family: 'Raleway', sans-serif;
}

/* Main Navigation Menu */
.main-menu {
    background-color: var(--color-black);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Fixed height for desktop only */
@media (min-width: 900px) {
    .main-menu {
        height: var(--main-menu-height);
        padding: 0 20px;
    }
    
    .main-nav {
        height: 100%;
    }
    
    .main-nav ul {
        height: 100%;
    }
    
    .main-nav a,
    .main-nav button {
        height: 100%;
    }
}

.main-menu-logo {
    height: 30px;
    display: block;
}

/* Mobile header controls - hidden on desktop, visible on mobile */
.mobile-header-controls {
    display: none;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: flex-end;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: center;
}

.main-nav li {
    position: relative;
}

.main-nav a,
.main-nav button {
    font-family: 'Raleway', sans-serif;
    color: var(--color-beige);
    text-decoration: none;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    height: 40px;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav button:hover {
    color: var(--color-white);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--color-black);
    min-width: 200px;
    display: none;
    flex-direction: column;
    padding: 10px 0;
    border-top: 2px solid var(--color-beige);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.dropdown-menu.active {
    display: flex;
}

.dropdown-menu a {
    padding: 12px 20px;
    white-space: nowrap;
}

/* Language Switcher Styles */
.language-switcher {
    position: relative;
}

.language-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    height: 100%;
}

.language-btn:hover {
    transform: scale(1.1);
}

.language-flag {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border: 1px solid rgba(212, 211, 195, 0.3);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--color-black);
    border: 1px solid var(--color-beige);
    border-top: none;
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    width: 100%;
    padding: 10px;
    background: none;
    border: none;
    color: var(--color-beige);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.language-option:hover {
    background-color: rgba(149, 147, 128, 0.2);
}

.language-option.active {
    background-color: rgba(149, 147, 128, 0.3);
}

.language-option .language-flag {
    flex-shrink: 0;
}

.language-abbr {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-beige);
    letter-spacing: 0.5px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-beige);
    font-size: 32px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--color-white);
}

.mobile-menu-btn.active {
    color: var(--color-white);
}

/* Booking Button - Unique Design */
.booking-button {
    background: linear-gradient(135deg, var(--color-sage), var(--color-beige)) !important;
    color: var(--color-black) !important;
    border: 2px solid var(--color-beige) !important;
    border-radius: 25px !important;
    padding: 10px 25px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(149, 147, 128, 0.4);
    transition: all 0.3s ease !important;
    margin-left: 10px;
}

.booking-button:hover {
    background: linear-gradient(135deg, var(--color-beige), var(--color-white)) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(149, 147, 128, 0.6);
    color: var(--color-black) !important;
}

.booking-button:active {
    transform: translateY(0);
}

/* Mobile Menu Styles */
@media (max-width: 899px) {
    .mobile-menu-btn {
        display: block;
    }
    
    /* Show mobile header controls on mobile */
    .mobile-header-controls {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .mobile-header-controls .booking-button {
        padding: 8px 16px !important;
        font-size: 12px;
        margin-left: 0;
        white-space: nowrap;
    }
    
    /* Hide booking button from mobile menu */
    .main-nav li:has(.booking-button) {
        display: none;
    }
    
    .main-nav {
        position: fixed;
        top: var(--main-menu-height);
        left: 0;
        right: 0;
        background-color: var(--color-black);
        flex-direction: column;
        align-items: stretch;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .main-nav.active {
        max-height: 500px;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid rgba(212, 211, 195, 0.2);
    }
    
    .main-nav a,
    .main-nav button {
        width: 100%;
        text-align: left;
        padding: 15px 20px;
        height: auto;
        justify-content: flex-start;
    }
    
    .dropdown-menu {
        position: static;
        border-top: none;
        border-left: 3px solid var(--color-beige);
        margin-left: 20px;
        box-shadow: none;
    }
    
    .dropdown-menu a {
        padding-left: var(--mobile-menu-indent, 30px);
    }
    
    /* Language switcher mobile styles */
    .language-switcher {
        border-bottom: 1px solid rgba(212, 211, 195, 0.2);
    }
    
    .language-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 15px 20px;
    }
    
    .language-dropdown {
        position: static;
        border-top: none;
        border-left: 3px solid var(--color-beige);
        margin-left: 20px;
        box-shadow: none;
        min-width: auto;
    }
    
    .language-option {
        padding: 10px;
        justify-content: center;
    }
}

/* Add padding to body to account for fixed menu */
body {
    padding-top: var(--main-menu-height);
}

/* Override for admin page */
body.admin-page {
    padding-top: 0;
}

/* Fixed Background Layer (iOS Compatible) */
.page-background {
    position: fixed;
    top: var(--main-menu-height); /* Start below menu */
    left: 0;
    width: 100%;
    height: calc(100% - var(--main-menu-height)); /* Adjust height to exclude menu area */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
}

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

/* Hero Slideshow */
.hero-slideshow {
    width: 100%;
    height: calc(100vh - var(--main-menu-height));
    min-height: 420px;
    background-color: var(--color-black);
    overflow: hidden; /* Prevent overflow issues */
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Ensure images don't escape */
}

.hero-track {
    display: flex;
    height: 100%;
    width: 100%; /* Ensure track takes full width */
    transform: translateX(0);
    background-color: #1a1a1a; /* Dark gray instead of pure black */
}

.hero-slide {
    min-width: 100%;
    width: 100%; /* Force full width */
    height: 100%;
    flex-shrink: 0;
    position: relative;
    background-color: var(--color-black);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover entire area */
    object-position: center; /* Center the image */
    display: block;
    opacity: 1;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden; /* Safari fix */
}

.hero-slide-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-beige);
    font-size: 1.5rem;
    text-align: center;
    padding: 2rem;
}

.hero-slide-loading {
    opacity: 0;
    animation: fadeIn 0.3s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-handle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--color-beige);
    border: 2px solid var(--color-beige);
    border-radius: 999px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    z-index: 2;
}

.hero-handle:hover:not(:disabled) {
    background-color: var(--color-beige);
    color: var(--color-black);
}

.hero-handle:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.hero-handle-left {
    left: 1.5rem;
}

.hero-handle-right {
    right: 1.5rem;
}

/* Card Styles */
.card {
    background-color: var(--color-black);
    color: var(--color-beige);
    padding: 2rem;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card h2 {
    font-weight: 600; /* SemiBold for card titles */
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-beige);
    color: var(--color-black);
    text-decoration: none;
    border: 2px solid var(--color-beige);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    font-size: 1rem;
    line-height: normal;
    font-weight: 500; /* Medium */
}

.btn:hover {
    background-color: var(--color-sage);
    color: var(--color-white);
    border-color: var(--color-sage);
}

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

.btn-secondary:hover {
    background-color: var(--color-beige);
    color: var(--color-black);
    border-color: var(--color-beige);
}

/* LOG OUT Button */
.btn-logout {
    background-color: #d32f2f;
    color: var(--color-white);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    z-index: 10;
}

.btn-logout:hover {
    background-color: #b71c1c;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-beige);
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-sage);
    border-radius: 4px;
    font-size: 1rem;
    background-color: var(--color-white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-beige);
}

/* Admin page Background colour */
.admin-page {
    background-color: var(--color-sage);
    min-height: 100vh;
}

/* OLD ADMIN HEADER STYLES - No longer needed with new vertical menu */
/*
.admin-page header {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.admin-page header nav {
    background-color: var(--color-black);
    padding: 1rem 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
*/

.login-page {
    padding-top: 0;
}

/* Login Page Specific Styles */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--color-sage);
}

.login-card {
    background-color: var(--color-black);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
}

.login-card .nav-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.login-card .nav-logo img {
    height: 50px;
}

.login-card h2 {
    color: var(--color-beige);
    margin-bottom: 2rem;
    text-align: center;
}

.error-message {
    background-color: #f44336;
    color: white;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Map Section */
.map-section {
    width: 100%;
    height: 500px;
    background-color: #0b0b0b;
    margin: 0;
    padding: 0;
}

.map-section .map-embed {
    width: 100%;
    height: 100%;
    display: block;
}

/* Modern Footer Styles */
footer {
    background-color: var(--color-black);
    color: var(--color-beige);
    padding: 3rem 2rem 1.5rem;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--color-sage);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact-item strong {
    color: var(--color-white);
    min-width: 70px;
    font-size: 0.85rem;
}

.footer-contact-item span,
.footer-contact-item a {
    color: var(--color-beige);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact-item a:hover {
    color: var(--color-white);
}

.footer-address {
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-social-link {
    color: var(--color-beige);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-social-link:hover {
    color: var(--color-white);
}

.footer-info-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-info-links a {
    color: var(--color-beige);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-info-links a:hover {
    color: var(--color-white);
}

.footer-copyright-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--color-sage);
    text-align: center;
}

.footer-copyright {
    color: var(--color-sage);
    font-size: 0.85rem;
    margin: 0;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    footer {
        padding: 2rem 1.5rem 1rem;
    }
}

/* Booking Bar Styles */
/* Hero Logo - positioned at bottom left */
.hero-bottom-logo {
    position: absolute;
    bottom: 70px;
    left: 70px;
    max-width: 200px;
    width: 100%;
    height: auto;
    z-index: 10;
}

/* Booking Bar - positioned at bottom right */
.booking-bar {
    position: absolute;
    bottom: 100px;
    right: 0;
    /* Booking bar extends to 65% of screen from the right (starts at 35% from left) */
    left: 35%;
    background-color: rgba(0, 0, 0, 0.55);
    border: none;
    border-radius: 0;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    width: auto;
    box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.booking-field {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0; /* Allow flex items to shrink */
}

.booking-field label {
    color: var(--color-beige);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.booking-field input {
    padding: 0.75rem;
    border: 1px solid var(--color-beige);
    border-radius: 4px;
    background-color: var(--color-white);
    color: var(--color-black);
    font-size: 1rem;
    cursor: pointer;
    height: 48px;
    text-align: center; /* Center the date text */
    width: 100%; /* Ensure full width */
}

.booking-field input:focus {
    outline: none;
    border-color: var(--color-sage);
}

.booking-search-btn {
    flex: 1;
    min-width: 0;
    margin: 0;
    height: 48px;
    white-space: nowrap;
    width: 100%; /* Ensure full width */
}

/* Custom Date Picker Styles */
.datepicker-container {
    position: absolute;
    background-color: var(--color-white);
    border: 1px solid var(--color-beige);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 1rem;
    z-index: 1000;
    min-width: 280px;
}

.datepicker-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    background-color: var(--color-black);
    padding: 0.75rem;
    border-radius: 8px;
    align-items: center;
}

.datepicker-nav-btn {
    background-color: var(--color-beige);
    color: var(--color-black);
    border: none;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.datepicker-nav-btn:hover {
    background-color: var(--color-sage);
}

.datepicker-nav-btn:active {
    transform: scale(0.95);
}

.datepicker-month,
.datepicker-year {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid var(--color-beige);
    border-radius: 4px;
    background-color: var(--color-black);
    color: var(--color-beige);
    font-size: 0.9rem;
    cursor: pointer;
}

.datepicker-month:focus,
.datepicker-year:focus {
    outline: none;
    border-color: var(--color-sage);
}

.datepicker-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    background-color: var(--color-black);
    padding: 0.5rem;
    border-radius: 4px;
}

.datepicker-weekdays div {
    text-align: center;
    font-weight: bold;
    color: var(--color-beige);
    font-size: 0.85rem;
}

.datepicker-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.datepicker-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s, color 0.2s;
    color: var(--color-black);
}

.datepicker-day:hover:not(.disabled):not(.prev-month):not(.next-month) {
    background-color: var(--color-beige);
    color: var(--color-black);
}

.datepicker-day.selected {
    background-color: var(--color-beige);
    color: var(--color-black);
    font-weight: bold;
}

.datepicker-day.today {
    border: 2px solid var(--color-sage);
}

.datepicker-day.prev-month,
.datepicker-day.next-month {
    color: rgba(0, 0, 0, 0.3);
    cursor: default;
}

.datepicker-day.disabled {
    color: rgba(0, 0, 0, 0.2);
    cursor: not-allowed;
}

/* Tablet and below - adjust positioning */
@media (max-width: 769px) {
    .hero-bottom-logo {
        bottom: auto;
        /* Ensure logo is at least 100px from top in mobile view */
        top: 100px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 150px;
    }
    
    .booking-bar {
        bottom: 1rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 90%;
        max-width: 600px;
    }
}

/* Mobile Responsive for Booking Bar */
@media (max-width: 768px) {
    .hero-bottom-logo {
        max-width: 140px;
    }
    
    .booking-bar {
        flex-direction: column;
        padding: 1rem;
        gap: 0.75rem;
        width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        bottom: 0.75rem;
    }

    .booking-field {
        width: 100%;
    }

    .booking-search-btn {
        width: 100%;
    }
    
    .datepicker-container {
        left: 1rem;
        transform: none;
        right: 1rem;
        max-width: calc(100vw - 2rem);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Only apply to admin pages - main website nav handled separately */
    body.admin-page nav {
        flex-direction: column;
        gap: 1rem;
    }

    body.admin-page nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-handle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .hero-handle-left {
        left: 1rem;
    }

    .hero-handle-right {
        right: 1rem;
    }
}

/* ============ ADMIN DASHBOARD STYLES ONLY ============ */
/* IMPORTANT: These styles ONLY apply to admin pages with .admin-page class */

/* Isolate admin styles */
body.admin-page {
    padding-top: 0;
    margin: 0;
}

/* Top Header Bar - Fixed */
.admin-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: var(--color-black);
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.admin-top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 100%;
}

.admin-top-nav h1 {
    color: var(--color-beige);
    font-size: 1.5rem;
    font-weight: 600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

/* Menu Trigger Button */
.menu-trigger-btn {
    background-color: var(--color-beige);
    color: var(--color-black);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    letter-spacing: 0.05rem;
    z-index: 10;
}

.menu-trigger-btn:hover {
    background-color: var(--color-sage);
    color: var(--color-white);
}

/* Vertical Sidebar Menu - Hidden by Default */
.vertical-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: var(--vertical-menu-width);
    height: calc(100vh - 70px);
    background-color: #050505;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    overflow: visible; /* Allow submenu to fly out - no clipping */
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.vertical-menu.show {
    transform: translateX(0);
}

/* Menu Navigation - START FROM TOP */
.vertical-menu-nav {
    padding: 0; /* NO padding at top - start from very top */
    margin: 0;
    display: block; /* Override generic nav flex display */
    height: 100%; /* Fill parent height */
    overflow-y: auto; /* Scroll if menu is too long */
    overflow-x: visible; /* Allow submenu to fly out */
    align-items: initial; /* Override generic nav centering */
    justify-content: initial; /* Override generic nav spacing */
}

.vertical-menu-list {
    list-style: none;
    margin: 0;
    padding: 0; /* NO padding - start from top */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align to start (top), NOT center */
}

/* Menu Items - FULL WIDTH, NO CENTERING */
.vertical-menu-item {
    display: block;
    width: 100%; /* FULL width */
    margin: 0;
    padding: 0;
}

/* Menu Buttons - TRULY FULL WIDTH */
.vertical-menu-btn {
    width: 100%; /* Full width */
    background-color: transparent;
    color: var(--color-beige);
    border: none;
    padding: 1.25rem 1.5rem; /* Padding INSIDE button, not reducing width */
    margin: 0; /* NO margin */
    text-align: left;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 211, 195, 0.1);
    box-sizing: border-box; /* Include padding in width calculation */
}

.vertical-menu-btn:hover {
    background-color: rgba(212, 211, 195, 0.15);
    padding-left: 2rem;
}

.vertical-menu-btn .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.vertical-menu-item.has-submenu:hover .vertical-menu-btn .arrow {
    transform: translateX(5px);
}

/* Submenu - FLY OUT TO THE RIGHT AS SEPARATE PANEL */
.vertical-submenu {
    position: fixed; /* Fixed to avoid overflow clipping */
    top: 0; /* Default top position, will be overridden by JS to align with hovered menu item */
    left: calc(var(--vertical-menu-width) - 1px); /* Overlap by 1px to ensure no gap during hover transition */
    width: 220px;
    background-color: #1a1a1a; /* Slightly lighter than menu for visual distinction */
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.9); /* Stronger shadow for visibility */
    border: 1px solid rgba(212, 211, 195, 0.3); /* Stronger border for clear separation */
    border-left: 2px solid var(--color-sage); /* Accent border on left for fly-out effect */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-30px); /* Start further left for more dramatic fly-out */
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1001; /* ABOVE parent menu */
    padding: 0.5rem 0;
}

/* Show submenu on parent hover */
.vertical-menu-item.has-submenu:hover > .vertical-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0); /* Slide into position */
}

/* Show submenu when parent has active class (JS-controlled) */
.vertical-menu-item.has-submenu.active > .vertical-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0); /* Slide into position */
}

/* Keep submenu visible when hovering submenu itself */
.vertical-submenu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Submenu Items - Full width of submenu panel */
.submenu-item {
    width: 100%;
    background-color: transparent;
    color: var(--color-beige);
    border: none;
    padding: 1rem 1.5rem;
    margin: 0;
    text-align: left;
    font-size: 0.95rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    border-bottom: 1px solid rgba(212, 211, 195, 0.05);
    box-sizing: border-box;
}

.submenu-item:hover {
    background-color: var(--color-sage);
    color: var(--color-white);
    padding-left: 2rem;
}

/* Ensure first menu item is at very top */
.vertical-menu-item:first-child {
    margin-top: 0;
    padding-top: 0;
}

.vertical-menu-item:first-child .vertical-menu-btn {
    border-top: none;
}

/* Scrollbar for menu */
.vertical-menu::-webkit-scrollbar {
    width: 8px;
}

.vertical-menu::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.vertical-menu::-webkit-scrollbar-thumb {
    background: var(--color-sage);
    border-radius: 4px;
}

.vertical-menu::-webkit-scrollbar-thumb:hover {
    background: var(--color-beige);
}

/* Main Content - CENTERED */
.admin-main-content {
    padding-top: 90px; /* Account for fixed header */
    margin-left: 0; /* NO left margin - content stays centered */
    min-height: calc(100vh - 90px);
}

/* Container - Keep centered */
main.container {
    max-width: 1200px;
    margin: 0 auto; /* CENTER THE CONTENT */
    padding: 80px 2rem 2rem 2rem; /* 80px top gap for management cards */
}

/* Cards stay centered */
.card {
    max-width: 100%;
    margin: 0 auto 2rem auto; /* CENTER CARDS */
}

/* Remove any old nav styles that might interfere */
.nav-buttons {
    display: none !important; /* Force hide old horizontal nav */
}

.submenu-content {
    display: none !important; /* Force hide old submenu */
}

/* Ensure admin page vertical menu list is vertical (scoped to admin only) */
body.admin-page .vertical-menu-nav ul {
    flex-direction: column !important;
}

/* ============ MAIN WEBSITE NAVIGATION (NOT ADMIN) ============ */

/* Photo grid stays centered */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem auto;
    justify-items: center;
}

/* Main Image Management sections */
.main-image-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.main-image-section h3 {
    margin-top: 0;
    color: var(--color-black);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.main-image-section p {
    margin-bottom: 1rem;
}

.rooms-main-image-preview,
.info-main-image-preview,
.group-main-image-preview {
    margin-top: 1rem;
}

/* Form elements stay centered */
.form-group {
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
}

/* OLD HORIZONTAL SUBMENU STYLES - REMOVED */
/* The following styles are no longer needed with the vertical menu */
/*
.submenu {
    background-color: var(--color-black);
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    width: min(1136px, calc(100% - 4rem));
    margin: 0 auto;
    padding: 0 2rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-sizing: border-box;
}

.submenu-content {
    padding: 1rem 0;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.submenu-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    width: 160px;
    text-align: center;
}
*/

/* Photo Management Styles */
.photo-upload-section {
    margin: 1.5rem 0;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Ensure photo-item has proper styling */
.photo-item {
    position: relative;
    width: 200px;
    height: 200px;
    background-color: var(--color-sage);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--color-black);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: grab;
    transition: transform 0.2s, box-shadow 0.2s;
}

.photo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.photo-item:active {
    cursor: grabbing;
}

.photo-item.dragging {
    opacity: 0.5;
}

.photo-item.drag-over {
    transform: scale(0.95);
    border: 2px dashed var(--color-black);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Photo overlay for delete button */
.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.btn-delete {
    background-color: #d32f2f;
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-delete:hover {
    background-color: #b71c1c;
}

/* Background preview uses same photo-item styles */
#background-preview .photo-item {
    margin-top: 1rem;
}

.photo-controls {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.btn-icon {
    background-color: var(--color-beige);
    color: var(--color-black);
    border: 2px solid var(--color-beige);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-icon:hover:not(:disabled) {
    background-color: var(--color-black);
    color: var(--color-beige);
}

.btn-icon:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-icon.delete {
    background-color: #d32f2f;
    color: var(--color-white);
    border-color: #d32f2f;
}

.btn-icon.delete:hover:not(:disabled) {
    background-color: #b71c1c;
    border-color: #b71c1c;
}

.photo-order {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-black);
    font-weight: bold;
}

/* Ads Management Styles */
#ads-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ad-item-card {
    background-color: var(--color-sage);
    padding: 1.5rem;
    border-radius: 8px;
}

.ad-item-card h3 {
    color: var(--color-black);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.ad-field {
    margin-bottom: 1rem;
}

.ad-field label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-black);
    font-weight: bold;
}

.ad-field input[type="text"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-black);
    border-radius: 4px;
    font-size: 1rem;
    background-color: var(--color-white);
}

.ad-field input[type="text"]:focus {
    outline: none;
    border-color: var(--color-beige);
}

.ad-image-preview {
    margin-top: 0.5rem;
    min-height: 150px;
    border: 2px dashed var(--color-black);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5);
}

.ad-image-preview img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 4px;
}

.ad-multilang-section {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.ad-multilang-section h4 {
    color: var(--color-black);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* Index Ads Display Styles */
.index-ads-container {
    width: 100%;
    display: flex;
    height: 500px;
    margin: 0;
}

.index-ads-left {
    width: 60%;
    position: relative;
    border: 5px solid var(--color-black);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.index-ads-right {
    width: 40%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.index-ads-right-top,
.index-ads-right-bottom {
    height: 50%;
    position: relative;
    border: 5px solid var(--color-black);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.index-ad-content {
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.index-ads-left .index-ad-content {
    margin-left: 100px;
}

.index-ads-right-top .index-ad-content,
.index-ads-right-bottom .index-ad-content {
    padding-left: 20px;
}

.index-ad-top-text {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--color-beige);
    background-color: rgba(0, 0, 0, 0.55);
    padding: 0.5rem 1rem;
    display: inline-block;
    width: fit-content;
}

.index-ad-bottom-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-beige);
    background-color: rgba(0, 0, 0, 0.55);
    padding: 0.5rem 1rem;
    display: inline-block;
    width: fit-content;
    white-space: pre-line; /* Preserves line breaks */
}

.index-ad-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: rgba(212, 211, 195, 0.70);
    color: var(--color-black);
    text-decoration: none;
    border: 2px solid var(--color-beige);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    font-size: 1rem;
    font-weight: bold;
}

.index-ad-button:hover {
    background-color: rgba(149, 147, 128, 0.70);
    color: var(--color-white);
    border-color: var(--color-sage);
}

/* Ads Tabs */
.ads-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--color-sage);
}

.ads-tab {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: var(--color-beige);
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.ads-tab:hover {
    background-color: rgba(212, 211, 195, 0.1);
}

.ads-tab.active {
    border-bottom-color: var(--color-beige);
    font-weight: bold;
}

.ads-lang-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ads-lang-tab {
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--color-beige);
    border: 2px solid var(--color-sage);
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.ads-lang-tab:hover {
    background-color: rgba(212, 211, 195, 0.2);
}

.ads-lang-tab.active {
    background-color: var(--color-beige);
    color: var(--color-black);
    border-color: var(--color-beige);
}

/* About Us Tabs */
.about-us-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--color-sage);
}

.about-us-tab {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: var(--color-beige);
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.about-us-tab:hover {
    background-color: rgba(212, 211, 195, 0.1);
}

.about-us-tab.active {
    border-bottom-color: var(--color-beige);
    font-weight: bold;
}

.about-us-lang-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.about-us-lang-tab {
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--color-beige);
    border: 2px solid var(--color-sage);
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.about-us-lang-tab:hover {
    background-color: rgba(212, 211, 195, 0.2);
}

.about-us-lang-tab.active {
    background-color: var(--color-beige);
    color: var(--color-black);
    border-color: var(--color-beige);
}

/* Ads Bottom Tabs */
.ads-bottom-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--color-sage);
}

.ads-bottom-tab {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: var(--color-beige);
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.ads-bottom-tab:hover {
    background-color: rgba(212, 211, 195, 0.1);
}

.ads-bottom-tab.active {
    border-bottom-color: var(--color-beige);
    font-weight: bold;
}

.ads-bottom-lang-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ads-bottom-lang-tab {
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--color-beige);
    border: 2px solid var(--color-sage);
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.ads-bottom-lang-tab:hover {
    background-color: rgba(212, 211, 195, 0.2);
}

.ads-bottom-lang-tab.active {
    background-color: var(--color-beige);
    color: var(--color-black);
    border-color: var(--color-beige);
}

/* ============ OUR PICKS SECTION ============ */
.our-picks-section {
    background-color: var(--color-neumorphic-bg); /* Dark grey background for neumorphism */
    padding: 3rem 0;
}

.our-picks-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.our-picks-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-white); /* Changed to white for good contrast against dark background */
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 0.1rem;
}

.our-picks-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    justify-items: center;
    justify-content: center;
}

.our-picks-card {
    background: var(--color-neumorphic-bg); /* Same color as background for neumorphism */
    border-radius: 20px;
    overflow: hidden;
    /* Neumorphism: top-left light shadow, bottom-right dark shadow */
    box-shadow: -10px -10px 20px rgba(255, 255, 255, 0.05), 
                10px 10px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 350px;
}

.our-picks-card:hover {
    /* Inset shadow for pressed/depressed effect on hover */
    box-shadow: inset -5px -5px 10px rgba(255, 255, 255, 0.03),
                inset 5px 5px 10px rgba(0, 0, 0, 0.4);
    transform: scale(0.98); /* Subtle scale for kinetic feedback */
}

.our-picks-card-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.our-picks-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.our-picks-card-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-white); /* White text for dark background */
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.05rem;
}

.our-picks-card-description {
    font-size: 0.95rem;
    color: var(--color-text-light); /* Light grey text for dark background */
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.our-picks-card-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Package Modal */
.package-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.package-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.package-modal-content {
    position: relative;
    z-index: 2;
    background: var(--color-white);
    border-radius: 0;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.package-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 3;
}

.package-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.package-modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.package-modal-body {
    padding: 2rem;
}

.package-modal-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-black);
    margin: 0 0 1rem 0;
    letter-spacing: 0.05rem;
}

.package-modal-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.package-modal-section {
    margin-bottom: 2rem;
}

.package-modal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 1rem 0;
}

.package-modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-modal-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.package-modal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-sage);
    font-weight: bold;
}

.package-modal-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    gap: 1rem;
}

/* Responsive styles for Our Picks */
@media (max-width: 768px) {
    .our-picks-list {
        grid-template-columns: 1fr;
    }
    
    .our-picks-title {
        font-size: 2rem;
    }
    
    .package-modal-content {
        max-height: 100vh;
        border-radius: 0;
    }
    
    .package-modal-image {
        height: 200px;
    }
    
    .package-modal-body {
        padding: 1.5rem;
    }
    
    .package-modal-title {
        font-size: 1.5rem;
    }
}

/* About Us Management - reduce spacing */
.about-us-form-section {
    margin-bottom: 1rem; /* CHANGE FROM 2rem to 1rem */
}

.about-us-form-section h4 {
    color: var(--color-beige);
    margin-bottom: 0.5rem; /* CHANGE FROM 1rem to 0.5rem */
}

.about-us-form-section textarea {
    width: 100%;
    min-height: 200px;
    padding: 0.75rem;
    background-color: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-sage);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    margin-bottom: 0.5rem; /* ADD THIS */
}

/* Reduce spacing in form groups */
.about-us-form-section .form-group {
    margin-bottom: 0.75rem; /* ADD THIS */
}

/* Remove extra paragraph spacing */
.about-us-form-section p {
    margin-bottom: 0.5rem; /* ADD THIS */
}

/* About Us Section */
.about-us-section {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 4rem 2rem;
    margin: 0;
    min-height: 700px; /* ADD THIS */
}

.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-us-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.3rem;
    margin-bottom: 4rem;
    color: var(--color-white);
    display: block; /* ENSURE IT'S VISIBLE */
}

.about-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-us-left,
.about-us-right {
    color: var(--color-black);
}

.about-us-subtitle {
    font-size: 1rem;
    font-weight: 400; /* Regular */
    letter-spacing: 0.15rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    text-transform: uppercase;
}

.about-us-body {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 1.5rem;
    color: var(--color-white);
    white-space: pre-line; /* Preserves line breaks */
}

/* ============ ADS BOTTOM SECTION - FIXED STYLING ============ */

.ads-bottom-section {
    width: 100%;
    padding: 4rem 0;
    background-color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

.ads-bottom-container {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
}

.ads-bottom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.ads-bottom-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Titles Section - Centered */
.ads-bottom-titles {
    text-align: center;
    margin-bottom: 3rem;
}

.ads-bottom-title {
    font-size: 0.85rem; /* SMALL text */
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
}

.ads-bottom-subtitle {
    font-size: 2rem; /* Same size for both title2 and title3 */
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.ads-bottom-subtitle:last-child {
    font-size: 2rem; /* Same size as title2 */
    font-weight: 600;
}

/* Cards Grid - Three Columns */
.ads-bottom-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

/* Individual Cards */
.ads-bottom-card {
    position: relative;
    border-radius: 0; /* No border radius */
    overflow: hidden;
    border: none; /* Remove border */
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ads-bottom-card:hover {
    transform: translateY(-5px);
}

/* Card Content - Title, Body */
.ads-bottom-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center all content horizontally */
    justify-content: flex-start; /* Align to top */
    text-align: center; /* Center text */
    background: transparent;
}

/* Card Image - 60x60px at top */
.ads-bottom-card-content img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-bottom: 50px; /* 50px spacing after image */
}

/* Card Title - Below Icon */
.ads-bottom-card-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 50px; /* 50px spacing after title */
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

/* Card Body Text */
.ads-bottom-card-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 90%;
    margin: 0 auto;
}

@media (min-width: 601px) {
    .index-ads-container {
        min-height: 900px;
    }
}

@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .index-ads-container {
        flex-direction: column;
        height: auto;
    }
    
    .index-ads-left,
    .index-ads-right {
        width: 100%;
    }
    
    .index-ads-left {
        min-height: 300px;
    }
    
    .index-ads-right-top,
    .index-ads-right-bottom {
        min-height: 250px;
    }
    
    .index-ads-left .index-ad-content {
        margin-left: 20px;
    }
    
    .about-us-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-us-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .ads-bottom-subtitle {
        font-size: 1.5rem;
    }
    
    .ads-bottom-subtitle:last-child {
        font-size: 1.2rem;
    }
    
    .ads-bottom-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ads-bottom-content {
        padding: 2rem 1rem;
    }
    
    .ads-bottom-card-content {
        padding: 2rem 1rem;
    }
}

/* Admin Dashboard Textareas */
.admin-textarea {
    width: 100%;
    min-height: 200px;
    padding: 0.75rem;
    background-color: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-sage);
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    resize: vertical;
    line-height: 1.6;
}

.admin-textarea:focus {
    outline: none;
    border-color: var(--color-beige);
    box-shadow: 0 0 0 2px rgba(212, 211, 195, 0.2);
}

/* ============ PACKAGE MANAGEMENT STYLES ============ */

/* Package Tabs */
.package-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-beige);
}

.package-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-sage);
    transition: all 0.3s ease;
}

.package-tab:hover {
    color: var(--color-black);
}

.package-tab.active {
    color: var(--color-black);
    border-bottom-color: var(--color-sage);
}

/* Package List */
#package-list-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.package-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    cursor: move;
    transition: all 0.3s ease;
}

.package-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: var(--color-sage);
}

.package-item-content {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.package-item-image {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
}

.package-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-item-image .no-image {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.875rem;
}

.package-item-details {
    flex: 1;
}

.package-item-details h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: var(--color-black);
}

.package-item-details p {
    margin: 0 0 0.75rem 0;
    color: var(--color-sage);
    font-size: 0.9rem;
    line-height: 1.4;
}

.package-item-meta {
    margin-bottom: 0.75rem;
}

.our-picks-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.our-picks-toggle input[type="checkbox"] {
    display: none;
}

.our-picks-toggle-slider {
    position: relative;
    width: 44px;
    height: 24px;
    background-color: #ccc;
    border-radius: 24px;
    transition: background-color 0.3s;
}

.our-picks-toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.our-picks-checkbox:checked + .our-picks-toggle-slider {
    background-color: var(--color-sage);
}

.our-picks-checkbox:checked + .our-picks-toggle-slider::before {
    transform: translateX(20px);
}

.our-picks-toggle-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.package-item-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.package-drag-handle {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #999;
    cursor: grab;
    padding: 0 0.5rem;
}

.package-drag-handle:active {
    cursor: grabbing;
}

/* Button Styles */
.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
}

/* Package Language Tabs in Modal */
.package-lang-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #ddd;
    margin-bottom: 1rem;
}

.package-lang-tab {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.package-lang-tab:hover {
    background: #f5f5f5;
}

.package-lang-tab.active {
    border-bottom-color: var(--color-sage);
    font-weight: 600;
}

/* Room Language Tabs */
.room-lang-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #ddd;
    margin-bottom: 1rem;
}

.room-lang-tab {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.room-lang-tab:hover {
    background: #f5f5f5;
}

.room-lang-tab.active {
    border-bottom-color: var(--color-sage);
    font-weight: 600;
}

.room-lang-content {
    /* Language content containers */
}

/* Form Input Styles */
.form-input {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-sage);
    box-shadow: 0 0 0 2px rgba(122, 142, 125, 0.1);
}

/* Responsive Design for Package Items */
@media (max-width: 768px) {
    .package-item-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .package-item-image {
        width: 100%;
        height: 200px;
    }
    
    .package-drag-handle {
        display: none;
    }
}

/* ============ AMENITIES MANAGEMENT STYLES ============ */

.amenity-add-section {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.amenity-add-section h3 {
    color: var(--color-black);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.lang-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lang-tab {
    padding: 0.5rem 1rem;
    background-color: var(--color-white);
    color: var(--color-black);
    border: 2px solid var(--color-sage);
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.lang-tab.active {
    background-color: var(--color-sage);
    color: var(--color-white);
    border-color: var(--color-sage);
}

.lang-tab:hover:not(.active) {
    background-color: var(--color-beige);
}

.amenities-list-section {
    margin-top: 2rem;
}

.amenities-list-section h3 {
    color: var(--color-black);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.amenity-item {
    background-color: var(--color-white);
    border: 2px solid var(--color-sage);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.amenity-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.amenity-info {
    flex: 1;
}

.amenity-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.amenity-translations {
    font-size: 0.85rem;
    color: var(--color-sage);
}

.amenity-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-edit-amenity,
.btn-delete-amenity {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-edit-amenity {
    background-color: var(--color-sage);
    color: var(--color-white);
}

.btn-edit-amenity:hover {
    background-color: var(--color-beige);
    color: var(--color-black);
}

.btn-delete-amenity {
    background-color: #d32f2f;
    color: var(--color-white);
}

.btn-delete-amenity:hover {
    background-color: #b71c1c;
}

/* Edit Modal Styles */
.amenity-edit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.amenity-edit-modal.show {
    display: flex;
}

.amenity-edit-content {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.amenity-edit-content h3 {
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

/* ============ FACILITIES MANAGEMENT STYLES ============ */

.facility-add-section {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.facility-steps {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.facility-step {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--color-beige);
}

.facility-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--color-beige);
    color: var(--color-black);
    font-weight: 600;
}

.facility-step-hint {
    color: var(--color-sage);
    margin-bottom: 1rem;
}

.facility-photo-status {
    background-color: rgba(160, 180, 160, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    color: var(--color-beige);
    font-size: 0.9rem;
    border: 1px solid rgba(240, 236, 229, 0.3);
}

.facility-add-section h3 {
    color: var(--color-black);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.facility-lang-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.facility-lang-tab {
    padding: 0.5rem 1rem;
    background-color: var(--color-white);
    color: var(--color-black);
    border: 2px solid var(--color-sage);
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.facility-lang-tab.active {
    background-color: var(--color-sage);
    color: var(--color-white);
    border-color: var(--color-sage);
}

.facility-lang-tab:hover:not(.active) {
    background-color: var(--color-beige);
}

.facility-main-image-section,
.facility-library-section,
.facility-list-section {
    margin-bottom: 2rem;
}

.facility-hero-preview {
    margin-top: 1rem;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
}

.facility-item {
    background-color: var(--color-white);
    border: 2px solid var(--color-sage);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.facility-info h4 {
    color: var(--color-black);
    margin-bottom: 0.35rem;
}

.facility-info p {
    color: var(--color-sage);
    font-size: 0.85rem;
}

.facility-actions {
    display: flex;
    gap: 0.5rem;
}

.facility-edit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.facility-edit-modal.show {
    display: flex;
}

.facility-edit-content {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.facility-modal-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #ddd;
    margin-bottom: 1rem;
}

.facility-modal-tab {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.facility-modal-tab.active {
    border-bottom-color: var(--color-sage);
    font-weight: 600;
}

.facility-edit-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.amenity-edit-content .form-group {
    margin-bottom: 1rem;
}

.amenity-edit-content label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-black);
    font-weight: 500;
}

.amenity-edit-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-cancel {
    background-color: var(--color-sage);
    color: var(--color-white);
}

.btn-cancel:hover {
    background-color: var(--color-beige);
    color: var(--color-black);
}

/* ============ POLICY EDIT MODAL ============ */
.policy-edit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.policy-edit-modal.show {
    display: flex;
}

.policy-edit-content {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.policy-modal-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #ddd;
    margin-bottom: 1rem;
}

.policy-modal-tab {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.policy-modal-tab.active {
    border-bottom-color: var(--color-sage);
    font-weight: 600;
}

.policy-edit-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.quill-editor {
    min-height: 400px;
    background: white;
}

/* Override Quill default styles to match our theme */
.ql-toolbar.ql-snow {
    border: 1px solid var(--color-sage);
    border-radius: 4px 4px 0 0;
}

.ql-container.ql-snow {
    border: 1px solid var(--color-sage);
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.ql-editor {
    min-height: 350px;
    font-family: 'Raleway', sans-serif;
}

/* ============ ROOM CARDS ============ */
.room-card {
    background: var(--color-white);
    border: 1px solid var(--color-sage);
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.room-photo img {
    transition: transform 0.3s;
}

.room-photo:hover img {
    transform: scale(1.05);
}

.photo-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.room-details {
    padding: 1.5rem;
}

.room-details h3 {
    margin: 0 0 1rem 0;
    color: var(--color-black);
    font-size: 1.8rem;
    font-weight: 600;
}

.room-bed-type,
.room-occupancy,
.room-size {
    margin: 0.5rem 0;
    color: var(--color-sage);
    font-size: 1rem;
}

.room-description {
    margin: 1rem 0;
    line-height: 1.8;
    color: var(--color-black);
}

.room-amenities {
    margin: 1.5rem 0;
}

.room-amenities strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.room-amenities ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
}

.room-amenities li {
    padding: 0.25rem 0;
    color: var(--color-sage);
}

.room-amenities li:before {
    content: "✓ ";
    color: var(--color-black);
    font-weight: bold;
    margin-right: 0.5rem;
}

.view-gallery-btn {
    margin-top: 1rem;
    margin-right: 1rem;
}

/* Language Selector */
.lang-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.lang-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--color-sage);
    background: transparent;
    color: var(--color-black);
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    transition: all 0.3s;
}

.lang-btn:hover {
    background: var(--color-sage);
    color: var(--color-white);
}

.lang-btn.active {
    background: var(--color-black);
    color: var(--color-beige);
    border-color: var(--color-black);
}

/* ============ FACILITIES PAGE ============ */

.facilities-main {
    background-color: transparent;
}

.facilities-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--main-menu-height));
    min-height: 500px;
    background-image: url('headers/facilities.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facilities-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.facilities-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 0 1.5rem;
    max-width: 680px;
}

.facilities-hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.facilities-hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    margin: 1rem 0 0.5rem;
}

.facilities-hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.facilities-hero-divider {
    width: 120px;
    height: 2px;
    background-color: var(--color-beige);
    margin: 0 auto;
}

.facilities-intro {
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    background-color: var(--color-beige);
}

.facilities-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.facilities-section-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
}

.facilities-intro-text {
    color: var(--color-sage);
    line-height: 1.7;
}

.facilities-list {
    padding: 2.5rem 2rem 3rem;
    display: grid;
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.facilities-list-section {
    background-color: var(--color-white);
}

/* Facilities Tabs */
.facilities-tabs-container {
    padding: 2rem 2rem 0 2rem;
    background-color: var(--color-white);
}

.facilities-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.facility-tab {
    background-color: transparent;
    border: 1px solid rgba(149, 147, 128, 0.3);
    color: var(--color-sage);
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    font-family: 'Raleway', sans-serif;
}

.facility-tab:hover {
    background-color: rgba(212, 211, 195, 0.15);
    border-color: var(--color-sage);
}

.facility-tab.active {
    background-color: var(--color-beige);
    border-color: var(--color-beige);
    color: var(--color-black);
    font-weight: 600;
}

.facilities-tabs-divider {
    width: 100%;
    height: 2px;
    background-color: var(--color-beige);
    margin-bottom: 2rem;
}

.facility-card {
    background-color: var(--color-white);
    border: 1px solid rgba(149, 147, 128, 0.35);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.facility-card-header h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.facility-card-body p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    white-space: pre-line;
}

.facility-album {
    margin-bottom: 2rem;
}

.facility-album-title {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: var(--color-sage);
    margin-bottom: 0.75rem;
}

.facility-album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.facility-album-item {
    overflow: hidden;
    background-color: var(--color-beige);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.facility-album-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.facility-album-empty {
    color: var(--color-sage);
    font-style: italic;
    margin-bottom: 0;
}

.facility-card-body h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: var(--color-sage);
    margin-bottom: 0.75rem;
}

.facility-guidelines {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.35rem 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(var(--facility-guidelines-min-width), 1fr));
}

.facility-guidelines li {
    padding-left: 1.25rem;
    position: relative;
    color: #555;
    line-height: 1.5;
    font-size: 0.85rem;
}

.facility-guidelines li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-sage);
    font-size: 0.9rem;
}

.facility-guidelines-empty {
    color: var(--color-sage);
    font-style: italic;
}

.facilities-loading {
    text-align: center;
    color: var(--color-sage);
    padding: 2rem 0;
}

@media (max-width: 768px) {
    .facilities-hero {
        height: 50vh;
        min-height: 400px;
    }

    .facility-card {
        padding: 1.5rem;
    }
    
    .facilities-tabs-container {
        padding: 1.5rem 1rem 0 1rem;
    }
    
    .facilities-tabs {
        gap: 0.5rem;
    }
    
    .facility-tab {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
        flex: 1 1 auto;
        min-width: fit-content;
    }
    
    /* Mobile: Stack description and guidelines vertically */
    .facility-content-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .facility-divider-vertical {
        display: none; /* Hide vertical divider on mobile */
    }
    
    .facility-description-section,
    .facility-guidelines-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Add horizontal divider for mobile */
    .facility-guidelines-wrapper::before {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        margin-bottom: 1.5rem;
        background: linear-gradient(
            to right,
            transparent 0%,
            var(--color-beige) 15%,
            var(--color-beige) 85%,
            transparent 100%
        );
    }
    
    .facility-album-main-wrapper {
        min-height: 300px;
    }
    
    .facility-no-photos-placeholder {
        min-height: 300px;
    }
}

/* ============ MODERN FACILITY STYLES - BOUTIQUE REDESIGN ============ */
.facility-card-modern {
    background-color: var(--color-white);
    border: 1px solid rgba(149, 147, 128, 0.15);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
    display: none; /* Hide all by default */
}

.facility-card-modern.active {
    display: block; /* Show only active facility */
}

.facility-card-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.facility-card-modern:last-child {
    margin-bottom: 0;
}

/* Full-width photo album at top */
.facility-album-wrapper-fullwidth {
    width: 100%;
    position: relative;
}

.facility-album-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: 180px;
}

.facility-album-showcase.image-right {
    direction: ltr;
}

.facility-album-showcase.image-right > * {
    direction: ltr;
}

.facility-album-main-wrapper {
    position: relative;
    height: 100%;
    min-height: 400px;
    width: 100%;
}

.facility-album-main-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
}

.facility-album-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.facility-album-main-image:hover img {
    transform: scale(1.05);
}

.facility-magnify-icon {
    position: absolute;
    bottom: 0.65rem;
    right: 0.65rem;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 3;
}

.facility-magnify-icon svg {
    width: 16px;
    height: 16px;
    color: var(--color-beige);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.facility-album-main-image:hover .facility-magnify-icon {
    transform: scale(1.15);
    background: rgba(0, 0, 0, 0.7);
}

.facility-album-main-image:hover .facility-magnify-icon svg {
    color: var(--color-white);
}

.facility-album-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--color-beige);
    border: 1px solid rgba(212, 211, 195, 0.6);
    border-radius: 999px;
    font-size: 1rem;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
    z-index: 4;
    line-height: 1;
    padding: 0;
}

.facility-album-nav:hover {
    background-color: var(--color-beige);
    color: var(--color-black);
}

.facility-album-nav-prev {
    left: 0.5rem;
}

.facility-album-nav-next {
    right: 0.5rem;
}

.facility-album-badge {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    background: rgba(0, 0, 0, 0.65);
    color: var(--color-white);
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
    border-radius: 3px;
    z-index: 3;
}

/* Cover Flow Carousel Styles */
.coverflow-container {
    width: 100%;
    max-height: 500px;
    height: 500px;
    position: relative;
    overflow: hidden;
    perspective: 1200px;
    background: linear-gradient(to bottom, #f8f8f8 0%, #e8e8e8 100%);
}

.coverflow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.coverflow-item {
    position: absolute;
    width: 400px;
    max-width: 80vw;
    height: 300px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform-style: preserve-3d;
}

.coverflow-item-inner {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.coverflow-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* Reflection effect */
.coverflow-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0) 100%);
    transform: scaleY(-1);
    opacity: 0.3;
    pointer-events: none;
}

/* Center item - largest, fully opaque, forward-facing */
.coverflow-item.active {
    z-index: 100;
    transform: translateX(0) translateZ(0) rotateY(0deg) scale(1.6);
    opacity: 1;
}

/* Left items */
.coverflow-item.left-1 {
    z-index: 90;
    transform: translateX(-380px) translateZ(-200px) rotateY(45deg) scale(0.85);
    opacity: 0.7;
}

.coverflow-item.left-2 {
    z-index: 80;
    transform: translateX(-650px) translateZ(-400px) rotateY(50deg) scale(0.7);
    opacity: 0.5;
}

.coverflow-item.left-3 {
    z-index: 70;
    transform: translateX(-850px) translateZ(-600px) rotateY(55deg) scale(0.6);
    opacity: 0.3;
}

/* Right items */
.coverflow-item.right-1 {
    z-index: 90;
    transform: translateX(380px) translateZ(-200px) rotateY(-45deg) scale(0.85);
    opacity: 0.7;
}

.coverflow-item.right-2 {
    z-index: 80;
    transform: translateX(650px) translateZ(-400px) rotateY(-50deg) scale(0.7);
    opacity: 0.5;
}

.coverflow-item.right-3 {
    z-index: 70;
    transform: translateX(850px) translateZ(-600px) rotateY(-55deg) scale(0.6);
    opacity: 0.3;
}

/* Hidden items */
.coverflow-item.hidden-left {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-1200px) translateZ(-800px) scale(0.5);
}

.coverflow-item.hidden-right {
    opacity: 0;
    pointer-events: none;
    transform: translateX(1200px) translateZ(-800px) scale(0.5);
}

/* Fallback for generic hidden class */
.coverflow-item.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(1200px) translateZ(-800px) scale(0.5);
}

/* Navigation arrows */
.coverflow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--color-beige);
    border: 2px solid rgba(212, 211, 195, 0.6);
    border-radius: 50%;
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 200;
    line-height: 1;
    padding: 0;
}

.coverflow-nav:hover {
    background-color: var(--color-beige);
    color: var(--color-black);
    transform: translateY(-50%) scale(1.1);
}

.coverflow-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.coverflow-nav-prev {
    left: 1rem;
}

.coverflow-nav-next {
    right: 1rem;
}

/* Image count badge */
.coverflow-badge {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
    z-index: 150;
    backdrop-filter: blur(5px);
}

/* Loading state */
.coverflow-item img[data-src]:not([src]) {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Split content section: Description | Guidelines */
.facility-content-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    padding: 2rem 2.5rem;
    align-items: start;
}

.facility-description-section {
    padding-right: 1rem;
}

.facility-content-description {
    color: #555;
    line-height: 1.65;
    white-space: pre-line;
    font-size: 0.9rem;
    margin: 0;
}

/* Vertical beige divider with fade effect */
.facility-divider-vertical {
    width: 2px;
    height: 100%;
    min-height: 150px;
    position: relative;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--color-beige) 15%,
        var(--color-beige) 85%,
        transparent 100%
    );
}

.facility-guidelines-wrapper {
    padding-left: 1rem;
}

.facility-guidelines-section {
    margin: 0;
}

.facility-guidelines-section h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: var(--color-sage);
    margin-bottom: 0.75rem;
    font-weight: 600;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(149, 147, 128, 0.25);
}

.facility-content {
    padding: 1.25rem 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.facility-content::before {
    content: '';
    position: absolute;
    top: 1.15rem;
    left: 0;
    width: 2px;
    height: 28px;
    background: var(--color-sage);
}

.facility-content-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
}

/* Old styles kept for backwards compatibility */
.facility-content {
    padding: 1.25rem 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.facility-content::before {
    content: '';
    position: absolute;
    top: 1.15rem;
    left: 0;
    width: 2px;
    height: 28px;
    background: var(--color-sage);
}

.facility-content-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
}

/* Full-width no photos placeholder */
.facility-no-photos-fullwidth {
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--color-beige) 0%, rgba(212, 211, 195, 0.5) 100%);
}

.facility-no-photos-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-sage);
    font-size: 0.85rem;
    font-style: italic;
    padding: 1.25rem;
    text-align: center;
    height: 100%;
    min-height: 400px;
}

/* Facility Lightbox Styles */
.facility-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.facility-lightbox-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    max-height: 70vh;
    margin-bottom: 2rem;
}

.facility-lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.facility-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--color-beige);
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    color: var(--color-beige);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: background-color 0.3s, color 0.3s;
    line-height: 1;
    padding: 0;
}

.facility-lightbox-close:hover {
    background-color: var(--color-beige);
    color: var(--color-black);
}

.facility-lightbox-prev,
.facility-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--color-beige);
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    color: var(--color-beige);
    cursor: pointer;
    z-index: 10001;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.facility-lightbox-prev {
    left: 2rem;
}

.facility-lightbox-next {
    right: 2rem;
}

.facility-lightbox-prev:hover,
.facility-lightbox-next:hover {
    background-color: var(--color-beige);
    color: var(--color-black);
}

.facility-lightbox-thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem;
    max-width: 90%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.facility-lightbox-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 4px;
    transition: border-color 0.3s, transform 0.3s;
    flex-shrink: 0;
}

.facility-lightbox-thumbnail:hover {
    border-color: var(--color-beige);
    transform: scale(1.05);
}

.facility-lightbox-thumbnail.active {
    border-color: white;
}

/* Facility Mobile Responsive */
@media (max-width: 900px) {
    .facility-album-showcase,
    .facility-no-photos {
        grid-template-columns: 1fr;
    }

    .facility-guidelines {
        grid-template-columns: 1fr;
    }

    .facility-album-showcase.image-right {
        direction: ltr;
    }

    .facility-album-main-wrapper {
        min-height: 200px;
    }

    .facility-content {
        padding: 1.25rem 1.25rem 1.25rem;
    }

    .facility-content::before {
        top: 1.1rem;
        height: 32px;
    }

    .facility-content-title {
        font-size: 1.1rem;
    }
    
    .facility-card-modern {
        margin-bottom: 1.5rem;
    }

    /* Cover Flow mobile adjustments */
    .coverflow-container {
        height: 350px;
        max-height: 350px;
    }

    .coverflow-item {
        width: 280px;
        height: 200px;
    }

    .coverflow-item.left-1 {
        transform: translateX(-250px) translateZ(-150px) rotateY(40deg) scale(0.8);
    }

    .coverflow-item.right-1 {
        transform: translateX(250px) translateZ(-150px) rotateY(-40deg) scale(0.8);
    }

    .coverflow-item.left-2,
    .coverflow-item.right-2 {
        opacity: 0;
        pointer-events: none;
    }

    .coverflow-item.left-3,
    .coverflow-item.right-3 {
        opacity: 0;
        pointer-events: none;
    }

    .coverflow-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .facility-content-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .facility-divider-vertical {
        display: none;
    }
}

@media (max-width: 600px) {
    .facility-album-nav {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .facility-lightbox-prev,
    .facility-lightbox-next {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .facility-lightbox-prev {
        left: 0.75rem;
    }

    .facility-lightbox-next {
        right: 0.75rem;
    }

    .facility-lightbox-thumbnails {
        max-width: 95%;
        gap: 0.4rem;
    }

    .facility-lightbox-thumbnail {
        width: 55px;
        height: 55px;
    }

    /* Cover Flow small screen adjustments */
    .coverflow-container {
        height: 280px;
        max-height: 280px;
    }

    .coverflow-item {
        width: 220px;
        height: 165px;
    }

    .coverflow-item.left-1 {
        transform: translateX(-180px) translateZ(-120px) rotateY(35deg) scale(0.75);
    }

    .coverflow-item.right-1 {
        transform: translateX(180px) translateZ(-120px) rotateY(-35deg) scale(0.75);
    }

    .coverflow-nav {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .coverflow-nav-prev {
        left: 0.5rem;
    }

    .coverflow-nav-next {
        right: 0.5rem;
    }

    .coverflow-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ============ LIGHTBOX ============ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    max-height: 70vh;
    margin-bottom: 2rem;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--color-beige);
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    color: var(--color-beige);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: background-color 0.3s, color 0.3s;
    line-height: 1;
    padding: 0;
}

.lightbox-close:hover {
    background-color: var(--color-beige);
    color: var(--color-black);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--color-beige);
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    color: var(--color-beige);
    cursor: pointer;
    z-index: 10001;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--color-beige);
    color: var(--color-black);
    transform: translateY(-50%);
}

.lightbox-thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem;
    max-width: 90%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.lightbox-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 4px;
    transition: border-color 0.3s, transform 0.3s;
    flex-shrink: 0;
}

.lightbox-thumbnail:hover {
    border-color: var(--color-beige);
    transform: scale(1.05);
}

.lightbox-thumbnail.active {
    border-color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .room-card {
        margin: 1rem 0;
    }

    .room-details {
        padding: 1rem;
    }

    .room-details h3 {
        font-size: 1.4rem;
    }

    .room-amenities ul {
        grid-template-columns: 1fr;
    }

    .lightbox {
        padding: 1rem;
    }

    .lightbox-content {
        max-height: 60vh;
        margin-bottom: 1rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    .lightbox-thumbnails {
        max-width: 100%;
        padding: 0.5rem;
    }

    .lightbox-thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* ============ MODERN ROOMS PAGE - REDESIGNED ============ */

/* Rooms Main Container */
.rooms-main {
    min-height: 100vh;
    background-color: transparent; /* Allow fixed page-background to show through the hero section */
    padding: 0;
}

/* Enhanced Hero Section with Background */
.rooms-hero-modern {
    position: relative;
    height: calc(100vh - var(--main-menu-height));
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('headers/rooms.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.rooms-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.40);
    z-index: 1;
}

.rooms-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.rooms-hero-tagline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-beige);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.rooms-hero-title-modern {
    font-size: 5rem;
    font-weight: 200;
    letter-spacing: 0.08em;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.rooms-hero-subtitle-modern {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--color-beige);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.rooms-hero-divider {
    width: 100px;
    height: 2px;
    background: var(--color-beige);
    margin: 0 auto;
}

/* Intro Section */
.rooms-intro {
    padding: 5rem 2rem;
    background-color: var(--color-beige);
    text-align: center;
}

.rooms-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.rooms-section-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--color-black);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.rooms-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

/* Rooms Showcase Section */
.rooms-showcase {
    background-color: var(--color-white);
    padding: 4rem 0;
}

.rooms-showcase-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.rooms-loading {
    text-align: center;
    color: var(--color-sage);
    font-size: 1.1rem;
    padding: 4rem;
}

/* Room Feature Card - Alternating Layout */
.room-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 6rem;
    background: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .room-feature:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
}

.room-feature::after {
    content: '';
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: rgba(149, 147, 128, 0.3);
}

.room-feature:last-child::after {
    display: none;
}

/* Alternating image positions */
.room-feature.image-right .room-feature-image-wrapper {
    order: 2;
}

.room-feature.image-right .room-feature-content {
    order: 1;
}

/* Image Wrapper */
.room-feature-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--color-sage);
}

.room-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.room-feature:hover .room-feature-image {
    transform: scale(1.05);
}

.room-feature-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

/* Photo Badge */
.room-feature-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.75);
    color: var(--color-white);
    padding: 0.625rem 1.25rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

/* Magnifying Glass Icon */
.room-feature-image-clickable {
    position: relative;
    width: 100%;
    height: 100%;
}

.room-feature-magnify-icon {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 3;
}

.room-feature-magnify-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-beige);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.room-feature-image-clickable:hover .room-feature-magnify-icon {
    transform: scale(1.15);
}

.room-feature-image-clickable:hover .room-feature-magnify-icon svg {
    color: var(--color-white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Image navigation arrows */
.room-image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--color-beige);
    border: 2px solid var(--color-beige);
    border-radius: 999px;
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
    z-index: 2;
    opacity: 0;
}

.room-feature-image-wrapper:hover .room-image-nav {
    opacity: 1;
}

.room-image-nav:hover {
    background-color: var(--color-beige);
    color: var(--color-black);
    transform: translateY(-50%);
}

.room-image-nav-left {
    left: 2rem;
}

.room-image-nav-right {
    right: 2rem;
}

/* Room Content */
.room-feature-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-beige);
}

.room-feature-header {
    margin-bottom: 2rem;
}

.room-feature-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-sage);
    margin-bottom: 1rem;
}

.room-feature-name {
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-black);
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin: 0;
}

/* Amenities Icons Row */
.room-feature-amenities {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(149, 147, 128, 0.3);
}

.room-feature-amenity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-black);
    font-weight: 400;
}

.room-feature-icon {
    width: 22px;
    height: 22px;
    color: var(--color-sage);
}

/* Description */
.room-feature-description {
    line-height: 1.8;
    color: #555;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    font-weight: 300;
}

/* Actions */
.room-feature-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.room-feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.room-feature-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-sage);
    transition: left 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
}

.room-feature-btn:hover::before {
    left: 0;
}

.room-feature-btn span,
.room-feature-btn .btn-icon {
    position: relative;
    z-index: 1;
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.room-feature-btn:hover .btn-icon {
    transform: translateX(5px);
}

.room-feature-btn.secondary {
    background: transparent;
    border: 1px solid var(--color-sage);
    color: var(--color-black);
}

.room-feature-btn.secondary::before {
    background: var(--color-sage);
}

.room-feature-btn.secondary:hover {
    color: var(--color-white);
}

/* Call to Action Section */
.rooms-cta {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
}

.rooms-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.rooms-cta-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.rooms-cta-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--color-beige);
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
}

.rooms-cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--color-white);
    color: var(--color-black);
    border: 2px solid var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 0;
}

.rooms-cta-button:hover {
    background: transparent;
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ============ ROOM MODAL - ENHANCED ============ */

.room-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.room-modal.active {
    opacity: 1;
    visibility: visible;
}

.room-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.room-modal-content {
    position: relative;
    background: var(--color-white);
    max-width: 960px;
    max-height: 90vh;
    width: 90%;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.room-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--color-beige);
    width: 48px;
    height: 48px;
    border-radius: 999px;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--color-beige);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
}

.room-modal-close:hover {
    background-color: var(--color-beige);
    color: var(--color-black);
}

/* Modal Header */
.room-modal-header {
    position: relative;
}

.room-modal-hero {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-radius: 12px 12px 0 0;
}

.room-modal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.room-modal-hero:hover img {
    transform: scale(1.08);
}

.room-modal-photo-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.85);
    color: var(--color-white);
    padding: 0.875rem 1.75rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.room-modal-title {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--color-black);
    margin: 0;
    padding: 2.5rem 3rem 1.5rem;
    letter-spacing: 0.08em;
}

/* Modal Details */
.room-modal-details {
    padding: 0 3rem 3rem;
}

.room-modal-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(149, 147, 128, 0.2);
    border-bottom: 1px solid rgba(149, 147, 128, 0.2);
    margin-bottom: 2.5rem;
}

.room-modal-spec {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.room-modal-icon {
    width: 22px;
    height: 22px;
    color: var(--color-sage);
    flex-shrink: 0;
}

.room-modal-spec-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.room-modal-spec .room-card-icon {
    font-size: 1.5rem;
}

.room-modal-spec-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-sage);
    font-weight: 500;
}

.room-modal-spec-value {
    font-size: 1.1rem;
    color: var(--color-black);
    font-weight: 400;
}

.room-modal-description {
    margin-bottom: 2.5rem;
}

.room-modal-description h3 {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: 1.25rem;
    letter-spacing: 0.08em;
}

.room-modal-description p {
    line-height: 1.9;
    color: #333;
    font-weight: 300;
    font-size: 1rem;
}

.room-modal-amenities {
    margin-bottom: 2.5rem;
}

.room-modal-amenities h3 {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: 1.25rem;
    letter-spacing: 0.08em;
}

.room-modal-amenities-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.room-modal-amenities-list li {
    color: #555;
    font-weight: 300;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.95rem;
}

.room-modal-amenities-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-black);
    font-weight: 600;
    font-size: 1.1rem;
}

.room-modal-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.room-modal-btn {
    flex: 1;
    min-width: 220px;
}

/* Room Modal Booking Bar */
.room-modal-booking {
    margin-top: 0;
    padding: 2.5rem 3rem 3rem;
    border-top: 2px solid rgba(149, 147, 128, 0.2);
}

.room-modal-booking h3 {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
}

.booking-bar.booking-bar-modal {
    position: static;
    background: var(--color-beige);
    padding: 1.5rem;
    border-radius: 8px;
    width: 100%;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
}

.booking-bar.booking-bar-modal .booking-field label {
    color: var(--color-black);
}

.booking-bar.booking-bar-modal .booking-field input {
    border-color: rgba(0, 0, 0, 0.4);
}

/* ============ RESPONSIVE DESIGN ============ */

@media (max-width: 768px) {
    /* Hero Section */
    .rooms-hero-modern {
        height: 50vh;
        min-height: 400px;
    }

    .rooms-hero-title-modern {
        font-size: 2.8rem;
    }

    .rooms-hero-subtitle-modern {
        font-size: 1rem;
    }

    /* Intro Section */
    .rooms-intro {
        padding: 3rem 1.5rem;
    }

    .rooms-section-title {
        font-size: 1.8rem;
    }

    .rooms-intro-text {
        font-size: 1rem;
    }

    /* Room Features */
    .rooms-showcase {
        padding: 2rem 0;
    }

    .rooms-showcase-grid {
        padding: 0 1rem;
    }

    .room-feature {
        grid-template-columns: 1fr;
        margin-bottom: 4rem;
    }

    .room-feature.image-right .room-feature-image-wrapper,
    .room-feature.image-left .room-feature-image-wrapper {
        order: 1;
    }

    .room-feature.image-right .room-feature-content,
    .room-feature.image-left .room-feature-content {
        order: 2;
    }

    .room-feature-image-wrapper {
        height: 350px;
    }

    .room-feature-content {
        padding: 2.5rem 1.5rem;
    }

    .room-feature-name {
        font-size: 2rem;
    }

    .room-feature-amenities {
        flex-direction: column;
        gap: 1rem;
    }

    .room-feature-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    /* CTA Section */
    .rooms-cta {
        padding: 4rem 1.5rem;
    }

    .rooms-cta-title {
        font-size: 2rem;
    }

    .rooms-cta-text {
        font-size: 1rem;
    }

    /* Modal Adjustments */
    .room-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 8px;
    }

    .room-modal-hero {
        height: 300px;
    }

    .room-modal-title {
        font-size: 2rem;
        padding: 2rem 2rem 1.25rem;
    }

    .room-modal-details {
        padding: 0 2rem 2rem;
    }

    .room-modal-specs {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
        margin-bottom: 2rem;
    }

    .room-modal-actions {
        flex-direction: column;
    }

    .room-modal-btn {
        width: 100%;
        min-width: auto;
    }

    .room-modal-amenities-list {
        grid-template-columns: 1fr;
    }

    .room-modal-booking {
        padding: 2.5rem 2rem 2rem;
    }

    .booking-bar.booking-bar-modal {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .rooms-hero {
        padding: 2.5rem 1rem 2.5rem;
    }

    .rooms-hero-title {
        font-size: 2.2rem;
        letter-spacing: 0.08em;
    }

    .rooms-hero-title::after {
        width: 60px;
    }

    .rooms-hero-subtitle {
        font-size: 0.95rem;
        margin-top: 1.5rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1rem;
    }

    .room-grid-card:hover {
        transform: translateY(-8px);
    }

    .room-modal-hero {
        height: 240px;
    }

    .room-modal-title {
        font-size: 1.6rem;
        padding: 1.5rem 1.5rem 1rem;
    }

    .room-modal-details {
        padding: 0 1.5rem 1.5rem;
    }

    .room-modal-booking {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .room-modal-close {
        width: 40px;
        height: 40px;
        top: 1rem;
        right: 1rem;
    }
}

/* Keyboard focus states for accessibility */
.room-grid-card:focus {
    outline: 3px solid var(--color-black);
    outline-offset: 2px;
}

.room-grid-card:focus-visible {
    outline: 3px solid var(--color-black);
    outline-offset: 2px;
}

.room-modal-close:focus-visible {
    outline: 2px solid var(--color-black);
    outline-offset: 2px;
}

/* ============ MEETINGS MANAGEMENT STYLES ============ */
.meeting-lang-tabs,
.attraction-lang-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.meeting-lang-tab,
.attraction-lang-tab {
    background-color: transparent;
    color: var(--color-beige);
    border: 1px solid var(--color-sage);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.meeting-lang-tab:hover,
.attraction-lang-tab:hover {
    background-color: var(--color-sage);
    color: var(--color-white);
}

.meeting-lang-tab.active,
.attraction-lang-tab.active {
    background-color: var(--color-beige);
    color: var(--color-black);
    border-color: var(--color-beige);
}

.meeting-add-section,
.meeting-photos-section,
.meeting-video-section,
.meeting-list-section,
.meeting-main-image-section,
.attraction-add-section,
.attraction-list-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 211, 195, 0.2);
}

.meeting-add-section h3,
.meeting-photos-section h3,
.meeting-video-section h3,
.meeting-list-section h3,
.meeting-main-image-section h3,
.attraction-add-section h3,
.attraction-list-section h3 {
    color: var(--color-beige);
    margin-bottom: 1rem;
}

.meeting-photo-status,
.attraction-photo-status {
    color: var(--color-sage);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: rgba(149, 147, 128, 0.1);
    border-radius: 4px;
}

.meeting-grid,
.attraction-grid {
    display: grid;
    gap: 1rem;
}

.meeting-item,
.attraction-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 211, 195, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(212, 211, 195, 0.2);
}

.meeting-info,
.attraction-info {
    flex: 1;
}

.meeting-info h4,
.attraction-info h4 {
    color: var(--color-beige);
    margin-bottom: 0.25rem;
}

.meeting-info p,
.attraction-info p {
    color: var(--color-sage);
    font-size: 0.85rem;
}

.meeting-actions,
.attraction-actions {
    display: flex;
    gap: 0.5rem;
}

.attraction-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.meeting-main-image-preview {
    margin-top: 1rem;
}

.meeting-main-image-preview .photo-item {
    max-width: 300px;
}

/* ========================================
   INFO PAGE REDESIGN - MODERN STYLES
   ======================================== */

/* Info Page Main Container */
.info-main {
    min-height: 100vh;
}

/* Info Hero Section */
.info-hero {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('headers/info.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.info-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.40);
    z-index: 1;
}

.info-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.info-hero-tagline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-beige);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.info-hero-title {
    font-size: 5rem;
    font-weight: 200;
    letter-spacing: 0.08em;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.info-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--color-beige);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.info-hero-divider {
    width: 100px;
    height: 2px;
    background: var(--color-beige);
    margin: 0 auto;
}

/* Info Intro Section */
.info-intro {
    padding: 5rem 2rem;
    background-color: var(--color-beige);
    text-align: center;
}

.info-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

/* Info Sections Container */
.info-sections-container {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F7F4 100%);
    padding: 4rem 2rem 6rem;
}

/* Three Column Layout */
.info-columns {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    animation: fade-in-up 0.6s ease-out;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Full Width Sections */
.info-full-width-sections {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    animation: fade-in-up 0.8s ease-out 0.2s both;
}

/* Elegant Info Cards - Modern Boutique Style */
.info-card-modern {
    background: linear-gradient(135deg, #FAF9F6 0%, #F5F4F0 100%);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(149, 147, 128, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(149, 147, 128, 0.15);
    position: relative;
    overflow: hidden;
}

.info-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-sage) 0%, var(--color-beige) 50%, var(--color-sage) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 211, 195, 0.1), transparent);
    transition: left 0.5s ease;
}

.info-card-modern:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(149, 147, 128, 0.2);
    transform: translateY(-5px);
    border-color: rgba(149, 147, 128, 0.3);
}

.info-card-modern:hover::before {
    opacity: 1;
}

.info-card-modern:hover::after {
    left: 100%;
}

.info-card-full {
    width: 100%;
}

.info-card-modern h3 {
    color: var(--color-black);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    text-align: left;
    border-bottom: 2px solid var(--color-sage);
    padding-bottom: 0.75rem;
    text-transform: uppercase;
    position: relative;
}



.info-card-modern .info-content {
    color: #333;
    font-size: 1rem;
    line-height: 1.9;
}

.info-card-modern .info-content p {
    margin-bottom: 1.2rem;
    color: #333;
}

.info-card-modern .info-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Info Page */
@media (max-width: 1024px) {
    .info-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-column {
        gap: 2rem;
    }
    
    .info-full-width-sections {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .info-hero {
        height: 600px;
    }

    .info-hero-title {
        font-size: 3rem;
    }
    
    .info-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .info-hero-tagline {
        font-size: 0.75rem;
    }
    
    .info-intro {
        padding: 3rem 1.5rem;
    }
    
    .info-intro-text {
        font-size: 1rem;
    }
    
    .info-sections-container {
        padding: 3rem 1rem 4rem;
    }
    
    .info-card-modern {
        padding: 2rem;
    }
    
    .info-card-modern h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .info-hero {
        height: 450px;
    }

    .info-hero-title {
        font-size: 2.5rem;
    }
    
    .info-card-modern {
        padding: 1.5rem;
    }
}



/* Fullscreen Gallery Styles */
.fullscreen-gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.fullscreen-gallery.active {
    display: flex;
}

.fullscreen-gallery-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--color-beige);
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    color: var(--color-beige);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: background-color 0.3s, color 0.3s;
    line-height: 1;
    padding: 0;
}

.fullscreen-gallery-close:hover {
    background-color: var(--color-beige);
    color: var(--color-black);
}

.fullscreen-gallery-prev,
.fullscreen-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--color-beige);
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    color: var(--color-beige);
    cursor: pointer;
    z-index: 10001;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.fullscreen-gallery-prev {
    left: 2rem;
}

.fullscreen-gallery-next {
    right: 2rem;
}

.fullscreen-gallery-prev:hover,
.fullscreen-gallery-next:hover {
    background-color: var(--color-beige);
    color: var(--color-black);
}

.fullscreen-gallery-image-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    max-height: 70vh;
    margin-bottom: 2rem;
}

.fullscreen-gallery-image-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.fullscreen-gallery-thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem;
    max-width: 90%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.fullscreen-gallery-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 4px;
    transition: border-color 0.3s, transform 0.3s;
    flex-shrink: 0;
}

.fullscreen-gallery-thumbnail:hover {
    border-color: var(--color-beige);
    transform: scale(1.05);
}

.fullscreen-gallery-thumbnail.active {
    border-color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fullscreen-gallery {
        padding: 1rem;
    }

    .fullscreen-gallery-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .fullscreen-gallery-prev,
    .fullscreen-gallery-next {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .fullscreen-gallery-prev {
        left: 1rem;
    }

    .fullscreen-gallery-next {
        right: 1rem;
    }

    .fullscreen-gallery-thumbnails {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .fullscreen-gallery-thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* ===================================
   CAREERS PAGE STYLES
   =================================== */

.careers-main {
    padding-top: 0;
}

/* Careers Hero Section */
.careers-hero {
    position: relative;
    height: 500px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(149, 147, 128, 0.4)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23959380" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
}

.careers-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.careers-hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    padding: 2rem;
}

.careers-hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: var(--color-beige);
    margin-bottom: 1rem;
    display: block;
}

.careers-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
}

.careers-hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.careers-hero-divider {
    width: 60px;
    height: 2px;
    background-color: var(--color-beige);
    margin: 1.5rem auto 0;
}

/* Careers Intro Section */
.careers-intro {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--color-beige);
}

.careers-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.careers-section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    color: var(--color-black);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1rem;
}

.careers-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    font-weight: 300;
}

/* Careers Listings Section */
.careers-listings {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #FAFAFA, #FFFFFF);
}

/* Filter Section */
.careers-filter-container {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 500;
    color: var(--color-black);
    font-size: 1rem;
}

.filter-select {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-sage);
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    background: var(--color-white);
    color: var(--color-black);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.filter-select:hover {
    border-color: var(--color-black);
}

.filter-select:focus {
    outline: none;
    border-color: var(--color-black);
    box-shadow: 0 0 0 3px rgba(149, 147, 128, 0.1);
}

.careers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.careers-loading {
    text-align: center;
    padding: 3rem;
    color: var(--color-sage);
    font-size: 1.1rem;
}

.no-jobs-message {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #FAF9F6 0%, #F5F4F0 100%);
    border-radius: 12px;
    border: 1px solid var(--color-sage);
}

.no-jobs-message h3 {
    color: var(--color-black);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.no-jobs-message p {
    color: #333;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Career Cards */
.career-card {
    background: var(--color-white);
    border: 1px solid var(--color-sage);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.career-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.career-card.expanded {
    transform: translateY(0);
}

.career-card-header {
    background: linear-gradient(135deg, var(--color-black), #1a1a1a);
    color: var(--color-white);
    padding: 1.5rem;
    border-bottom: 3px solid var(--color-beige);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.career-card-header:hover {
    background: linear-gradient(135deg, #1a1a1a, var(--color-black));
}

.career-header-content {
    flex: 1;
}

.career-toggle-btn {
    background: transparent;
    border: none;
    color: var(--color-beige);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
    line-height: 1;
}

.toggle-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.career-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.career-type {
    display: inline-block;
    background: var(--color-beige);
    color: var(--color-black);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.career-card-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.career-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    color: var(--color-sage);
    font-size: 0.9rem;
}

.career-department {
    font-weight: 500;
}

.career-description {
    color: #333;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.career-description p {
    margin-bottom: 0.5rem;
}

.career-requirements {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-beige);
}

.career-requirements strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-black);
    font-weight: 500;
}

.career-requirements .requirements-content {
    color: #333;
    line-height: 1.6;
}

.career-requirements .requirements-content ul,
.career-requirements .requirements-content ol {
    list-style-position: inside;
    padding-left: 1rem;
    margin: 0.5rem 0;
}

.career-requirements .requirements-content ul {
    list-style-type: disc;
}

.career-requirements .requirements-content ol {
    list-style-type: decimal;
}

.career-requirements .requirements-content li {
    padding: 0.25rem 0;
    color: #333;
    line-height: 1.6;
}

.career-requirements .requirements-content p {
    margin: 0.5rem 0;
}

.career-card-footer {
    padding: 1.5rem;
    background: linear-gradient(135deg, #FAF9F6 0%, #F5F4F0 100%);
    border-top: 1px solid var(--color-beige);
}

.career-apply-btn {
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--color-sage), var(--color-beige));
    color: var(--color-black);
    border: 2px solid var(--color-beige);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.career-apply-btn:hover {
    background: linear-gradient(135deg, var(--color-beige), var(--color-white));
    transform: translateY(-2px);
}

/* Careers CTA Section */
.careers-cta {
    background: linear-gradient(135deg, var(--color-black), #1a1a1a);
    color: var(--color-white);
    padding: 4rem 2rem;
    text-align: center;
}

.careers-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.careers-cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
}

.careers-cta-text {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.careers-contact-btn {
    background: var(--color-beige);
    color: var(--color-black);
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.careers-contact-btn:hover {
    background: var(--color-white);
    transform: translateY(-2px);
}

/* Responsive Design for Careers Page */
@media (max-width: 768px) {
    .careers-hero {
        height: 400px;
    }

    .careers-intro {
        padding: 3rem 1.5rem;
    }

    .careers-listings {
        padding: 3rem 1.5rem;
    }

    .careers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .careers-cta {
        padding: 3rem 1.5rem;
    }

    .careers-filter-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-select {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .career-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .careers-hero-tagline {
        letter-spacing: 0.2rem;
    }

    .career-card-header {
        padding: 1rem;
    }

    .career-title {
        font-size: 1.25rem;
    }
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 2rem;
    color: #d73a49;
    font-size: 1.1rem;
}

/* ============================================
   ADMIN DASHBOARD MODERNIZATION
   ============================================ */

/* Sticky Action Bar */
.admin-action-bar {
    position: sticky;
    top: 70px; /* Below fixed header */
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 900;
    border-bottom: 2px solid var(--color-sage);
    display: none; /* Hidden by default, shown when a section is active */
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.admin-action-bar.show {
    display: flex;
}

.admin-action-bar-title {
    color: var(--color-beige);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.admin-action-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Flag Icons for Language Selection */
.lang-flag-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.lang-flag-tab {
    background: transparent;
    border: 2px solid transparent;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    line-height: 1;
}

.lang-flag-tab:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-sage);
}

.lang-flag-tab.active {
    background-color: rgba(212, 211, 195, 0.2);
    border-color: var(--color-beige);
    box-shadow: 0 0 8px rgba(212, 211, 195, 0.3);
}

/* Multi-language Form Container */
.multi-lang-form {
    position: relative;
}

.lang-panel {
    display: none;
}

.lang-panel.active {
    display: block;
}

/* Image Grid with Square Format and Beige Frame */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.photo-item {
    position: relative;
    aspect-ratio: 1;
    background-color: var(--color-beige);
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    cursor: grab;
}

.photo-item:active {
    cursor: grabbing;
}

.photo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.photo-item-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.photo-item:hover .photo-item-actions {
    opacity: 1;
}

.photo-item-checkbox {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 10;
}

/* Drag and Drop Visual Feedback */
.photo-item.dragging {
    opacity: 0.5;
    transform: scale(0.95);
}

.photo-item.drag-over {
    border: 2px dashed var(--color-beige);
    background-color: rgba(212, 211, 195, 0.2);
}

/* Sortable Lists */
.sortable-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sortable-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: grab;
    transition: all 0.2s ease;
}

.sortable-item:active {
    cursor: grabbing;
}

.sortable-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--color-sage);
}

.sortable-item.dragging {
    opacity: 0.5;
    transform: scale(0.98);
}

.sortable-item.drag-over {
    border-color: var(--color-beige);
    background-color: rgba(212, 211, 195, 0.1);
}

.drag-handle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-sage);
    font-size: 1.2rem;
    cursor: grab;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.drag-handle:hover {
    color: var(--color-beige);
    background-color: rgba(255, 255, 255, 0.05);
}

.drag-handle:active {
    cursor: grabbing;
}

/* Success Notification (non-blocking) */
.success-notification {
    position: fixed;
    top: 90px;
    right: 2rem;
    background-color: #4caf50;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideInRight 0.3s ease, slideOutRight 0.3s ease 2.7s;
    pointer-events: none;
}

.error-notification {
    position: fixed;
    top: 90px;
    right: 2rem;
    background-color: #f44336;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideInRight 0.3s ease, slideOutRight 0.3s ease 3.7s;
    pointer-events: none;
}

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

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

.success-notification-icon,
.error-notification-icon {
    font-size: 1.5rem;
}

.success-notification-message,
.error-notification-message {
    font-weight: 500;
}

/* Footer Positioning Fix */
.admin-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.admin-page .container {
    flex: 1 0 auto;
    padding-top: 90px; /* Account for fixed header */
    padding-bottom: 2rem;
}

.admin-page footer {
    flex-shrink: 0;
    margin-top: auto;
}

/* Multiple File Upload Enhancement */
.file-upload-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.file-upload-info {
    color: var(--color-sage);
    font-size: 0.9rem;
    font-style: italic;
}

/* Multi-select Actions */
.multi-select-actions {
    display: none;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    align-items: center;
}

.multi-select-actions.show {
    display: flex;
}

.multi-select-info {
    color: var(--color-beige);
    font-weight: 500;
    flex: 1;
}

/* Improved Form Consistency */
.unified-form {
    max-width: 100%;
}

.unified-form .form-group {
    margin-bottom: 1.5rem;
}

.unified-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-beige);
    font-weight: 600;
    font-size: 0.95rem;
}

.unified-form input[type="text"],
.unified-form input[type="email"],
.unified-form input[type="number"],
.unified-form textarea,
.unified-form select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--color-sage);
    border-radius: 6px;
    font-size: 1rem;
    background-color: var(--color-white);
    transition: border-color 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.unified-form input:focus,
.unified-form textarea:focus,
.unified-form select:focus {
    outline: none;
    border-color: var(--color-beige);
    box-shadow: 0 0 0 3px rgba(212, 211, 195, 0.1);
}

.unified-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .admin-action-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .admin-action-bar-title {
        font-size: 1.1rem;
    }

    .admin-action-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .admin-action-buttons .btn {
        flex: 1;
    }

    .photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
    }

    .lang-flag-tab {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .success-notification {
        right: 1rem;
        left: 1rem;
        top: 80px;
    }
}

/* ========================================
   Translation Management Styles
   ======================================== */

.translation-section {
    margin-bottom: 2.5rem;
    border: 1px solid var(--color-beige);
    border-radius: 8px;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.5);
}

.translation-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-sage);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-beige);
}

.translation-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.translation-item {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 1rem;
}

.translation-key {
    margin-bottom: 1rem;
    color: var(--color-sage);
    font-size: 0.95rem;
}

.translation-key strong {
    font-weight: 600;
}

.translation-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.translation-lang-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.translation-lang-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
}

.translation-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.translation-input:focus {
    outline: none;
    border-color: var(--color-sage);
    box-shadow: 0 0 0 3px rgba(128, 135, 126, 0.1);
}

.translation-input::placeholder {
    color: #999;
    font-style: italic;
}

/* Responsive adjustments for translation management */
@media (max-width: 768px) {
    .translation-inputs {
        grid-template-columns: 1fr;
    }
    
    .translation-section {
        padding: 1rem;
    }
}

/* Decorative Text Elements - Desktop Only */
.decorative-text-container {
    display: none; /* Hidden by default (mobile) */
}

@media (min-width: 900px) {
    .decorative-text-container {
        display: block;
        position: absolute;
        right: calc(25% - 100px); /* Moved 100px to the right */
        top: 150px; /* Moved 50px down */
        z-index: 100;
        pointer-events: none; /* Allow clicks to pass through */
    }
    
    .decorative-text-primary,
    .decorative-text-secondary {
        font-size: 90px; /* Increased from 70px to 90px */
        font-weight: 300;
        color: var(--color-white);
        font-family: 'Raleway', sans-serif;
        white-space: nowrap;
    }
    
    .decorative-text-secondary {
        position: relative;
        left: 70px; /* 70 pixels to the right from the beginning of the previous text */
        top: -75px; /* Positioned 95 pixels above to create visual hierarchy */
    }
}
