/* ================================================
   LA DEMEURE DE MONTPELLIER
   CSS Stylesheet — Maison de Maître Theme
   RAL 6021 Pale Green (#89AC76)
   ================================================ */

/* --- CSS Variables --- */
:root {
    /* RAL 6021 Pale Green palette */
    --green-100: #f2f7ef;
    --green-200: #dbe8d3;
    --green-300: #c3d9b7;
    --green-400: #a6c895;
    --green-500: #89AC76; /* RAL 6021 */
    --green-600: #6f9a5c;
    --green-700: #5a7e4a;
    --green-800: #456138;
    --green-900: #304527;

    /* Neutral tones */
    --cream: #FAF8F5;
    --cream-dark: #F0EDE8;
    --warm-white: #FEFCFA;
    --charcoal: #2C2C2C;
    --dark: #1a1a1a;
    --text: #3D3D3D;
    --text-light: #6B6B6B;
    --text-muted: #9A9A9A;
    --border: #E5E0DA;
    --border-light: #F0EDE8;

    /* Gold accent */
    --gold: #C4A265;
    --gold-light: #D4BA85;
    --gold-dark: #A6874D;

    /* Functional */
    --danger: #C0392B;
    --success: #27AE60;
    --info: #2980B9;

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Lato', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

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

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

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

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

a {
    color: var(--green-600);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--green-700);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--charcoal);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-primary {
    background: var(--green-600);
    color: white;
    box-shadow: 0 4px 15px rgba(137, 172, 118, 0.3);
}

.btn-primary:hover {
    background: var(--green-700);
    color: white;
    box-shadow: 0 6px 20px rgba(137, 172, 118, 0.4);
    transform: translateY(-2px);
}

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

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(250, 248, 245, 0.97);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.navbar.scrolled .nav-logo {
    color: var(--charcoal);
}

.nav-logo i {
    color: var(--green-400);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    display: block;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    border-radius: 4px;
    transition: var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--text);
}

.nav-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--green-600);
    background: var(--green-100);
}

.nav-cta {
    background: var(--green-600) !important;
    color: white !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 0.8rem !important;
    letter-spacing: 1px !important;
}

.nav-cta:hover {
    background: var(--green-700) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--charcoal);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.4) 0%,
        rgba(26, 26, 26, 0.3) 40%,
        rgba(26, 26, 26, 0.6) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(137, 172, 118, 0.25);
    border: 1px solid rgba(137, 172, 118, 0.4);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

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

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 300;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    font-weight: 500;
    font-style: italic;
    color: var(--green-300);
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 36px;
}

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

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 400;
}

.hero-feature i {
    color: var(--green-400);
    font-size: 1.1rem;
}

.hero-btn {
    font-size: 0.9rem;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* --- Section Styles --- */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 16px;
}

.section-label i {
    font-size: 0.75rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--green-500), var(--gold));
    margin: 0 auto;
}

.section-desc {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--text-light);
    font-size: 1.05rem;
}

/* --- About Section --- */
.about {
    background: var(--warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.about-text p {
    margin-bottom: 24px;
    color: var(--text-light);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.highlight {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--cream);
    border-radius: 8px;
    border-left: 3px solid var(--green-500);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-100);
    color: var(--green-600);
    border-radius: 8px;
    font-size: 1rem;
}

.highlight h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.highlight p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.about-image-overlay span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: white;
}

/* --- Gallery Section --- */
.gallery-section {
    background: var(--cream);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 8px 20px;
    border: 1px solid var(--border);
    background: white;
    color: var(--text-light);
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter:hover,
.gallery-filter.active {
    background: var(--green-600);
    color: white;
    border-color: var(--green-600);
}

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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: white;
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 0.85rem;
    opacity: 0.8;
}

.gallery-overlay i {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2rem;
    opacity: 0.7;
}

/* --- Lightbox --- */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-caption {
    text-align: center;
    color: white;
    padding: 16px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* --- Amenities Section --- */
.amenities {
    background: var(--warm-white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.amenity-card {
    background: white;
    padding: 36px 28px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--green-300);
}

.amenity-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-100), var(--green-200));
    color: var(--green-700);
    border-radius: 16px;
    font-size: 1.5rem;
}

.amenity-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.amenity-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Calendar Section --- */
.calendar-section {
    background: var(--cream);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-light);
}

.legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 4px;
}

.legend-dot.available {
    background: var(--green-200);
    border: 1px solid var(--green-400);
}

.legend-dot.booked {
    background: #f5d5d5;
    border: 1px solid #e0a0a0;
}

.legend-dot.selected {
    background: var(--green-600);
    border: 1px solid var(--green-700);
}

.calendar-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.calendar-nav-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text);
    transition: var(--transition);
}

.calendar-nav-btn:hover {
    background: var(--green-100);
    border-color: var(--green-400);
    color: var(--green-700);
}

.calendar-month-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
}

.calendar-months {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.calendar-month {
    min-width: 0;
}

.calendar-month h4 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--green-700);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day-header {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    padding: 8px 0;
}

.calendar-day {
    text-align: center;
    padding: 8px 4px;
    font-size: 0.88rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.today {
    font-weight: 700;
    box-shadow: inset 0 0 0 2px var(--green-500);
}

.calendar-day.available:hover {
    background: var(--green-100);
    color: var(--green-700);
}

.calendar-day.booked {
    background: #f5d5d5;
    color: #b05050;
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-day.past {
    color: var(--text-muted);
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: var(--green-600);
    color: white;
    font-weight: 700;
}

.calendar-day.in-range {
    background: var(--green-200);
    color: var(--green-800);
}

.calendar-day.check-in {
    background: var(--green-600);
    color: white;
    border-radius: 6px 0 0 6px;
}

.calendar-day.check-out {
    background: var(--green-600);
    color: white;
    border-radius: 0 6px 6px 0;
}

/* Selected Dates Display */
.selected-dates {
    max-width: 900px;
    margin: 24px auto 0;
}

.selected-dates-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px 32px;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--green-400);
    box-shadow: 0 4px 15px rgba(137, 172, 118, 0.15);
}

.selected-date-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.selected-date-item i {
    font-size: 1.3rem;
    color: var(--green-600);
}

.selected-date-item label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.selected-date-item span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
}

.selected-date-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--green-600);
}

.selected-date-separator span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* --- Reservation Section --- */
.reservation-section {
    background: var(--warm-white);
}

.reservation-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.info-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    margin-bottom: 24px;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green-700);
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 6px 0;
    font-size: 0.92rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card ul li i {
    color: var(--green-500);
    font-size: 0.8rem;
    width: 16px;
}

.info-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 2;
}

.info-card p i {
    color: var(--green-500);
    width: 20px;
}

/* Form */
.reservation-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--green-500);
    font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-500);
    background: white;
    box-shadow: 0 0 0 3px rgba(137, 172, 118, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-footer {
    text-align: center;
    margin-top: 8px;
}

.form-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: var(--green-500);
}

/* --- Modal --- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    max-width: 480px;
    margin: 0 24px;
}

.modal-icon {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 20px;
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: white;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col h3 i {
    color: var(--green-400);
}

.footer-col p {
    font-size: 0.92rem;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    padding: 4px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li i {
    color: var(--green-500);
    width: 16px;
    font-size: 0.8rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul a:hover {
    color: var(--green-400);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .reservation-wrapper {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 4px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--text) !important;
        padding: 12px 16px;
    }

    .nav-links a:hover {
        background: var(--green-100) !important;
        color: var(--green-700) !important;
    }

    .nav-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

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

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

    .calendar-months {
        grid-template-columns: 1fr;
    }

    .calendar-wrapper {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .reservation-form {
        padding: 24px;
    }

    .selected-dates-inner {
        flex-direction: column;
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .about-highlights {
        grid-template-columns: 1fr;
    }

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

    .calendar-legend {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .calendar-nav-btn {
        width: 36px;
        height: 36px;
    }

    .calendar-month-title {
        font-size: 1.1rem;
    }

    .calendar-day {
        padding: 6px 2px;
        font-size: 0.8rem;
    }
}

/* --- Print styles --- */
@media print {
    .navbar, .hero-scroll, .lightbox, .modal, .calendar-nav-btn {
        display: none !important;
    }

    .section {
        padding: 30px 0;
        page-break-inside: avoid;
    }
}
