:root{
  --brand:#f1b31c;
  --dark:#222;
  --light:#f8f9fa;
  --text:#212529;
  --muted:#6c757d;
  --border:#e5e7eb;
}

html,
body{
  scroll-behavior:smooth;
}

body{
  color:var(--text);
  background:#fff;
}

/* =========================
   TOPBAR
   ========================= */

.topbar{
  font-size:.75rem;
}

.topbar-contact-icon{
  margin-right:.45rem;
  color:#f1b31c;
  font-size:.7rem;
  vertical-align:middle;
}

.topbar-contact{
  font-size:.98rem;
  font-weight:500;
}

.topbar-link{
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.topbar-link:hover,
.topbar-link:focus{
  color:#f1b31c;
  text-decoration:underline;
}

.topbar-hours{
  display:flex;
  align-items:center;
}

.badge-soft{
  background:linear-gradient(135deg, #f1b31c 0%, #ffd36a 100%);
  color:#111;
  font-weight:700;
  font-size:.75rem;
  padding:.55rem .7rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 8px 20px rgba(241,179,28,.28);
}

/* =========================
   NAVBAR / HEADER
   ========================= */

.site-header{
  z-index:1030;
}

.site-header .topbar{
  position:relative;
  z-index:1031;
}

.site-header .navbar{
  position:relative;
  z-index:1031;
}

.navbar-brand img{
  height:95px;
  width:auto;
}

.navbar .nav-link{
  position:relative;
  font-weight:600;
  font-size:1.1rem;
  color:#111;
  transition:color .2s ease;
  padding:.7rem .9rem;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus{
  color:var(--brand);
}

.navbar .nav-link.active{
  color:#111;
}

.navbar .nav-link.active::after{
  content:"";
  position:absolute;
  left:.5rem;
  right:.5rem;
  bottom:.2rem;
  height:2px;
  border-radius:999px;
  background:var(--brand);
}

.btn.btn-warning{
  background:var(--brand);
  border-color:var(--brand);
  color:#111;
}

.btn.btn-warning:hover,
.btn.btn-warning:focus{
  background:#d8a014;
  border-color:#d8a014;
  color:#111;
}

/* =========================
   HERO / CAROUSEL
   ========================= */

.hero .carousel-item{
  height:70vh;
  min-height:420px;
  position:relative;
}

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

.hero .carousel-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.48) 100%);
  pointer-events:none;
}

.hero .caption{
  position:absolute;
  left:0;
  right:0;
  bottom:12%;
  display:flex;
  justify-content:center;
  text-align:center;
  color:#fff;
  text-shadow:0 2px 12px rgba(0,0,0,.6);
  z-index:2;
}

.hero .btn-brand{
  background:var(--brand);
  border:none;
  color:#111;
}

/* =========================
   GLOBAL CONTENT
   ========================= */

section[id],
footer[id]{
  scroll-margin-top:220px;
}

.section-title{
  margin:0 0 1rem 0;
  font-weight:700;
  letter-spacing:.02em;
}

.icon-round{
  width:58px;
  height:58px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--brand);
  color:#000;
  font-size:1.45rem;
}

.card-service img{
  height:220px;
  object-fit:cover;
}

/* =========================
   GALLERY
   ========================= */

.gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-link{
  display:block;
  border-radius:1rem;
  overflow:hidden;
}

.gallery-link img{
  transition:transform .25s ease, box-shadow .25s ease;
}

/* Mobile only: gallery clickable with lightbox */
@media (max-width:767.98px){
  .gallery-link img{
    cursor:pointer;
  }

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

  .gallery-modal .modal-dialog{
    max-width:min(96vw, 900px);
  }

  .gallery-modal .modal-body{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:0;
  }

  .gallery-modal img{
    width:auto;
    height:auto;
    max-width:94vw;
    max-height:90vh;
    object-fit:contain;
  }

  .gallery-close-btn{
    opacity:1;
  }
}

/* Desktop: normal gallery, no zoom hover */
@media (min-width:768px){
  .gallery-link{
    cursor:default;
  }

  .gallery-link img{
    cursor:default;
  }

  .gallery-link:hover img{
    transform:none;
  }
}

/* =========================
   ABOUT SECTION
   ========================= */

.about-title{
  font-size:2rem;
  line-height:1.25;
  margin-bottom:1rem;
}

.about-text{
  font-size:1.08rem;
  line-height:1.8;
  color:#374151;
  margin-bottom:1.25rem;
}

.about-list li{
  font-size:1.05rem;
  line-height:1.6;
  color:#1f2937;
  display:flex;
  align-items:flex-start;
}

.about-list .icon-round{
  flex-shrink:0;
  margin-top:.1rem;
}

/* =========================
   BENEFITS SECTION
   ========================= */

.benefit-title{
  font-size:1.1rem;
  line-height:1.35;
}

.benefit-text{
  font-size:.98rem;
  line-height:1.55;
  margin-bottom:0;
}

/* =========================
   REVIEWS
   ========================= */

.review-card{
  background:linear-gradient(180deg, #1f2937 0%, #111827 100%);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  padding:1.2rem;
  box-shadow:0 12px 28px rgba(0,0,0,0.18);
  transition:transform .2s ease, box-shadow .2s ease;
}

.review-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 34px rgba(0,0,0,0.24);
}

.review-top{
  display:flex;
  align-items:flex-start;
  gap:.9rem;
  margin-bottom:1rem;
}

.review-icon{
  width:42px;
  height:42px;
  min-width:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  font-size:1.1rem;
  line-height:1;
}

.review-text{
  margin:0;
  color:#e5e7eb;
  line-height:1.6;
}

.review-card strong{
  display:flex;
  align-items:center;
  color:#ffffff;
  font-weight:700;
}

.review-name-icon{
  margin-right:.45rem;
  font-size:.95rem;
  opacity:.9;
}

/* =========================
   FOOTER
   ========================= */

footer{
  background:var(--light);
  color:var(--text);
}

footer a{
  color:inherit;
  text-decoration:none;
}

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

footer .brand img{
  max-width:180px;
  height:auto;
}

.footer-bottom{
  border-top:1px solid var(--border);
  padding-top:.75rem;
  margin-top:1rem;
}

/* =========================
   RECHTSSEITEN
   ========================= */

.legal-page{
  background:#fff;
}

.legal-hero-full{
  position:relative;
  background-image:url("../img/hero2.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  padding:90px 0;
  overflow:hidden;
}

.legal-hero-full::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.34);
}

.legal-hero-full .container{
  position:relative;
  z-index:2;
  max-width:1040px;
  min-height:calc(100vh - 180px);
  display:block;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(255,255,255,.30);
  border-radius:26px;
  box-shadow:0 24px 70px rgba(0,0,0,.20);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  padding:2.4rem;
}

.legal-overlay-card{
  width:100%;
  background:transparent;
  border:none;
  box-shadow:none;
  padding:0;
  color:#212529;
}

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

.legal-header h1{
  margin:0 0 .5rem 0;
  font-weight:700;
  color:#111827;
}

.legal-subtitle{
  color:#4b5563;
  margin-bottom:1rem;
}

.legal-badges{
  display:flex;
  justify-content:center;
  gap:.75rem;
  flex-wrap:wrap;
}

.legal-badge{
  display:inline-flex;
  align-items:center;
  padding:.45rem .8rem;
  border-radius:999px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(17,24,39,.08);
  color:#374151;
  font-size:.92rem;
  font-weight:600;
}

.legal-info-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:1rem;
  margin-bottom:1.5rem;
}

.legal-info-card{
  background:rgba(255,255,255,.42);
  border:1px solid rgba(17,24,39,.08);
  border-radius:18px;
  padding:1rem 1.1rem;
}

.legal-info-label{
  font-size:.85rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:#6b7280;
  margin-bottom:.35rem;
}

.legal-info-value{
  color:#111827;
  line-height:1.65;
  font-weight:500;
}

.legal-section{
  margin-top:1.25rem;
  background:rgba(255,255,255,.28);
  border:1px solid rgba(17,24,39,.06);
  border-radius:18px;
  padding:1.25rem 1.25rem;
}

.legal-section h2{
  font-size:1.1rem;
  font-weight:700;
  margin:0 0 .75rem 0;
  color:#111827;
}

.legal-section p,
.legal-section li{
  line-height:1.72;
  color:#374151;
}

.legal-section ul{
  padding-left:1.1rem;
  margin-bottom:0;
}

.legal-table-modern{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(17,24,39,.08);
  background:rgba(255,255,255,.42);
}

.legal-table-modern tr:not(:last-child) td,
.legal-table-modern tr:not(:last-child) th{
  border-bottom:1px solid rgba(17,24,39,.08);
}

.legal-table-modern th,
.legal-table-modern td{
  padding:1rem 1rem;
  vertical-align:top;
}

.legal-table-modern th{
  width:32%;
  background:rgba(255,255,255,.30);
  color:#6b7280;
  font-size:.9rem;
  text-transform:uppercase;
  letter-spacing:.04em;
  font-weight:700;
}

.legal-table-modern td{
  color:#111827;
  font-weight:500;
}

.legal-overlay-card a{
  color:#111827;
}

.legal-note{
  border-left:4px solid var(--brand);
  background:rgba(255,248,220,.88);
  padding:1rem 1rem 1rem 1.1rem;
  border-radius:14px;
  color:#5b4a12;
  margin-top:1.25rem;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width:992px){
  .legal-hero-full{
    padding:70px 0;
  }

  .legal-hero-full .container{
    min-height:auto;
    max-width:100%;
    padding:1.5rem;
    border-radius:20px;
    background:rgba(255,255,255,.80);
  }

  .legal-info-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){
  .hero .caption{
    bottom:15%;
    padding:0 1rem;
  }
}

@media (max-width:576px){
  .topbar-inner{
    flex-wrap:nowrap !important;
    align-items:flex-start !important;
    gap:.75rem !important;
  }

  .topbar-contact{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    line-height:1.45;
    font-size:.9rem;
    flex:1 1 auto;
    min-width:0;
  }

  .topbar-hours{
    flex:0 0 auto;
    justify-content:flex-end;
  }

  .badge-soft{
    font-size:.68rem;
    padding:.35rem .45rem;
    white-space:nowrap;
  }

  .hero .carousel-item{
    height:60vh;
    min-height:360px;
  }

  .review-top{
    gap:.75rem;
  }

  .review-icon{
    width:38px;
    height:38px;
    min-width:38px;
    font-size:1rem;
  }

  .legal-hero-full{
    padding:40px 0;
  }

  .legal-hero-full .container{
    padding:1.1rem;
    border-radius:16px;
    background:rgba(255,255,255,.86);
  }

  .legal-header h1{
    font-size:1.7rem;
  }

  .legal-table-modern,
  .legal-table-modern tbody,
  .legal-table-modern tr,
  .legal-table-modern th,
  .legal-table-modern td{
    display:block;
    width:100%;
  }

  .legal-table-modern th{
    border-bottom:none;
    padding-bottom:.35rem;
  }

  .legal-table-modern td{
    padding-top:0;
  }

  .legal-table-modern tr{
    border-bottom:1px solid rgba(17,24,39,.08);
  }

  .legal-table-modern tr:last-child{
    border-bottom:none;
  }

  .icon-round{
    width:54px;
    height:54px;
    font-size:1.3rem;
  }

  .benefit-title{
    font-size:1rem;
  }

  .benefit-text{
    font-size:.92rem;
  }

  .about-title{
    font-size:1.65rem;
  }

  .about-text{
    font-size:1rem;
    line-height:1.7;
  }

  .about-list li{
    font-size:1rem;
  }
}