/* GRUNDEINSTELLUNGEN & FARBVARIABLEN */
:root {
    --color-gold: #BFA15B;
    --color-dark-red: #8B0000;
    --color-creme: #F5F5DC;
    --color-anthracite: #2F4F4F;
    --color-anthracite-light: #4a6363;
    --color-white: #FFFFFF;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-anthracite);
    line-height: 1.7;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* HEADER & NAVIGATION */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 50%, #6b4423 100%);
    color: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    transition: background-color 0.3s;
}

.main-header.scrolled {
    background: linear-gradient(135deg, #1a0f08 0%, #2d1a0f 50%, #4a2c1a 100%);
    box-shadow: 0 4px 25px rgba(0,0,0,0.25);
    padding: 15px 40px;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    position: relative;
    padding-bottom: 5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.main-nav ul a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.3s;
}

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

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

/* Wohnungs-Wechsel-Buttons im Header */
.wohnung-switcher {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.wohnung-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.wohnung-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.wohnung-btn:hover::before {
    left: 100%;
}

.wohnung-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
}

.wohnung-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.25);
}

.wohnung-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #2c1810;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(15px);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
  backface-visibility: hidden;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, 
    rgba(0,0,0,0.5) 0%, 
    rgba(0,0,0,0.3) 30%, 
    rgba(0,0,0,0.2) 60%, 
    rgba(0,0,0,0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 30% 50%, 
    rgba(191, 177, 91, 0.1) 0%, 
    transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
  margin-top: -5vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1::after {
  left: 50%;
  transform: translateX(-50%);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 25px;
  text-shadow: 3px 3px 8px rgba(0,0,0,0.4);
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: relative;
}

.hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  border-radius: 2px;
}

.hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
  line-height: 1.6;
  letter-spacing: 0.02em;
  max-width: 600px;
}

.btn {
    padding: 16px 32px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, #d4af37 100%);
    color: var(--color-white);
    border: 2px solid var(--color-gold);
    box-shadow: 0 8px 25px rgba(191, 177, 91, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d4af37 0%, var(--color-gold) 100%);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(191, 177, 91, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(191, 177, 91, 0.3);
}

/* SEKTIONEN ALLGEMEIN */
section {
    padding: 100px 0;
    position: relative;
    width: 100%;
}

/* SEKTIONEN ALLGEMEIN */
section {
    padding: 80px 0;
    position: relative;
    width: 100%;
}

/* Farbwechsel für bessere Trennung */
section:nth-child(odd) {
    background-color: #ffffff;
    width: 100%;
}

section:nth-child(even) {
    background-color: var(--color-creme);
    width: 100%;
}

/* Hero-Sektion speziell */
.hero {
    background-color: #ffffff;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-anthracite);
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* HIGHLIGHTS */
.highlights {
    background: linear-gradient(135deg, var(--color-creme) 0%, #f5f5dc 50%, #f0f0e0 100%);
    padding: 100px 0;
    width: 100%;
    position: relative;
}

.highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(191, 177, 91, 0.3), transparent);
}

.highlights .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.highlight-item {
    flex-basis: 30%;
    padding: 35px 25px;
    background: linear-gradient(135deg, var(--color-white) 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(191, 177, 91, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), #d4af37);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(191, 177, 91, 0.15);
    border-color: rgba(191, 177, 91, 0.3);
}

.highlight-item:hover::before {
    transform: scaleX(1);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    transition: transform 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1);
}

.highlight-item h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-anthracite);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.highlight-item p {
    color: var(--color-anthracite-light);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* WOHNUNG */
.wohnung-section {
    background-color: var(--color-creme);
    padding: 100px 0;
    width: 100%;
    min-height: 100vh; /* Mindesthöhe für konsistentes Layout */
    overflow: hidden; /* Verhindert Scroll-Sprünge */
    transition: all 0.3s ease; /* Sanfte Übergänge */
}

/* Wohnungs-Auswahl Tabs */
.wohnung-selector {
    text-align: center;
    margin-bottom: 60px;
}

.wohnung-selector h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.wohnung-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.wohnung-tab {
    background: white;
    border: 3px solid transparent;
    border-radius: 20px;
    padding: 25px 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    min-width: 280px;
    text-align: center;
}

.wohnung-tab:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #8B4513;
}

.wohnung-tab.active {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    border-color: #8B4513;
    transform: translateY(-3px);
}

.tab-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.tab-title {
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.tab-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    display: block;
    font-weight: 400;
}

.wohnung-tab.active .tab-subtitle {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .wohnung-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .wohnung-tab {
        min-width: 250px;
        max-width: 300px;
    }
    
    .wohnung-selector h2 {
        font-size: 2rem;
    }
}

/* Neue Wohnungs-Bildergalerie */
.wohnung-hero-gallery {
    margin-bottom: 80px;
    min-height: 500px; /* Mindesthöhe für konsistente Galerie */
}

.gallery-main {
    margin-bottom: 30px;
}

.main-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 500px;
}

.main-image-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    will-change: transform;
    backface-visibility: hidden;
    background-color: #f8f8f8;
}



/* Kategorie-Filter */
.gallery-categories {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    border: 2px solid var(--color-gold);
    background: transparent;
    color: var(--color-gold);
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-btn:hover {
    background: var(--color-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(191, 161, 91, 0.3);
}

.category-btn.active {
    background: var(--color-gold);
    color: white;
    box-shadow: 0 3px 10px rgba(191, 161, 91, 0.4);
}

.gallery-thumbnails {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    justify-content: center;
}

/* Responsive Breakpoints für bessere Anpassung */
@media (min-width: 1200px) {
    .thumbnail-grid {
        grid-template-columns: repeat(6, 120px);
        max-width: 800px;
    }
    
    /* Bessere Bildformatierung für große Bildschirme */
    .gallery-item img,
    .thumbnail-item img,
    .main-image-container img {
        object-fit: contain;
        object-position: center;
        background-color: #f8f8f8;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .thumbnail-grid {
        grid-template-columns: repeat(4, 120px);
        max-width: 600px;
    }
}

.thumbnail-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1;
    border: 3px solid transparent;
}

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

.thumbnail-item.active {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(191, 161, 91, 0.3);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    opacity: 1;
    transition: opacity 0.2s ease;
    will-change: opacity;
    background-color: #f8f8f8;
}

.thumbnail-item img[loading="eager"] {
    opacity: 1;
}



.wohnung-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
    min-height: 800px; /* Mindesthöhe für konsistentes Layout */
}

/* Wohnungs-Highlights */
.wohnung-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
    min-height: 200px; /* Mindesthöhe für konsistente Darstellung */
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--color-white);
    border-radius: 15px;
    border-left: 5px solid var(--color-gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    font-size: 2.5rem;
    min-width: 50px;
}

.highlight-content h4 {
    font-size: 1.3rem;
    color: var(--color-anthracite);
    margin-bottom: 8px;
    font-weight: 600;
}

.highlight-content p {
    font-size: 1rem;
    color: var(--color-anthracite);
    opacity: 0.8;
    line-height: 1.5;
}

.wohnung-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.wohnung-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

.wohnung-details h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.wohnung-details ul {
    list-style-position: inside;
}

/* KUNDENZUFRIEDENHEIT */
.bewertungen-section {
    background-color: #ffffff;
    width: 100%;
    padding: 80px 0;
}

.customer-satisfaction {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.satisfaction-intro {
    font-size: 1.2rem;
    color: var(--color-anthracite);
    margin-bottom: 50px;
    line-height: 1.6;
}

.platform-ratings {
    margin-bottom: 60px;
}

.platform-ratings h3 {
    font-size: 1.8rem;
    color: var(--color-anthracite);
    margin-bottom: 40px;
    font-weight: 600;
}

.booking-cta {
    margin-top: 50px;
}

.booking-cta h3 {
    font-size: 1.6rem;
    color: var(--color-anthracite);
    margin-bottom: 20px;
    font-weight: 600;
}

.booking-cta p {
    font-size: 1.1rem;
    color: var(--color-anthracite-light);
    line-height: 1.5;
}

/* BOOKING PLATFORMS */
.booking-platforms {
    margin-top: 60px;
    text-align: center;
}

.booking-platforms h3 {
    font-size: 1.8rem;
    color: var(--color-anthracite);
    margin-bottom: 40px;
    font-weight: 600;
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 30px;
    background: var(--color-white);
    border: 2px solid var(--color-gold);
    border-radius: 15px;
    text-decoration: none;
    color: var(--color-anthracite);
    transition: all 0.3s ease;
    min-width: 180px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.platform-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(191, 161, 91, 0.3);
    background: var(--color-gold);
    color: var(--color-white);
}

.platform-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.platform-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.platform-rating {
    font-size: 0.9rem;
    opacity: 0.8;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--color-anthracite-light);
    margin-top: 5px;
    display: block;
}

/* Platform-spezifische Farben */
.platform-link.airbnb:hover {
    border-color: #FF5A5F;
    background: #FF5A5F;
}

.platform-link.booking:hover {
    border-color: #003580;
    background: #003580;
}

.platform-link.fewo:hover {
    border-color: #00A699;
    background: #00A699;
}

/* Rhodt unter Rietburg Styles */
.rhodt-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.rhodt-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-anthracite);
    margin-bottom: 30px;
    font-weight: 500;
}

.rhodt-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.rhodt-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--color-creme);
    border-radius: 10px;
    border-left: 4px solid var(--color-gold);
    transition: all 0.3s ease;
}

.rhodt-highlights .highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(191, 161, 91, 0.15);
}

.rhodt-highlights .icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.rhodt-highlights span:last-child {
    font-weight: 600;
    color: var(--color-anthracite);
}

.rhodt-link {
    margin-top: 30px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--color-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(191, 161, 91, 0.3);
}

.rhodt-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.rhodt-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.rhodt-hero-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.rhodt-hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

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

.overlay-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.overlay-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.rhodt-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--color-creme);
    border-radius: 15px;
    border-left: 4px solid var(--color-gold);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(191, 161, 91, 0.15);
}

.feature-icon {
    font-size: 2rem;
    min-width: 40px;
}

.feature-text h4 {
    font-size: 1.1rem;
    color: var(--color-anthracite);
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--color-anthracite);
    opacity: 0.8;
}

/* Neue Bildergalerie-Sektion */
.rhodt-gallery-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid var(--color-gold);
}

.rhodt-gallery-section h3 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--color-anthracite);
    margin-bottom: 50px;
    position: relative;
}

.rhodt-gallery-section h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    width: 100vw;
    max-width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 0;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background-color: #f8f8f8;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 25px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.gallery-caption p {
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.rhodt-details {
    margin-top: 80px;
}

.rhodt-details h3 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--color-anthracite);
    margin-bottom: 50px;
    position: relative;
}

.rhodt-details h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 2px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.detail-card {
    background: var(--color-creme);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--color-gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.detail-card h4 {
    font-size: 1.3rem;
    color: var(--color-anthracite);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.detail-card p {
    line-height: 1.7;
    color: var(--color-anthracite);
    font-size: 1rem;
    font-weight: 500;
}

/* BUCHUNG */
.buchung-section {
    background-color: var(--color-anthracite);
    color: var(--color-white);
    text-align: center;
    width: 100%;
}

.buchung-section h2 {
    color: var(--color-anthracite);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.buchungs-links {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

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

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

/* FOOTER */
.main-footer {
    background-color: var(--color-creme);
    text-align: center;
    padding: 50px 20px;
    color: #666;
    border-top: 2px solid var(--color-gold);
}

.main-footer a {
    color: var(--color-anthracite);
    text-decoration: none;
}

.main-footer a:hover {
    text-decoration: underline;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .wohnung-switcher {
        display: none; /* Verstecken auf mobilen Geräten */
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-anthracite);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .main-nav.active {
        display: flex;
        opacity: 1;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav ul li {
        margin: 10px 0;
    }

    .main-nav ul a {
        color: var(--color-white);
    }
    
    .mobile-nav-toggle {
        display: block;
        color: var(--color-anthracite);
    }
    
    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .hero h1::after {
        width: 60px;
        height: 2px;
        bottom: -8px;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .hero {
        background-attachment: scroll;
        min-height: 70vh;
    }
    
    .hero-image img {
        object-position: center 30%;
    }
}

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

.modal.open {
  display: flex;
}

.modal-content {
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  background: transparent;
  object-fit: contain;
  cursor: pointer;
}

.close {
  position: absolute;
  top: 32px;
  right: 48px;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  text-shadow: 0 2px 8px #000;
}

/* KALENDER */
#buchungskalender-container {
    margin: 0;
    width: 100%;
    max-width: none;
    font-family: var(--font-body);
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: var(--color-white);
    transition: all 0.3s ease-in-out;
    position: relative;
}

#buchungskalender-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--color-anthracite), var(--color-anthracite-light));
    color: var(--color-white);
    padding: 15px 25px;
    font-size: 1.2rem;
    font-weight: 700;
    border-bottom: 2px solid var(--color-gold);
}

.calendar-header h2 {
    margin-bottom: 0;
    font-size: 1.3rem;
    color: var(--color-white);
    font-family: var(--font-heading);
}

.calendar-header button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--color-white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.calendar-header button:hover {
    background: var(--color-gold);
    transform: scale(1.1);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    background: linear-gradient(to right, var(--color-anthracite-light), var(--color-anthracite));
    color: var(--color-white);
    padding: 12px 0;
    font-weight: 700;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 10px;
    gap: 5px;
    background-color: #f8f8f8;
}

.calendar-day, .empty-day {
    background-color: var(--color-white);
    text-align: center;
    padding: 12px 5px;
    font-size: 1rem;
    position: relative;
    min-height: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.calendar-day:hover:not(.booked) {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.calendar-day.booked {
    background: linear-gradient(135deg, var(--color-dark-red), #a52a2a);
    color: var(--color-white);
    font-weight: 700;
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
}

.calendar-day.booked::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.1) 49%, rgba(255,255,255,0.1) 51%, transparent 52%);
    background-size: 10px 10px;
}

.calendar-day.today {
    border: 2px solid var(--color-gold);
    background-color: #fff8e1;
    font-weight: 700;
    position: relative;
}

.calendar-day.today::before {
    content: 'Heute';
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 0.7rem;
    color: var(--color-gold);
    font-weight: 700;
}

.empty-day {
    background-color: transparent;
    box-shadow: none;
}

.calendar-day .tooltip {
    visibility: hidden;
    background-color: var(--color-anthracite);
    color: var(--color-white);
    text-align: center;
    border-radius: 8px;
    padding: 8px 12px;
    position: absolute;
    z-index: 10;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-size: 0.9rem;
    white-space: nowrap;
}

.calendar-day .tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 6px;
    border-style: solid;
    border-color: var(--color-anthracite) transparent transparent transparent;
}

.calendar-day:hover .tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.calendar-day.selected {
    background-color: var(--color-gold);
    color: var(--color-white);
    font-weight: 700;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(191, 161, 91, 0.3);
}

.calendar-day.selected::after {
    content: '✓';
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 0.8rem;
    color: var(--color-white);
}

.calendar-day.selected.check-in {
    background-color: #90EE90;
    color: #2F4F4F;
    font-weight: 700;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(144, 238, 144, 0.3);
    z-index: 2;
}

.calendar-day.selected.check-in::after {
    content: '↓';
    position: absolute;
    bottom: 2px;
    right: 2px;
    font-size: 0.8rem;
    color: #2F4F4F;
}

.calendar-day.selected.check-out {
    background-color: #90EE90;
    color: #2F4F4F;
    font-weight: 700;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(144, 238, 144, 0.3);
    z-index: 2;
}

.calendar-day.selected.check-out::after {
    content: '↑';
    position: absolute;
    bottom: 2px;
    right: 2px;
    font-size: 0.8rem;
    color: #2F4F4F;
}

.calendar-day.selected-range {
    background-color: rgba(144, 238, 144, 0.2);
    border: 2px dashed #90EE90;
    position: relative;
}

.calendar-day.selected-range::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(144, 238, 144, 0.1) 49%, rgba(144, 238, 144, 0.1) 51%, transparent 52%);
    background-size: 10px 10px;
    z-index: 1;
}

.calendar-day.selected-range:hover {
    background-color: rgba(144, 238, 144, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(144, 238, 144, 0.2);
}

.calendar-day.selected-range:hover::before {
    background: linear-gradient(45deg, transparent 48%, rgba(144, 238, 144, 0.2) 49%, rgba(144, 238, 144, 0.2) 51%, transparent 52%);
    background-size: 10px 10px;
}

.calendar-day.disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    opacity: 0.7;
}

.calendar-day.disabled:hover {
    background-color: #f5f5f5;
    transform: none;
    box-shadow: none;
}

.calendar-header button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: none;
}

.calendar-header button:disabled:hover {
    background: none;
    transform: none;
}

/* BUCHUNGSFORMULAR */
.booking-form-container {
    margin: 0;
    width: 100%;
    max-width: none;
    padding: 30px;
    background-color: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.booking-form-container h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-anthracite);
    margin-bottom: 30px;
    text-align: center;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--color-anthracite);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(191, 161, 91, 0.1);
}

/* PREISÜBERSICHT */
.price-summary {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: var(--color-anthracite);
}

.selected-dates-display {
  background: #e3f2fd;
  border: 1px solid #2196f3;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 15px;
  text-align: center;
}

.selected-dates-display p {
  margin: 0;
  color: #1976d2;
  font-weight: 500;
}

.price-summary h4 {
  margin: 0 0 1rem;
  color: var(--color-anthracite);
  font-family: var(--font-heading);
}

.price-details {
  margin-bottom: 1.5rem;
  color: var(--color-anthracite);
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  color: var(--color-anthracite);
}

.price-row span:last-child {
  min-width: 100px;
  text-align: right;
  font-family: monospace;
  font-size: 1.1em;
}

.price-row.total span:last-child {
  min-width: 120px;
  font-size: 1.2em;
  font-weight: 700;
}

.price-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  font-size: 0.9em;
  color: #666;
}

.price-info ul {
  list-style: none;
  padding-left: 1rem;
  margin: 0.5rem 0;
}

.price-info ul li {
  position: relative;
  padding: 0.2rem 0;
}

.price-info ul li::before {
  content: "•";
  position: absolute;
  left: -1rem;
  color: var(--color-gold);
}

.min-stay {
  margin-top: 1rem;
  font-style: italic;
}

.guest-prices {
  margin-top: 1rem;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 3px solid #2c5aa0;
}

.guest-prices p {
  margin: 0 0 8px 0;
  font-weight: 600;
  color: #2c5aa0;
}

.guest-prices ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.guest-prices li {
  padding: 4px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e9ecef;
}

.guest-prices li:last-child {
  border-bottom: none;
}

.season-info {
  margin: 0;
  color: var(--color-anthracite);
}

/* ZAHLUNGSOPTIONEN */
.payment-options {
    grid-column: 1 / -1;
    margin: 20px 0;
}

.payment-options h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-anthracite);
    margin-bottom: 15px;
}

.payment-methods {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-method {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--color-gold);
    background-color: #fff8e1;
}

.payment-method input[type="radio"] {
    display: none;
}

.payment-method input[type="radio"]:checked + .method-icon + .method-name {
    color: var(--color-gold);
}

.payment-method input[type="radio"]:checked + .method-icon {
    transform: scale(1.1);
}

.method-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.method-name {
    font-weight: 700;
    color: var(--color-anthracite);
}

/* SUBMIT BUTTON */
.booking-form .btn-primary {
    grid-column: 1 / -1;
    margin-top: 20px;
    padding: 15px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Buchungsbereich Layout */
.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.calendar-column {
    position: sticky;
    top: 100px;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.form-column {
    height: fit-content;
}

/* Zurücksetzen-Button */
.btn-secondary {
    background-color: transparent;
    color: var(--color-anthracite);
    border: 2px solid var(--color-anthracite);
    margin-bottom: 15px;
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-secondary:hover {
    background-color: var(--color-anthracite);
    color: var(--color-white);
}

.btn-secondary::before {
    content: '↺';
    font-size: 1.2rem;
}

/* Zeitstempel für letzte Aktualisierung */
.update-timestamp {
    font-size: 0.8rem;
    color: var(--color-anthracite-light);
    text-align: center;
    margin-bottom: 10px;
    font-style: italic;
}

/* Informationsbereich */
.booking-info {
    background-color: var(--color-white);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: block;
    width: 100%;
}

.booking-info h4 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-anthracite);
    margin-bottom: 20px;
    text-align: center;
    display: block;
}

.info-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(47, 79, 79, 0.1);
    display: block;
}

.info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-section h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-anthracite);
    margin-bottom: 12px;
    display: block;
}

.info-section p {
    margin-bottom: 8px;
    color: var(--color-anthracite-light);
}

.info-section ul {
    list-style: none;
    padding-left: 0;
}

.info-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: var(--color-anthracite-light);
}

.info-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

.info-section ul li a {
    color: var(--color-anthracite-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-section ul li a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

/* Lokale Highlights Sektion */
.lokale-highlights-section {
    background-color: var(--color-creme);
    padding: 100px 0;
}

.lokale-highlights-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-anthracite);
}

.highlight-category {
    margin-bottom: 60px;
}

.highlight-category h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-anthracite);
    margin-bottom: 25px;
    text-align: center;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.highlight-card {
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.highlight-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.highlight-content {
    padding: 25px 20px;
}

.highlight-content h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-anthracite);
    margin-bottom: 10px;
}

.highlight-content .distance {
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.highlight-content .description {
    color: var(--color-anthracite-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.highlight-content .details {
    font-size: 0.9rem;
    color: var(--color-anthracite);
    border-top: 1px solid rgba(47, 79, 79, 0.1);
    padding-top: 15px;
    margin-top: 15px;
}

/* Feedback für Datumsauswahl */
.selection-feedback {
    background-color: var(--color-gold);
    color: var(--color-white);
    padding: 15px 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    animation: slideIn 0.5s ease-out;
    box-shadow: 0 4px 12px rgba(191, 161, 91, 0.2);
}

.selection-feedback.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

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

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

/* Nachrichten-Popup Styling */
.message-popup {
  animation: slideInRight 0.3s ease-out;
}

.message-popup .message-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.message-popup .message-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: inherit;
  padding: 0;
  margin-left: 10px;
  opacity: 0.7;
}

.message-popup .message-close:hover {
  opacity: 1;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}



.flat-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 1em;
  font-size: 1.1em;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  pointer-events: none;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.ausstattung-container {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ausstattung-toggle {
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  transition: all 0.3s ease;
}

.ausstattung-toggle:hover {
  background: #f8f8f8;
}

.toggle-icon {
  transition: transform 0.3s ease;
}

.ausstattung-toggle.active .toggle-icon {
  transform: rotate(180deg);
}

.ausstattung-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.ausstattung-list.active {
  max-height: 1000px;
  transition: max-height 0.5s ease-in;
}

.ausstattung-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-top: 1px solid #eee;
}

.ausstattung-item .icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  min-width: 2rem;
  text-align: center;
}

.ausstattung-item span:last-child {
  color: var(--color-anthracite);
  font-weight: 500;
}

/* RESPONSIVE ANPASSUNGEN */
@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .calendar-column {
        position: static;
    }

    #buchungskalender-container {
        max-width: 600px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .booking-form {
        grid-template-columns: 1fr;
    }
    
    .gallery-categories {
        gap: 8px;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    /* Responsive Design für Rhodt-Sektion */
    .rhodt-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .rhodt-highlights {
        grid-template-columns: 1fr;
    }
    
    .rhodt-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 15px;
    }
    
    .gallery-item.large {
        grid-row: auto;
        height: 300px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .rhodt-text p {
        font-size: 1.1rem;
    }
    
    .rhodt-hero-image img {
        height: 250px;
    }
    
    .overlay-content h3 {
        font-size: 1.5rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
    }
    
    /* Responsive Design für Wohnungs-Galerie */
    .main-image-container {
        height: 350px;
    }
    

    
    .thumbnail-grid {
        grid-template-columns: repeat(4, 80px);
        gap: 10px;
        justify-content: center;
    }
    
    .gallery-categories {
        gap: 8px;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .main-image-container {
        height: 300px;
    }
    

    
    .wohnung-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlight-card {
        padding: 20px;
    }
    
    .highlight-icon {
        font-size: 2rem;
        min-width: 40px;
    }
    
    .booking-form-container {
        padding: 20px;
        margin: 20px 10px;
    }
    
    .payment-method {
        min-width: 100%;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .anreise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .anreise-map {
        padding: 20px 15px;
    }
    
    .map-container {
        height: 250px;
    }
    
    .bewertungen-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .platform-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .platform-link {
        min-width: auto;
        padding: 20px;
    }
    
    .highlight-card img {
        height: 200px;
    }
    
    /* RHODT RESPONSIVE */
    .rhodt-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .rhodt-text {
        order: 2;
    }
    
    .rhodt-visual {
        order: 1;
    }
    
    .rhodt-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .highlights {
        padding: 60px 0;
    }
    
    .highlights .container {
        flex-direction: column;
        gap: 25px;
    }
    
    .highlight-item {
        flex-basis: 100%;
        padding: 30px 20px;
    }
    
    .highlight-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .highlight-item h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .highlight-item p {
        font-size: 0.9rem;
    }
    
    .rhodt-highlights-section {
        margin-bottom: 30px;
    }
    
    .rhodt-highlights-section h3 {
        margin-bottom: 20px;
        font-size: 1.6rem;
    }
    
    .highlight-category h4 {
        margin-bottom: 15px;
        font-size: 1.2rem;
    }
    
    .highlight-card {
        padding: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
    }
    
    .gallery-item.large {
        grid-row: span 1;
    }
    
    .rhodt-section h2 {
        font-size: 2rem;
    }
    
    .rhodt-attractions h3,
    .rhodt-highlights-section h3,
    .rhodt-gallery-section h3 {
        font-size: 1.6rem;
    }
    
    .booking-info {
        padding: 20px;
        margin-top: 20px;
    }
    
    .booking-info h4 {
        font-size: 1.4rem;
    }
    
    .info-section h5 {
        font-size: 1.1rem;
    }
    
    .selection-feedback {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    #buchungskalender-container {
        max-width: 100%;
        margin: 20px 10px;
    }
    
    .calendar-day, .empty-day {
        min-height: 50px;
        padding: 8px 2px;
        font-size: 0.9rem;
    }
    
    .calendar-header {
        padding: 10px 15px;
    }
    
    .calendar-header h2 {
        font-size: 1.1rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 700px) {
  .thumbnail-grid {
    grid-template-columns: repeat(3, 70px);
    gap: 8px;
  }
}

/* ANREISE */
.anreise-section {
    background-color: var(--color-creme);
    width: 100%;
}

.anreise-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-top: 20px;
    align-items: start;
}
.anreise-item, .anreise-map {
    background-color: var(--color-white);
    padding: 18px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border: 1px solid #ececec;
    font-size: 0.98rem;
}
.anreise-item h3, .anreise-map h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
}
.anreise-item p, .anreise-map p {
    margin-bottom: 7px;
    font-size: 0.97rem;
}
.map-container {
    width: 100%;
    height: 220px;
    min-height: 180px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    overflow: hidden;
    margin: 0;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 180px;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
}
@media (max-width: 900px) {
  .anreise-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .map-container, .map-container iframe {
    height: 180px;
    min-height: 120px;
  }
  .anreise-item, .anreise-map {
    padding: 12px 8px;
    font-size: 0.95rem;
  }
}

.anreise-item {
    background-color: var(--color-white);
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.anreise-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.anreise-item h3 {
    color: var(--color-dark-red);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.anreise-item p {
    margin-bottom: 10px;
}

.anreise-map {
    background-color: var(--color-white);
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.anreise-map:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.anreise-map h3 {
    color: var(--color-dark-red);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.map-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.map-content {
    text-align: center;
    padding: 20px;
}

.map-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.map-content h4 {
    color: var(--color-anthracite);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.map-content p {
    color: var(--color-anthracite);
    margin-bottom: 8px;
    font-size: 1rem;
}

.map-content .coordinates {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.map-content .btn {
    margin-top: 15px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
}

/* RHODT SECTION */
.rhodt-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.rhodt-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-anthracite);
    font-size: 2.5rem;
    font-weight: 600;
}

/* Rhodt Intro */
.rhodt-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

.rhodt-text {
    order: 1;
}

.rhodt-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-anthracite);
    margin-bottom: 30px;
}

.rhodt-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.rhodt-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--color-white);
    border-radius: 8px;
    border-left: 3px solid var(--color-gold);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.rhodt-highlights .highlight-item .icon {
    font-size: 1.2rem;
}

.rhodt-highlights .highlight-item span:last-child {
    font-weight: 500;
    color: var(--color-anthracite);
}

.rhodt-link {
    margin-top: 30px;
}

.rhodt-visual {
    order: 2;
}

.rhodt-hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.rhodt-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

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

.overlay-content h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Attractions */
.rhodt-attractions {
    margin-bottom: 60px;
}

.rhodt-attractions h3 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-anthracite);
    font-size: 2rem;
    font-weight: 600;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.attraction-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.attraction-image {
    height: 250px;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.3s ease;
}

/* Spezielle Anpassung für Hambacher Schloss */
.hambacher-schloss .attraction-image img {
    object-position: center 20%;
}

/* Spezielle Anpassung für Rietburg */
.rietburg .attraction-image img {
    object-position: center 15%;
}

.attraction-card:hover .attraction-image img {
    transform: scale(1.05);
}

.attraction-content {
    padding: 25px;
}

.attraction-content h4 {
    font-size: 1.3rem;
    color: var(--color-anthracite);
    margin-bottom: 10px;
    font-weight: 600;
}

.attraction-content .distance {
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.attraction-content p {
    color: var(--color-anthracite-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.attraction-content .details {
    color: var(--color-anthracite);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Highlights Section */
.rhodt-highlights-section {
    margin-bottom: 40px;
}

.rhodt-highlights-section h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--color-anthracite);
    font-size: 1.8rem;
    font-weight: 600;
}

.highlights-categories {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.highlight-category h4 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-anthracite);
    font-size: 1.3rem;
    font-weight: 600;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.highlight-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.highlight-content h5 {
    font-size: 1.1rem;
    color: var(--color-anthracite);
    margin-bottom: 8px;
    font-weight: 600;
}

.highlight-content .distance {
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.highlight-content .description {
    color: var(--color-anthracite-light);
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 0.95rem;
}

.highlight-content .details {
    color: var(--color-anthracite);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Gallery Section */
.rhodt-gallery-section {
    margin-top: 60px;
}

.rhodt-gallery-section h3 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-anthracite);
    font-size: 2rem;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #f8f8f8;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px 15px 15px;
}

.gallery-caption h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-caption p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Wohnungsbeschreibung - Neue Gliederung */
.description-intro {
    margin-bottom: 40px;
    padding: 0 20px;
}

.description-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-anthracite);
    margin: 0;
}

.description-section {
    margin: 25px 0;
    padding: 20px 25px;
    background: var(--color-white);
    border-radius: 8px;
    border-left: 3px solid var(--color-gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.description-section h4 {
    margin: 0 0 12px 0;
    color: var(--color-anthracite);
    font-size: 1.2rem;
    font-weight: 600;
}

.description-section p {
    margin: 0;
    line-height: 1.6;
    color: var(--color-anthracite);
}

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

.feature-list li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(191, 161, 91, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: "•";
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-white) 0%, #f8f9fa 100%);
    border-top: 3px solid var(--color-gold);
    box-shadow: 0 -8px 25px rgba(0,0,0,0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.hide {
    transform: translateY(100%);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-banner-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--color-anthracite);
    margin-bottom: 15px;
    font-weight: 600;
}

.cookie-banner-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-anthracite-light);
    margin-bottom: 12px;
}

.cookie-banner-text a {
    color: var(--color-gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: var(--color-dark-red);
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-banner-buttons .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-accept-all {
    background: linear-gradient(135deg, var(--color-gold) 0%, #d4af37 100%);
    color: var(--color-white);
    border: 2px solid var(--color-gold);
}

.cookie-accept-all:hover {
    background: linear-gradient(135deg, #d4af37 0%, var(--color-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(191, 177, 91, 0.3);
}

.cookie-accept-necessary {
    background: var(--color-white);
    color: var(--color-anthracite);
    border: 2px solid var(--color-anthracite-light);
}

.cookie-accept-necessary:hover {
    background: var(--color-anthracite-light);
    color: var(--color-white);
    transform: translateY(-2px);
}

.cookie-decline {
    background: transparent;
    color: var(--color-anthracite);
    border: 2px solid var(--color-anthracite-light);
}

.cookie-decline:hover {
    background: var(--color-anthracite);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* COOKIE MESSAGE */
.cookie-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #d4af37 100%);
    color: var(--color-white);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(191, 177, 91, 0.3);
    z-index: 10000;
    transform: translateX(0);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.cookie-message.show {
    transform: translateX(0);
}

.cookie-message.fade-out {
    transform: translateX(100%);
}

.cookie-message-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-message-close {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

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

/* IMPRESSUM & DATENSCHUTZ SECTIONS */
.impressum-section,
.datenschutz-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--color-creme) 0%, #f5f5dc 50%, #f0f0e0 100%);
    min-height: 100vh;
}

.impressum-content,
.datenschutz-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(191, 177, 91, 0.1);
}

.impressum-content h1,
.datenschutz-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--color-anthracite);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.impressum-content h2,
.datenschutz-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--color-anthracite);
    margin: 30px 0 15px;
    font-weight: 600;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 8px;
}

.impressum-content h3,
.datenschutz-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: var(--color-anthracite);
    margin: 20px 0 10px;
    font-weight: 600;
}

.impressum-content p,
.datenschutz-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-anthracite-light);
    margin-bottom: 15px;
}

.impressum-content ul,
.datenschutz-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.impressum-content li,
.datenschutz-content li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-anthracite-light);
    margin-bottom: 8px;
}

.impressum-content a,
.datenschutz-content a {
    color: var(--color-gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.impressum-content a:hover,
.datenschutz-content a:hover {
    color: var(--color-dark-red);
}

.contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--color-gold);
    margin: 20px 0;
}

.legal-info {
    margin-top: 30px;
}

.back-link {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(191, 177, 91, 0.2);
}

/* FOOTER IMPROVEMENTS */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--color-anthracite);
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-anthracite-light);
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--color-anthracite-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(191, 177, 91, 0.2);
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--color-anthracite-light);
    margin: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .cookie-banner-content {
        padding: 0 15px;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-banner-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .cookie-message {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .impressum-content,
    .datenschutz-content {
        padding: 25px 20px;
        margin: 0 15px;
    }
    
    .impressum-content h1,
    .datenschutz-content h1 {
        font-size: 2rem;
    }
    
    .impressum-content h2,
    .datenschutz-content h2 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Stil für den aktiven Wohnungs-Button */
.wohnung-switcher-btn.active {
    color: var(--color-gold);
}

.wohnung-switcher-btn.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-gold);
}

