/* =========================================================
   STREETWEAR VIENNA – style.css (FULL REPLACE / CLEAN)
   - Sticky Header: stabil, keine Layout-Sprünge
   - Slider: FULL WIDTH (Bild sichtbar), sauber geclippt
   - Main Content: zentriert im Container
   ========================================================= */

/* ---------- Variables ---------- */
:root{
  --accent:#B72025;
  --accent-dark:#8b171b;

  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;

  --card:#ffffff;
  --border:#e5e7eb;

  --shadow:0 10px 28px rgba(0,0,0,.08);
  --shadow-soft:0 6px 18px rgba(0,0,0,.06);

  --radius:18px;
  --radius-lg:22px;

  --container:1100px;

  /* Header fix */
  --header-h: 180px;

  /* Slider height */
  --slider-h: 360px;
}

/* ---------- Reset / Base ---------- */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* wichtig: verhindert "alles wird schmal/komisch" */
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }
:focus-visible{
  outline: 2px solid rgba(183,32,37,.45);
  outline-offset: 3px;
}

/* ---------- Container ---------- */
.sv-container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- HEADER (sticky + stable) ---------- */
..sv-header{
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background:#fff;
}

.sv-header-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 20px;

  height: 100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap: 8px;

  overflow: visible;
}

.sv-logo{
  width: 260px;
  height: auto;
  display:block;
  transform-origin: 50% 55%;
  will-change: transform;
  pointer-events:none;
}


.sv-social{
  font-size: 12px;
  color: var(--muted);
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap:wrap;
  justify-content:center;
}
.sv-social span{ color:#c9cdd3; }
.sv-social a{ color: var(--muted); font-weight:500; text-decoration:none; }
.sv-social a:hover{ color:#111; text-decoration:underline; }

.sv-nav{
  font-size: 13px;
  color: var(--muted);
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap:wrap;
  justify-content:center;
}
.sv-nav span{ color:#c9cdd3; }
.sv-nav a{ color: var(--muted); font-weight:600; text-decoration:none; }
.sv-nav a:hover{ color:#111; text-decoration:underline; }
.sv-nav-accent{ color: var(--accent) !important; }

/* Optional: Blur on scroll, wenn JS .scrolled setzt */
.sv-header.scrolled{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}

/* ---------- Buttons ---------- */
.sv-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  cursor:pointer;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
  text-decoration:none !important;
}
.sv-btn:active{ transform: translateY(1px); }

.sv-btn-primary{
  background: var(--accent);
  color:#fff;
  border-color: var(--accent);
  box-shadow: 0 10px 22px rgba(183,32,37,.25);
}
.sv-btn-primary:hover{
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 12px 26px rgba(183,32,37,.28);
}

.sv-btn-ghost{
  background: transparent;
  color: var(--accent);
  border-color: rgba(183,32,37,.45);
}
.sv-btn-ghost:hover{
  background: rgba(183,32,37,.08);
  border-color: rgba(183,32,37,.65);
}

/* ---------- SLIDER (FULL WIDTH, sichtbar) ---------- */
.sv-slider-wrap{
  /* Abstand unter Header */
  padding-top: 14px;

  width:100%;
  max-width:100%;
}

/* Viewport FULL WIDTH */
.sv-slider{
  width:100%;
  max-width:100%;
  margin: 0 auto;
  padding: 0;

  position: relative;
  overflow: hidden; /* clippt das Bild */
}

/* Track bewegt JS */
.sv-slider-track{
  display:flex;
  width:100%;
  height: var(--slider-h);

  background:#f7f8fa;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  will-change: transform;
  transform: translate3d(0,0,0);
}

/* Slide */
.slide{
  flex: 0 0 100%;
  height: var(--slider-h);
  background:#f7f8fa;
}
.slide img{
  width:100%;
  height:100%;
  object-fit: cover;     /* WICHTIG: Bild füllt Fläche */
  object-position: center;
}

/* Controls */
.sv-ctrl{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 22px;
  font-weight: 800;

  display:flex;
  align-items:center;
  justify-content:center;

  background: rgba(255,255,255,.86);
  box-shadow: 0 8px 16px rgba(0,0,0,.15);
  user-select:none;
}
.sv-prev{ left: 14px; }
.sv-next{ right: 14px; }
.sv-ctrl:hover{ background: rgba(255,255,255,.96); }

/* Dots */
.sv-dots{
  display:flex;
  gap: 7px;
  justify-content:center;
  align-items:center;
  margin-top: 10px;
}
.sv-dots button{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  background: #d1d5db;
  cursor:pointer;
  padding:0;
}
.sv-dots button[aria-selected="true"]{
  background: var(--accent);
  width: 22px;
}

/* CTA unter Slider */
.sv-slider-cta{
  text-align:center;
  padding: 14px 0 0;
}

/* ---------- Sections ---------- */
.sv-section{ padding: 54px 0 0; }
.sv-center{ text-align:center; }
.sv-muted{ color: var(--muted); }
.sv-small{ font-size: 12px; }
.sv-mt{ margin-top: 18px; }

h2{
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: .2px;
}

/* ---------- Video ---------- *//* ================= VIDEO PLAYER – FINAL FIX ================= */

.sv-video{
  max-width: 420px;      /* wie Reel */
  width: 100%;
  margin: 20px auto 0;
  border-radius: 22px;
  overflow: hidden;
  background:#000;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  aspect-ratio: 9 / 16;  /* Hochformat */
}

.sv-video video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}



/* ---------- Products ---------- */
.sv-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.sv-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 14px;
  text-align:center;
}
.sv-card-img{
  height: 250px;
  border-radius: 14px;
  background: #f7f8fa;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.04);
}
.sv-card-img img{
  max-height: 100%;
  width:100%;
  object-fit: contain;
}

.sv-meta{
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  display:flex;
  justify-content:space-between;
}

/* ---------- Contact ---------- */
.sv-contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 20px;
  padding-bottom: 10px;
}

.sv-form,
.sv-info{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.sv-form h3, .sv-info h3{
  margin: 0 0 10px;
  font-size: 16px;
}

.sv-form input,
.sv-form textarea{
  width:100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  margin-bottom: 10px;
}
.sv-form textarea{ resize: vertical; }

/* ---------- Footer ---------- */
.sv-footer{
  margin-top: 54px;
  padding: 26px 0;
  border-top: 1px solid var(--border);
  text-align:center;
  color: var(--muted);
  font-size: 13px;
}
.sv-footer a{
  color: var(--muted);
  font-weight: 600;
  text-decoration:none;
}
.sv-footer a:hover{ color:#111; text-decoration:underline; }

.sv-footer-links{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 10px;
}
.sv-footer-links span{ color:#c9cdd3; }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  :root{ --slider-h: 300px; --header-h: 175px; }
  .sv-card-img{ height: 220px; }
}

@media (max-width: 768px){
  :root{ --slider-h: 250px; --header-h: 170px; }

  .sv-grid{ grid-template-columns: 1fr; }
  .sv-contact{ grid-template-columns: 1fr; }

  .sv-ctrl{
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .sv-logo{ width: 230px; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
}
