/* ================================================
   HAUS ZUR EGGE - Modernes Ferienwohnungs Design
   Themen: Wald, Wandern, Erholung, Altenbekener Viadukt
   
   MOBILE-FIRST APPROACH
   - Base styles target mobile (360px and below)
   - Tablet/Desktop enhancements via @media (min-width: 768px)
   - Large screens via @media (min-width: 1200px)
   ================================================ */

/* === CSS Variables - Natürliche Farbpalette === */
:root {
    /* Primärfarben - Wald & Natur */
    --color-forest: #2D5A3D;
    --color-forest-dark: #1E3D29;
    --color-forest-light: #4A7C5B;
    
    /* Sekundärfarben - Erde & Stein */
    --color-earth: #8B7355;
    --color-earth-light: #C4A77D;
    --color-stone: #6B7280;
    
    /* Akzentfarben - Viadukt & Herbstlaub */
    --color-accent: #D4A574;
    --color-accent-warm: #E8C49A;
    
    /* Neutral */
    --color-cream: #FDF8F3;
    --color-white: #FFFFFF;
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-300: #D1D5DB;
    --color-gray-500: #6B7280;
    --color-gray-700: #374151;
    --color-gray-800: #1F2937;
    --color-gray-900: #111827;
    
    /* Schatten */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Transition */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-700);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-gray-900);
}

/* Mobile base sizes */
h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.25rem; }

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-forest);
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--color-forest-dark);
}

.navbar-icon {
    width: 32px;
    height: 32px;
}

/* Desktop navigation - hidden on mobile by default */
.navbar-menu {
    display: none;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.navbar-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-gray-700);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-forest);
    transition: var(--transition);
}

.navbar-link:hover {
    color: var(--color-forest);
}

.navbar-link:hover::after {
    width: 100%;
}

.navbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-forest);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.navbar-cta:hover {
    background: var(--color-forest-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* Mobile toggle - visible on mobile by default */
.navbar-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gray-700);
    transition: var(--transition);
}

/* Mobile menu - visible on mobile by default */
.navbar-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    display: none;
}

.navbar-mobile.active {
    display: block;
}

.navbar-mobile-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.navbar-mobile-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-gray-700);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.navbar-mobile-link:hover {
    background: var(--color-gray-100);
    color: var(--color-forest);
}

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

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title-accent {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-price-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 1.5rem 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-price-label {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.hero-price {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-forest);
    line-height: 1;
}

.hero-price-period {
    font-size: 1rem;
    color: var(--color-gray-500);
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition);
}

.hero-cta-primary {
    background: var(--color-forest);
    color: white;
}

.hero-cta-primary:hover {
    background: var(--color-forest-dark);
    transform: translateY(-2px);
    color: white;
}

.hero-cta-secondary {
    background: white;
    color: var(--color-gray-800);
}

.hero-cta-secondary:hover {
    background: var(--color-gray-100);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.875rem;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* === Section Styles === */
.section {
    padding: 5rem 0;
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-forest);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    color: var(--color-gray-500);
    font-size: 1.1rem;
}

/* === About Section === */
.about {
    background: white;
}

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

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--color-forest);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--color-gray-500);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 360px) {
    .about-features {
        grid-template-columns: 1fr 1fr;
    }
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-forest);
    font-size: 1rem;
}

.about-feature-text {
    font-weight: 600;
    color: var(--color-gray-700);
}

/* === Amenities Section === */
.amenities {
    background: var(--color-gray-50);
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 360px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.amenity-card {
    width: 100%;
    background: white;
    padding: 1rem 0.75rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-gray-100);
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-forest);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-forest), var(--color-forest-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.amenity-title {
    font-weight: 600;
    color: var(--color-gray-800);
    margin-bottom: 0.5rem;
}

.amenity-description {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

/* === Gallery Section === */
.gallery {
    background: white;
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

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

.gallery-item-icon {
    color: white;
    font-size: 1.5rem;
}

/* === Lightbox === */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

/* === Booking Section === */
.booking {
    background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-forest-dark) 100%);
    position: relative;
    overflow: hidden;
}

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

.booking-container {
    position: relative;
    z-index: 1;
}

.booking-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 2rem 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.booking-title {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--color-gray-900);
}

.booking-subtitle {
    text-align: center;
    color: var(--color-gray-500);
    margin-bottom: 2rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.booking-form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-form-row > * {
    width: 100%;
}

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

.form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-gray-700);
}

.form-input,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--color-gray-50);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-forest);
    background: white;
}

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

.form-button {
    padding: 1rem 2rem;
    background: var(--color-forest);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.form-button:hover {
    background: var(--color-forest-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* === Location Section === */
.location {
    background: var(--color-gray-50);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.location-info h3 {
    margin-bottom: 1rem;
}

.location-info p {
    color: var(--color-gray-500);
    margin-bottom: 1.5rem;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-feature-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-forest);
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.location-feature-text strong {
    display: block;
    color: var(--color-gray-800);
}

.location-feature-text span {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.location-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

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

/* === Calendar Section === */
.calendar-section {
    background: var(--color-gray-50);
}

.calendar-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1rem;
    position: relative;
}

.calendar-months {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.calendar-month {
    position: relative;
}

/* Hide second month on mobile - shown only on tablet+ */
.calendar-month:nth-of-type(2) {
    display: none;
}

.calendar-month-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-month-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-forest);
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.calendar-month-title:hover {
    background: var(--color-gray-100);
}

.calendar-nav-btn {
    background: var(--color-gray-100);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--color-forest);
    transition: var(--transition);
}

.calendar-nav-btn:hover {
    background: var(--color-forest);
    color: white;
}

.calendar-nav-btn.visible {
    display: flex;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 0.5rem;
}

.calendar-weekday {
    text-align: center;
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--color-gray-500);
    padding: 0.25rem 0;
    text-transform: uppercase;
}

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

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
    border: none;
    color: var(--color-gray-700);
}

.calendar-day:hover:not(.empty):not(.past):not(.booked) {
    background: var(--color-gray-100);
}

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

.calendar-day.past {
    color: var(--color-gray-300);
    cursor: not-allowed;
}

.calendar-day.booked {
    background: #fee2e2;
    color: #dc2626;
    cursor: not-allowed;
    font-weight: 600;
}

.calendar-day.selected-start,
.calendar-day.selected-end {
    background: var(--color-forest) !important;
    color: white !important;
    font-weight: 700;
}

.calendar-day.selected {
    background: var(--color-forest-light) !important;
    color: white !important;
}

.calendar-day.in-range {
    background: rgba(45, 90, 61, 0.2);
    color: var(--color-forest);
}

.calendar-selection-info {
    text-align: center;
    padding: 1rem;
    background: var(--color-gray-50);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.calendar-selection-info strong {
    color: var(--color-forest);
}

.calendar-clear-btn {
    background: none;
    border: none;
    color: var(--color-gray-500);
    cursor: pointer;
    font-size: 0.875rem;
    text-decoration: underline;
    margin-left: 1rem;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.calendar-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-forest);
}

.calendar-legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.calendar-legend-color.free {
    background: white;
    border: 1px solid var(--color-gray-300);
}

.calendar-legend-color.booked {
    background: #fee2e2;
    border: 1px solid #dc2626;
}

.calendar-legend-color.selected {
    background: var(--color-forest);
}

/* === Footer === */
.footer {
    background: var(--color-gray-900);
    color: var(--color-gray-300);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--color-gray-500);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

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

.footer-social-link {
    width: 40px;
    height: 40px;
    background: var(--color-gray-800);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-title {
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--color-gray-500);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--color-gray-800);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-gray-500);
    text-align: center;
}

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

.footer-legal a {
    color: var(--color-gray-500);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: white;
}

/* === Utility Classes === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

/* === Page Header (for legal pages) === */
.page-header {
    padding-top: 120px;
    padding-bottom: 3rem;
    background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-forest-dark) 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.9;
}

/* === Legal Content === */
.legal-content {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: -2rem auto 3rem;
    position: relative;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-forest);
}

.legal-content h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--color-gray-700);
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--color-gray-700);
}

.legal-content a {
    color: var(--color-forest);
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: var(--color-gray-800);
}

/* === Animations === */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

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

/* === Print Styles === */
@media print {
    .navbar,
    .hero-cta-group,
    .footer {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
}

/* ============================================================================
   MOBILE-SPECIFIC CALENDAR FIXES (max-width: 767px)
   ============================================================================ */

@media (max-width: 767px) {
    /* Calendar - left-align on mobile */
    .calendar-wrapper {
        margin: 0;
        text-align: left;
    }

    /* Calendar - show nav buttons on mobile */
    .calendar-nav-btn {
        display: flex;
    }
}

/* ============================================================================
   TABLET & DESKTOP ENHANCEMENTS (min-width: 768px)
   ============================================================================ */

@media (min-width: 768px) {
    /* Typography - larger on tablet+ */
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.5rem; }
    
    /* Navigation - show desktop menu, hide mobile toggle */
    .navbar-menu {
        display: flex;
    }
    
    .navbar-mobile-toggle {
        display: none;
    }
    
    .navbar-mobile {
        display: none !important;
    }
    
    /* Hero - larger title and subtitle on tablet+ */
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-cta-group {
        flex-direction: row;
    }
    
    /* About - 2 column grid on tablet+ */
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    
    /* Amenities - 2 column grid on tablet+ */
    
    .amenity-card {
        padding: 2rem 1.5rem;
    }
    
    /* Gallery - 2 column grid on tablet+ */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Booking - form row 2 columns on tablet+ */
    .booking-card {
        padding: 3rem;
    }
    
    .booking-form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .booking-form-row > * {
        width: auto;
    }
    
    /* Location - 2 column grid on tablet+ */
    .location-content {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Calendar - 2 months side by side on tablet+ */
    .calendar-wrapper {
        padding: 1.5rem;
    }
    
    .calendar-months {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calendar-month:nth-of-type(2) {
        display: block;
    }
    
    .calendar-nav-btn {
        display: flex;
    }
    
    .calendar-weekdays {
        gap: 0;
    }
    
    .calendar-weekday {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }
    
    .calendar-day {
        font-size: 0.875rem;
    }
    
    .calendar-legend {
        gap: 1.5rem;
    }
    
    /* Footer - 3 column grid on tablet+ */
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ============================================================================
   LARGE DESKTOP ENHANCEMENTS (min-width: 1200px)
   ============================================================================ */

@media (min-width: 1200px) {
    /* Amenities - 4 column grid on large desktop */
    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Gallery - 3 column grid on large desktop */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}