/* ======================================================= */
/* ===         MASTER STYLESHEET (REVISED)             === */
/* ======================================================= */

/* --- 1. Root Variables & Global Styles --- */
:root {
  --primary-color: #004d40;
  --secondary-color: #00332c;
  --accent-booking: #0071c2;
  --accent-airbnb: #FF385C;
  --background-light: #f8f9fa;
  --text-color: #333;
  --box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  --header-height: 250px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Apply horizontal overflow blocking here */
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--background-light);
  color: var(--text-color);
  line-height: 1.6;
  padding-top: var(--header-height);
  /* The overflow-x rule is not needed here anymore */
}

/* Prevents background scroll when a popup or nav is open */
body.popup-is-open, body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4 {
  font-weight: 600;
  color: var(--secondary-color);
}

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

/* Ensure anchor links aren't hidden behind the sticky header */
[id] {
  scroll-margin-top: var(--header-height);
}

/* --- 2. Header --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  color: white;
  text-align: center;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 900;
}

.header-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.header-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header-slide.active {
  opacity: 1;
}

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

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 51, 44, 0.7) 0%, transparent 60%);
  z-index: 2;
}

.header-content {
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

header h1 {
  color: white;
  font-size: clamp(2.5rem, 6vw, 3rem);
  font-weight: 700;
}

header p {
  color: #f0f0f0;
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-style: italic;
  margin-top: 5px;
}

.language-selector {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 4;
}

.language-selector img {
  width: 32px;
  height: auto;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  opacity: 0.8;
}

.language-selector img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  opacity: 1;
}


/* --- 3. Navigation (Off-Canvas Menu) --- */
.burger-button {
  position: absolute;
  top: 20px;
  left: 20px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1001; /* Above header, below open nav */
}

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background-color: #00251a;
  z-index: 1100; /* Above everything except its own close button */
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
}

.main-nav.open {
  transform: translateX(0);
  box-shadow: 5px 0 25px rgba(0,0,0,0.3);
}

.burger-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1101; /* On top of the nav panel */
}

.main-nav ul {
  list-style: none;
  margin-bottom: 20px;
}

.main-nav .section-title {
  display: block;
  margin: 20px 0 10px;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
}

.main-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #4dd0e1; /* A light, friendly blue-cyan */
}

.main-nav a i {
  width: 20px;
  height: 20px;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.teaser-grid img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.teaser-grid a:hover img {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}


/* --- 4. Main Content & Layout --- */
main {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.main-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 901px) {
  .main-content-grid {
    grid-template-columns: 2fr 1fr;
  }
}



@media (min-width: 901px) {
  .right-column {
    grid-column: 2;         /* rechte Spalte */
    display: flex;
    flex-direction: column; /* stapeln untereinander */
    gap: 2rem;              /* schöner Abstand */
  }
}

@media (min-width: 901px) {
  .left-column {
    grid-column: 1;         /* linke Spalte */
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

.content-box {
  background: #f2f5f4;
  padding: clamp(1rem, 5vw, 2rem);
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  margin-top:30px;
}

#airbnb-superhost-widget-24131580 {
  min-height: 60px;   /* Platz reservieren */
  display: flex;
  justify-content: center;
  align-items: center;
  color: transparent; /* falls doch Text auftaucht, bleibt er unsichtbar */
}

.host-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.host-section img {
  max-width: 150px;
}

.host-text {
  font-style: italic;
  color: #555;
}

.clickable-div {
  cursor: pointer;
  width: 100%;
}

/* --- 5. Main Slideshow --- */
.slideshow-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 20px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  user-select: none;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  cursor: pointer;
}

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

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide.active img {
  transform: scale(1);
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 1em;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 2;
}

.slide.active .slide-caption {
  opacity: 1;
}

.btn-prev, .btn-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 24px;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
  z-index: 2;
}

.btn-prev:hover, .btn-next:hover {
  background: rgba(0,0,0,0.8);
}

.btn-prev { left: 15px; }
.btn-next { right: 15px; }

.dots-container {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background-color 0.3s;
}
.dot:hover { background-color: rgba(255, 255, 255, 0.9); }
.dot.active { background-color: var(--accent-booking); }


/* --- 6. Content Sections (Highlights, Ausstattung, Region, etc.) --- */
.highlights, .ausstattung .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.highlight-item, .ausstattung .item {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-item:hover, .ausstattung .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-color);
  display: grid;
  place-items: center;
  margin: 0 auto 15px;
}

.icon-wrapper svg {
  width: 36px;
  height: 36px;
  stroke: white;
  fill: white;
}

.icon-wrapper i[data-lucide] {
  width: 36px;          /* gleiche Größe wie bisher */
  height: 36px;
  stroke: white;         /* Linienfarbe */
  stroke-width: 1.8;
  fill: none;            /* Lucide ist standardmäßig Outline – bleibt clean */
}

.highlight-item h4 { margin: 10px 0 5px; font-size: 1.1em; color: var(--secondary-color); }
.ausstattung .item span { font-size: 1em; font-weight: 500; color: var(--text-color); }

.region-highlights {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

#region1 .highlight-item {
  padding: 0;
  display: flex;
  flex-direction: column;
}
#region1 .highlight-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}
#region1 .highlight-item h4, #region1 .highlight-item .highlight-text {
  padding: 15px;
  color: var(--text-color);
}
#region1 .highlight-item h4 { padding-bottom: 5px; }

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { margin-bottom: 5px; color: var(--primary-color); }

.map-container {
  padding: 20px;
}

#map-placeholder, #map-placeholder-streetview {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 15px;
  background-color: #e9e9e9;
  display: grid;
  place-items: center;
}

#map, #map-placeholder-streetview iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: white;
  z-index: 2;
}
.map-overlay p { max-width: 500px; margin-bottom: 20px; }
.load-map-btn { cursor: pointer; background-color: var(--primary-color); }

/* --- 7. Buttons & CTAs --- */
.booking-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.booking-btn, .airbnb-btn {
  padding: 15px 25px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--accent-booking);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
}
.airbnb-btn { background: var(--accent-airbnb); }

.booking-btn:hover, .airbnb-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.booking-btn-float, .airbnb-btn-float {
  padding: 15px 25px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--accent-booking);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
}
.airbnb-btn-float { background: var(--accent-airbnb); }

.booking-btn-float:hover, .airbnb-btn-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* --- 8. Floating Elements (CTA & WhatsApp) --- */
.cta-floating {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: none; /* JS toggles to flex */
  flex-direction: column;
  gap: 0.5rem;
  z-index: 800;
}

.cta-floating.visible {
  display: flex;
}

#wa-toggle {
  position: fixed;
  bottom: 150px;
  right: 20px;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 850;
  transition: transform 0.2s ease;
}
#wa-toggle:hover { transform: scale(1.1); }
#wa-toggle img { width: 35px; height: 35px; }

#wa-widget {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  max-width: 90vw;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  border-radius: 15px;
  overflow: hidden;
  z-index: 999;
  display: none;
  flex-direction: column;
  background-color: #E5DDD5;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#wa-widget.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

#wa-chatbox .wa-header {
  background-color: #075E54;
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#wa-chatbox .wa-avatar { width: 40px; height: 40px; border-radius: 50%; border: 2px solid white; }
#wa-chatbox .wa-name { font-weight: bold; }
#wa-chatbox .wa-status { font-size: 0.8em; opacity: 0.9; }
#wa-close { margin-left: auto; cursor: pointer; font-size: 24px; font-weight: bold; }
#wa-chatbox .wa-messages { padding: 20px; flex-grow: 1; }
#wa-chatbox .wa-bubble {
  background-color: white;
  padding: 10px 15px;
  border-radius: 10px;
  max-width: 85%;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  animation: slideUp 0.4s ease;
}
@keyframes slideUp { from { transform: translateY(10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

#wa-form { display: flex; padding: 10px; background-color: #f0f0f0; border-top: 1px solid #ddd; }
#wa-input { flex-grow: 1; border: 1px solid #ccc; border-radius: 20px; padding: 10px 15px; margin-right: 10px; font-size: 16px; }
#wa-form button { background-color: #128C7E; color: white; border: none; width: 45px; height: 45px; border-radius: 50%; font-size: 20px; cursor: pointer; flex-shrink: 0; transition: background-color 0.2s; }
#wa-form button:hover { background-color: #075E54; }

/* --- 9. Footer --- */
footer {
  background: var(--secondary-color);
  color: #ddd;
  padding: 40px 20px;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.footer-content section { flex: 1; min-width: 250px; }
.footer-content h3 { color: white; border-bottom: 2px solid var(--primary-color); padding-bottom: 8px; margin-bottom: 15px; }
.footer-content a { color: #eee; text-decoration: none; }
.footer-content a:hover { text-decoration: underline; }

/* --- 10. Photo Popup --- */
#photo-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#photo-popup.open { display: block; opacity: 1; }

#photo-popup .popup-content {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

#photo-popup .popup-images {
  position: relative;
  width: 100%;
  height: 100%;
}

#photo-popup .popup-images img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.4s ease-in-out, transform 8s ease-in-out;
}

#photo-popup .popup-images img.active {
  opacity: 1;
  transform: scale(1.05);
}

#photo-popup .popup-close {
  position: fixed;
  top: 15px;
  right: 20px;
  font-size: 3rem;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 45px;
  text-align: center;
  cursor: pointer;
  z-index: 2002;
  transition: transform 0.2s, background-color 0.2s;
}

#photo-popup .popup-close:hover {
  transform: scale(1.1);
  background: rgba(255, 0, 0, 0.7);
}

#photo-popup .prev, #photo-popup .next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
  display: grid;
  place-items: center;
  transition: background-color 0.2s;
}

#photo-popup .prev:hover, #photo-popup .next:hover {
  background: rgba(0, 0, 0, 0.7);
}

#photo-popup .prev { left: 15px; }
#photo-popup .next { right: 15px; }

#photo-popup .popup-caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90%;
  padding: 10px 15px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  pointer-events: none;
  z-index: 2001;
}


/* --- 11. Mobile-Specific Adjustments --- */
@media (max-width: 600px) {
  main {
    padding: 1.5rem 0.5rem;
  }
  .cta-floating {
    flex-direction: row;
    gap: 10px;
    width: 95%;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    justify-content: center;
  }
  .cta-floating .booking-btn-float, .cta-floating .airbnb-btn-float {
    flex: 1; /* Make buttons share space */
  }

  #wa-toggle {
    bottom: 80px; /* Move WA toggle up to not collide with CTA */
  }

  #photo-popup .prev, #photo-popup .next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
   #photo-popup .popup-caption {
    font-size: 0.9rem;
    padding: 8px 12px;
    bottom: 30px;
  }
}

/* ========================================================= */
/* ===   SCHÖNES VERFÜGBARKEITSFORMULAR + ERGEBNISFELD   === */
/* ========================================================= */

.availability-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}

.availability-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  width: 100%;
}

.availability-form .form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.availability-form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.availability-form input {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  transition: border 0.2s, box-shadow 0.2s;
}

.availability-form input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 77, 64, 0.15);
  outline: none;
}

.availability-form input[readonly] {
  background-color: #f7f7f7;
  color: #555;
  cursor: not-allowed;
}

.check-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 77, 64, 0.25);
}

.check-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

/* Ergebnisfeld mit Animation */
.availability-result {
  margin-top: 1rem;
  background: rgba(0, 77, 64, 0.07);
  color: var(--secondary-color);
  border-left: 4px solid var(--primary-color);
  padding: 12px 16px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.availability-result.show {
  opacity: 1;
  transform: translateY(0);
}

/* Kleines Emoji-Icon mit Animation */
.result-icon {
  font-size: 1.4rem;
  display: inline-block;
  transform: scale(0.7);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.availability-result.show .result-icon {
  transform: scale(1.2);
  opacity: 1;
  animation: pulseIcon 1s ease infinite alternate;
}

@keyframes pulseIcon {
  from { transform: scale(1); opacity: 0.8; }
  to { transform: scale(1.25); opacity: 1; }
}

/* Deaktivierte Buchungsbuttons */
.booking-btn.disabled,
.airbnb-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
  filter: grayscale(0.5);
}

/* ========================================================= */
/* ===   TOASTER-POPUP (Feedback unten rechts)           === */
/* ========================================================= */

.toaster {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-color);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.toaster.show {
  opacity: 1;
  transform: translateY(0);
}

.toaster .icon {
  font-size: 1.3rem;
  animation: pop 0.6s ease;
}

@keyframes pop {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1); }
}

.booking-btn,
.airbnb-btn {
  display: none; /* Erst sichtbar bei gültiger Datumsauswahl */
}
