/*
 * Home Shanti - Ferienwohnung Leipzig
 * Stylesheet
 * 
 * Autor: Home Shanti
 * Version: 1.0
 * Letzte Aktualisierung: Januar 2026
 */

:root {
    /* Pastellgrün Farbpalette */
    --sage-50: #f6f9f6;
    --sage-100: #e8f0e8;
    --sage-200: #d4e4d4;
    --sage-300: #b8d4b8;
    --sage-400: #9bc49b;
    --sage-500: #7eb07e;
    --sage-600: #5d8a5d;
    --sage-700: #4a6f4a;
    --sage-800: #3d5a3d;
    --sage-900: #2d432d;
    
    /* Neutrale Töne */
    --warm-white: #fdfcfa;
    --cream: #f8f6f2;
    --stone-100: #f5f4f0;
    --stone-200: #e8e6e1;
    --stone-400: #a8a5a0;
    --stone-600: #6b6860;
    --stone-800: #3d3b38;
    --stone-900: #1a1918;
    
    /* Akzente */
    --terracotta: #c4a77d;
    --terracotta-light: #e8d4b8;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito Sans', -apple-system, sans-serif;
    
    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --content-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--stone-800);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--stone-900);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--stone-600);
}

a {
    color: var(--sage-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--sage-100);
    transition: all 0.3s ease;
}

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--stone-900);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo span {
    color: var(--sage-600);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--stone-600);
    letter-spacing: 0.02em;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sage-400);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--sage-500);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--sage-600);
    transform: translateY(-2px);
}

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

/* Mobile Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--stone-800);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sage-50) 0%, var(--cream) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--sage-50) 0%, transparent 30%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    width: 100%;
}

.hero-text {
    max-width: 550px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--sage-100);
    color: var(--sage-700);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--sage-600);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--stone-600);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--stone-700);
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    color: var(--sage-500);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 3rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--sage-500);
    color: white;
    box-shadow: 0 4px 20px rgba(126, 176, 126, 0.3);
}

.btn-primary:hover {
    background: var(--sage-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(126, 176, 126, 0.4);
    color: white;
}

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

.btn-secondary:hover {
    border-color: var(--sage-400);
    color: var(--sage-600);
}

/* Rating Badge */
.hero-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--sage-200);
    animation: fadeInUp 0.8s ease 0.5s backwards;
}

.rating-score {
    background: var(--sage-500);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.rating-text {
    font-size: 0.9rem;
}

.rating-text strong {
    color: var(--stone-800);
    display: block;
}

/* Sections */
section {
    padding: var(--section-padding) 2rem;
}

.section-container {
    max-width: var(--content-width);
    margin: 0 auto;
}

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

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage-600);
    margin-bottom: 1rem;
}

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

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--sage-200);
    border-radius: 1rem;
    z-index: -1;
}

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

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

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: var(--sage-100);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
    color: var(--sage-600);
}

.highlight-text h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.highlight-text p {
    font-size: 0.9rem;
    margin: 0;
}

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

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

.amenity-category {
    background: var(--cream);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.amenity-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.amenity-icon {
    width: 56px;
    height: 56px;
    background: var(--sage-100);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.amenity-icon svg {
    width: 28px;
    height: 28px;
    color: var(--sage-600);
}

.amenity-category h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.amenity-list {
    list-style: none;
}

.amenity-list li {
    font-size: 0.9rem;
    color: var(--stone-600);
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Gallery Section */
.gallery {
    background: var(--sage-50);
}

/* Desktop Slider */
.gallery-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gallery-slider {
    overflow: hidden;
    border-radius: 1rem;
    flex: 1;
    background: var(--stone-100);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    height: 500px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--stone-100);
}

.gallery-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.gallery-nav:hover {
    background: var(--sage-500);
    color: white;
}

.gallery-nav svg {
    width: 24px;
    height: 24px;
}

.gallery-prev {
    left: -25px;
}

.gallery-next {
    right: -25px;
}

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

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--sage-400);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot:hover {
    background: var(--sage-300);
}

.gallery-dot.active {
    background: var(--sage-500);
    border-color: var(--sage-500);
}

/* Mobile Gallery */
.gallery-mobile {
    display: none;
}

.gallery-mobile-item {
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
    background: var(--stone-100);
}

.gallery-mobile-item img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

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

.lightbox.active {
    display: flex;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 0.5rem;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

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

.lightbox-close svg {
    width: 28px;
    height: 28px;
}

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

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

.lightbox-nav svg {
    width: 28px;
    height: 28px;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
}

/* Location Section */
.location {
    background: var(--warm-white);
}

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

.location-map {
    border-radius: 1rem;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.location-content h2 {
    margin-bottom: 1rem;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--sage-50);
    border-radius: 1rem;
    margin: 1.5rem 0 2rem;
}

.location-address svg {
    width: 24px;
    height: 24px;
    color: var(--sage-600);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.location-address p {
    margin: 0;
    color: var(--stone-700);
}

.location-address strong {
    color: var(--stone-900);
}

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

.poi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--stone-100);
}

.poi-item span:first-child {
    color: var(--stone-700);
}

.poi-item span:last-child {
    font-weight: 500;
    color: var(--sage-600);
}

/* Booking Section */
.booking {
    background: linear-gradient(135deg, var(--sage-100) 0%, var(--sage-50) 100%);
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
}

.booking-box {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.booking-header {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--stone-100);
}

.booking-info-item {
    text-align: center;
}

.booking-info-item svg {
    width: 32px;
    height: 32px;
    color: var(--sage-500);
    margin-bottom: 0.75rem;
}

.booking-info-item h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--stone-500);
    margin-bottom: 0.25rem;
}

.booking-info-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--stone-800);
    margin: 0;
}

/* Smoobu Calendar Placeholder */
.smoobu-widget {
    background: var(--stone-100);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.smoobu-widget svg {
    width: 64px;
    height: 64px;
    color: var(--sage-400);
    margin-bottom: 1.5rem;
}

.smoobu-widget p {
    color: var(--stone-500);
    font-size: 0.9rem;
}

.smoobu-widget code {
    display: block;
    background: var(--stone-200);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--stone-600);
}

/* Booking CTA */
.booking-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--sage-50) 0%, var(--sage-100) 100%);
    border-radius: 1rem;
    border: 2px solid var(--sage-200);
}

.booking-cta-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(126, 176, 126, 0.2);
}

.booking-cta-icon svg {
    width: 40px;
    height: 40px;
    color: var(--sage-500);
}

.booking-cta h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--stone-900);
}

.booking-cta p {
    color: var(--stone-600);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Reviews Section */
.reviews {
    background: var(--cream);
}

/* FAQ Section */
.faq {
    background: var(--warm-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: var(--cream);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--sage-400);
}

.faq-item h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--stone-800);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--stone-600);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: var(--sage-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--sage-700);
}

.review-meta h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.review-meta span {
    font-size: 0.85rem;
    color: var(--stone-400);
}

.review-stars {
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--stone-600);
    font-style: italic;
}

.review-source {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--stone-400);
}

/* Contact Section */
.contact {
    background: var(--warm-white);
}

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

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--sage-600);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-item a {
    color: var(--stone-700);
}

.contact-item a:hover {
    color: var(--sage-600);
}

.contact-form {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--stone-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--stone-200);
    border-radius: 0.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-400);
}

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

/* Footer */
.footer {
    background: var(--stone-900);
    color: var(--stone-400);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: var(--content-width);
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--stone-800);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand h3 span {
    color: var(--sage-400);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--stone-400);
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: var(--stone-400);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--sage-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.9rem;
}

.footer-legal a {
    color: var(--stone-400);
    margin-left: 2rem;
}

.footer-legal a:hover {
    color: var(--sage-400);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-bg {
        width: 50%;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-rows: repeat(2, 250px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--warm-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--sage-100);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding-top: 80px;
    }
    
    .hero-bg {
        position: relative;
        width: 100%;
        height: 300px;
        order: -1;
    }
    
    .hero-bg::before {
        background: linear-gradient(180deg, transparent 60%, var(--sage-50) 100%);
    }
    
    .hero-content {
        padding: 2rem;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .about-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery Mobile Styles */
    .gallery-slider-container,
    .gallery-dots {
        display: none;
    }
    
    .gallery-mobile {
        display: block;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
    }
    
    .lightbox-prev {
        left: 0.5rem;
    }
    
    .lightbox-next {
        right: 0.5rem;
    }
    
    .booking-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal a {
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .poi-grid {
        grid-template-columns: 1fr;
    }
}
