/* ========= XineSpot – Clean CSS (Drop-in) ========= */
:root{
  --brand:#111;
  --shade:#f8f9fb;
  --radius:1rem;
}

/* ----------------------------------
   HERO
---------------------------------- */
.hero-image{
  background: url('../img/xinespot-hero-rW01.jpg') center/cover no-repeat;
  height:75vh;
  position:relative;
}
.hero-image::before{
  content:'';
  position:absolute; inset:0;
  background:rgba(0,0,0,.2);
}
.hero-image .container{ position:relative; z-index:1; }
.hero-title{ font-size:3.5rem; text-shadow:0 2px 8px rgba(0,0,0,.5); }
.hero-subtitle{ font-size:1.25rem; text-shadow:0 2px 6px rgba(0,0,0,.5); }

@media (max-width:768px){
  .hero-image{ height:55vh; }
  .hero-title{ font-size:2.25rem; }
  .hero-subtitle{ font-size:1rem; }
}
@media (max-width:480px){
  .hero-image{ height:50vh; }
  .hero-title{ font-size:1.75rem; }
  .hero-subtitle{ font-size:.9rem; }
}

/* ----------------------------------
   2:1 Bild (unter About)
---------------------------------- */
.img-2x1{
  width:100%;
  aspect-ratio: 2 / 1;
  object-fit:cover;
  object-position:center;
  display:block;
  border-radius:var(--radius);
  box-shadow:0 1px 4px rgba(0,0,0,.06);
}
/* Fallback (wenn aspect-ratio nicht unterstützt): */
.ratio-2x1{ position:relative; padding-top:50%; }
.ratio-2x1 > img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }

/* ----------------------------------
   Karten / große Blöcke
---------------------------------- */
.block-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:var(--radius);
  box-shadow:0 1px 4px rgba(0,0,0,.06);
  padding:1.5rem;
}
.block-card--muted{ background:var(--shade); }
@media (min-width:992px){ .block-card{ padding:2rem; } }

/* ----------------------------------
   Utility: bullets
---------------------------------- */
.bullets{
  list-style:none; padding-left:0; margin:0;
}
.bullets li{
  position:relative; padding-left:1.1rem; margin:.25rem 0;
}
.bullets li::before{
  content:"•"; position:absolute; left:0; top:0; line-height:1; opacity:.9;
}

/* ----------------------------------
   GALLERY GRID
---------------------------------- */
.gallery-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:12px;
}
.gallery-grid img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:0 1px 4px rgba(0,0,0,.06);
}
@media (max-width:992px){
  .gallery-grid{ grid-template-columns:1fr 1fr; }
  .gallery-grid img{ height:200px; }
}
@media (max-width:576px){
  .gallery-grid{ grid-template-columns:1fr; }
  .gallery-grid img{ height:220px; }
}

.gallery-item img{ cursor: zoom-in; }

/* Galerie: Pfeil-Navigation im Modal */
.gallery-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px; border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.12);
  color:#fff; font-size:28px; line-height:1; 
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; user-select:none;
}
.gallery-prev{ left:12px; }
.gallery-next{ right:12px; }
.gallery-nav:hover{ background:rgba(255,255,255,.24); }
.gallery-nav:focus{ outline:2px solid #fff; outline-offset:2px; }

/* ----------------------------------
   Navbar / Brand
---------------------------------- */
.brand-logo{
  height:28px;
  width:auto;
  display:block;
}
.navbar-brand span{ letter-spacing:.2px; }

/* ----------------------------------
   Embeds (Map/Video) – generischer Feinschliff
---------------------------------- */
.ratio > iframe{
  width:100%; height:100%;
  border:0; display:block;
}
