.sr-only { position:absolute; left:-9999px; }


:root{
  --bg:#1b1b1b;
  --panel:#2a2a2a;
  --text:#f0f0f0;
  --muted:#9a9a9a;
  --accent:#0077ff;
  --instagram-margin-top: 1.5rem;    /* Abstand zum Karussell */
  --instagram-margin-bottom: 1.5rem; /* Abstand zum Footer */
}

/* Reset & Base */
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; background:var(--bg); color:var(--text); font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; }
a{ color:var(--accent); text-decoration:none; }

/* ===== Header ===== */
header{
  position:sticky; top:0; z-index:1000;
  display:flex; align-items:center; justify-content:flex-end;
  padding:0.8rem 1.6rem; background:#222; border-bottom:2px solid var(--accent);
}
.logo{
  position:absolute; left:50%; transform:translateX(-50%);
  height:148px; object-fit:contain;
}
nav{ display:flex; gap:1.2rem; }
nav a{ color:var(--text); font-weight:500; transition:color .2s ease; }
nav a:hover{ color:var(--accent); }

/* ===== Carousel (smaller) ===== */
main{ padding:1.5rem 1rem 3rem; }
.carousel-container{
  position:relative; margin:1.5rem auto 1.2rem; max-width:860px;
  display:flex; align-items:center; justify-content:center; gap:.6rem;
}
.carousel{ width:100%; overflow:hidden; border-radius:12px; box-shadow:0 10px 30px rgba(0,119,255,.12); }
.carousel img{ width:100%; display:none; object-fit:cover; max-height:460px; border-radius:12px; }
.carousel img.active{ display:block; animation:fade .8s ease; }
@keyframes fade{ from{opacity:.3} to{opacity:1} }
.nav-btn{
  background:rgba(0,0,0,.5); color:#fff; border:none; border-radius:50%;
  font-size:1.6rem; width:40px; height:40px; cursor:pointer; transition:background .2s;
}
.nav-btn:hover{ background:var(--accent); }

/* ===== Google Section ===== */
/* === 3-Spalten-Layout (Desktop) === */
.three-col{
  max-width: 1400px;
  margin: 1.5rem auto 0;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr; /* links | mitte (breiter) | rechts */
  gap: 1rem;
  align-items: start;
}
.col{ min-width: 0; }

/* Map (Embed) */
.map{ 
  width: 100%; height: 340px; border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.55);
}
.map-embed{
  width: 100%; height: 100%; border: 0; display: block;
}
.map-link{ text-align:center; color: var(--muted); margin-top: .4rem; }

/* Karussell wieder groß wie am Anfang */
.carousel-container{
  position: relative; margin: 0;
  display: flex; align-items: center; justify-content: center;
}
.carousel{
  width: 100%; max-width: 900px; border-radius: 12px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,119,255,.12);
}
.carousel img{
  width: 100%; max-height: 700px; object-fit: cover; display: none; border-radius: 12px;
}
.carousel img.active{ display:block; animation: fade .8s ease; }
@keyframes fade{ from{opacity:.3} to{opacity:1} }
.nav-btn{
  background: rgba(0,0,0,.5); color: #fff; border: none; border-radius:50%;
  font-size: 1.6rem; width: 40px; height: 40px; cursor: pointer; transition: background .2s;
}
.nav-btn:hover{ background: var(--accent); }

/* Reviews */
.reviews-col h3{ color: var(--accent); margin: 0 0 .6rem 0; }
.reviews{ display: flex; flex-direction: column; gap: .8rem; }
.review{ background: var(--panel); border-radius: 10px; padding: .9rem; box-shadow: 0 8px 26px rgba(0,0,0,.55); }
.review .author{ font-weight: 700; margin-bottom: .2rem; }
.review .rating{ color: var(--accent); margin-bottom: .3rem; }
.review .text{ color: #e6e6e6; }

/* Instagram-Button für index.html (Startseite) */
.instagram-link {
  display: block;
  width: 100%;
  text-align: center;
  margin: var(--instagram-margin-top) 0 var(--instagram-margin-bottom) 0;
}
.instagram-link a {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .7rem 1.0rem;
  border-radius: 80px;
  font-weight: 600;
  text-decoration: none;
}
.instagram-link a:hover {
  filter: brightness(0.9);
}

/* Karussell-Größe für index.html */
.carousel-container {
  max-width: 860px;
  margin: auto;
}
.carousel img {
  max-height: 460px;
}

/* Mobile: untereinander stapeln */
@media (max-width: 980px){
  .three-col{ grid-template-columns: 1fr; }
  .map{ height: 280px; }
  .carousel img.active{ max-height: 420px; }
}


/* ===== Footer ===== */
footer{
  margin-top: 0.25rem; /* noch weiter nach oben */
  padding:1.1rem 1rem; background:#222; color:var(--muted);
  border-top:2px solid var(--accent); text-align:center;
}
.footer-links a{ color:var(--muted); margin:0 .2rem; }
.footer-links a:hover{ color:var(--accent); }

/* ===== Modals (sections) ===== */
.section-modal{
  position:fixed; inset:0; display:none; align-items:center; justify-content:center;
  background:rgba(10,10,10,.86); backdrop-filter: blur(5px); z-index:2000; padding:1rem;
}
.section-modal.active{ display:flex; }
.section-content{
  width:min(740px, 92vw); background:var(--panel); border-radius:14px; padding:1.6rem;
  box-shadow:0 20px 60px rgba(0,119,255,.12); position:relative;
}
.close-btn{
  position:absolute; top:10px; right:14px; background:none; border:none; color:var(--text);
  font-size:1.6rem; cursor:pointer;
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  header{ flex-direction:column; gap:.4rem; }
  .logo{ position:static; transform:none; height:56px; }
  nav{ order:2; }
  #google-section{ grid-template-columns:1fr; }
  .map{ height:260px; }
}
@media (max-width: 420px){
  .nav-btn{ width:36px; height:36px; font-size:1.4rem; }
  .carousel img.active{ max-height:380px; }
}

/* ===== Kontaktformular (Modal) ===== */
#contactModal .section-content {
  max-width: 720px;            /* Modal nicht zu breit */
  width: 92%;
}

#contactForm {
  display: grid;
  grid-template-columns: 1fr;  /* alles untereinander */
  gap: 12px;                    /* Abstand zwischen Feldern */
  margin-top: .75rem;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  color: #f2f2f2;
  outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
  color: #b9c0c8;              /* dezentes Placeholder-Grau */
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,119,255,.15);
  background: rgba(255,255,255,.06);
}

#contactForm textarea {
  min-height: 140px;
  resize: vertical;
}

#contactForm button[type="submit"] {
  justify-self: start;         /* links ausrichten */
  padding: 10px 18px;
  border: 0;
  border-radius: 10px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  transition: filter .15s, transform .02s;
}
#contactForm button[type="submit"]:hover { filter: brightness(.92); }
#contactForm button[type="submit"]:active { transform: translateY(1px); }

.form-info {
  margin-top: .25rem;
  font-size: .95rem;
  color: #c7d2e0;
}

/* Button und Felder auf sehr kleinen Screens */
@media (max-width: 480px) {
  #contactForm button[type="submit"] { width: 100%; justify-self: stretch; }
}

/* =========================
   Preis-Karussell
========================= */
.price-carousel {
  position: relative;
  max-width: 350px;
  margin: 40px auto;
  overflow: visible;
}
.price-carousel img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  position: absolute;
  left: 0;
  transition: all .4s ease;
  opacity: 0;
  transform: scale(1);
}
.price-carousel img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.price-carousel img.next {
  opacity: 0.3;
  transform: scale(0.95) translateX(100px);
  z-index: 1;
  filter: blur(4px);
}
.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 10px 14px;
}
.prev-btn { left: -50px; }
.next-btn { right: -50px; }

@media(max-width: 600px) {
  .prev-btn { left: -30px; }
  .next-btn { right: -30px; }
}

.nav a, .nav-btn {
  color: var(--text);
  font-weight: 500;
  transition: color .2s ease;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav a:hover, .nav-btn:hover {
  color: var(--accent);
}

/* Größeres Karussell */
.carousel-container {
  max-width: 900px;  /* bisher vermutlich 400px */
  margin: auto;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel img {
  width: 100%;
  display: none;
}

.carousel img.active {
  display: block;
}

/* Verschwommene Vorschau */
.carousel {
  position: relative; /* für absolute Positionierung der Previews */
}
.carousel img.preview-left,
.carousel img.preview-right {
  position: absolute;
  top: 50%;
  width: 32%;           /* Vorschau kleiner als Hauptbild */
  opacity: 0.3;
  filter: blur(8px);    /* stärkerer Blur für Vorschau */
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}
.carousel img.preview-left {
  left: -34%;           /* Links neben dem Hauptbild */
}
.carousel img.preview-right {
  right: -34%;          /* Rechts neben dem Hauptbild */
}

/* Knöpfe größer (optional) */
.nav-btn {
  font-size: 2rem;
}

/* === HIER ÄNDERST DU DIE GRÖSSE DES KARUSSELLS === */
.carousel-container {
  max-width: 600px;  /* z.B. auf 860px oder beliebig ändern */
  margin: auto;
}
.carousel img {
  max-height: 700px; /* z.B. auf 460px oder beliebig ändern */
}

