/* Ibiza Büren – Bier · Café · Sportsbar */

:root {
  --schwarz: #08080a;
  --schwarz-2: #101013;
  --weiss: #f4f2ee;
  --grau: #a09c96;
  --gold: #e6b23c;
  --breite: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--schwarz);
  color: var(--weiss);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold); }

.wrap {
  width: 100%;
  max-width: var(--breite);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bild {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 46%;
  background: url("../bilder/schild.jpg") center center / cover no-repeat;
}

.hero-bild::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--schwarz) 0%, rgba(8,8,10,.55) 22%, transparent 55%),
    linear-gradient(0deg, rgba(8,8,10,.6) 0%, transparent 45%);
}

.hero .wrap { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 40px; }

.hero .inhalt { max-width: 44%; min-width: 320px; }

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.4rem, 12vw, 7.5rem);
  line-height: .92;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0;
}

.hero h1 span { display: block; color: var(--gold); }

.hero .sparte {
  margin: 22px 0 0;
  font-size: clamp(.9rem, 2.6vw, 1.05rem);
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--grau);
}

/* ---------- Abschnitte ---------- */

section { padding: 110px 0; }

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin: 0 0 44px;
}

/* Öffnungszeiten */

.zeiten { background: var(--schwarz-2); }

.zeiten-raster {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: start;
}

.tage { width: 100%; }

.tag {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(244,242,238,.09);
  font-size: 18px;
}

.tag:first-child { border-top: 1px solid rgba(244,242,238,.09); }

.tag .name { letter-spacing: .04em; }

.tag .zeit {
  font-variant-numeric: tabular-nums;
  color: var(--grau);
  white-space: nowrap;
}

.tag.heute .name,
.tag.heute .zeit { color: var(--gold); }

.tag.heute .name::after {
  content: "heute";
  margin-left: 12px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .75;
}

.tag.dicht .zeit { color: #6d6862; }

.zeiten-text p {
  margin: 0 0 22px;
  color: #cfcbc4;
  max-width: 42ch;
}

.zeiten-text p.gross {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  line-height: 1.45;
  color: var(--weiss);
}

/* Bildband */

.band {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  background: url("../bilder/aussen-nacht.jpg") center 38% / cover no-repeat;
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,8,10,.97) 0%, rgba(8,8,10,.2) 48%, rgba(8,8,10,.9) 100%);
}

.band .wrap { position: relative; z-index: 2; padding-bottom: 70px; padding-top: 140px; }

.band p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4.4vw, 2.6rem);
  line-height: 1.3;
  margin: 0;
  max-width: 20ch;
}

/* Kontakt */

.kontakt-raster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 50px 40px;
}

.kontakt-raster h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--grau);
  margin: 0 0 14px;
}

.kontakt-raster p { margin: 0; font-size: 19px; line-height: 1.6; }

.kontakt-raster a { text-decoration: none; }
.kontakt-raster a:hover { text-decoration: underline; }

.gross-tel {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 5vw, 2.3rem);
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}

/* ---------- Fuß ---------- */

.fuss {
  background: var(--schwarz-2);
  padding: 46px 0;
  font-size: 14px;
  color: var(--grau);
}

.fuss .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.fuss nav { display: flex; gap: 26px; }
.fuss a { color: var(--grau); text-decoration: none; }
.fuss a:hover { color: var(--gold); }

/* ---------- Rechtstexte ---------- */

.recht { padding: 100px 0; }
.recht .wrap { max-width: 760px; }
.recht h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 3rem);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 40px;
}
.recht h2 {
  font-size: 1.25rem;
  text-transform: none;
  letter-spacing: .01em;
  margin: 46px 0 14px;
}
.recht p { color: #cfcbc4; margin: 0 0 16px; }

/* ---------- Klein ---------- */

@media (max-width: 1100px) {
  .hero-bild { left: 40%; }
  .hero .inhalt { max-width: 52%; }
}

@media (max-width: 860px) {
  /* Bild nach oben, Text darunter auf Schwarz – kein Überlappen */
  .hero {
    display: block;
    min-height: 0;
    padding-top: 0;
  }
  .hero-bild {
    position: relative;
    left: 0;
    height: 46svh;
    min-height: 260px;
    background-position: center center;
  }
  .hero-bild::after {
    background: linear-gradient(0deg, var(--schwarz) 0%, transparent 45%);
  }
  .hero .inhalt { max-width: none; min-width: 0; }
  .hero .wrap { padding-top: 30px; padding-bottom: 44px; }
  section { padding: 80px 0; }
  .zeiten-raster { grid-template-columns: 1fr; gap: 50px; }
  .zeiten-text { order: -1; }
  .band { min-height: 60svh; }
  .fuss .wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .tag { font-size: 16px; }
}
