/* ═══════════════════════════════════════════
   AYLO – index.css (Startseite)
   ═══════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 900px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url(2.jpg)
    center 30% / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(12,11,10,0.96) 0%,
    rgba(12,11,10,0.75) 45%,
    rgba(12,11,10,0.1) 100%);
}

.hero-overlay::after {
  content: '';
  position: absolute;
  top: 15%; bottom: 15%; left: 48%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 80px;
  max-width: 680px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(242,236,224,0.7);
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: fit-content;
}
.rating-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.rating-stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; }
.rating-text { font-size: 12px; color: var(--white); opacity: 0.6; font-style: italic; }

.hero-pills { display: flex; flex-wrap: wrap; gap: 14px; }

.pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(242,236,224,0.8);
}
.pill-icon {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(184,147,58,0.12);
  border: 1px solid rgba(184,147,58,0.28);
  border-radius: 50%;
  font-size: 13px;
  flex-shrink: 0;
}
.pill a { color: var(--gold-lt); text-decoration: none; font-weight: 500; }
.pill a:hover { text-decoration: underline; }

/* ── ABOUT + HOURS ── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 380px;
  background: var(--dark2);
}

.about-left {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-label span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.about-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 12px;
}
.about-left h2 em { font-style: italic; color: var(--gold-lt); }

.about-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: rgba(242,236,224,0.65);
  margin-bottom: 24px;
}
.about-sub em { color: var(--gold-lt); font-style: normal; }

.about-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(242,236,224,0.55);
  max-width: 480px;
}

/* ── HOURS ── */
.hours-panel {
  background: var(--dark3);
  display: flex;
  flex-direction: column;
}
.hours-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
}
.hours-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.hours-header p {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.hours-list { flex: 1; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 32px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.hours-row:last-child { border-bottom: none; }
.hours-row:hover { background: rgba(255,255,255,0.025); }
.hours-day { font-size: 13px; font-weight: 400; color: rgba(242,236,224,0.7); }
.hours-time { font-size: 13px; font-weight: 600; color: var(--white); font-variant-numeric: tabular-nums; }
.hours-time.closed { color: var(--muted); font-weight: 400; font-style: italic; }
.hours-cta { margin: 24px 32px; }
.hours-cta a {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.25s;
}
.hours-cta a:hover { background: var(--gold-lt); }

/* ── GALLERY ── */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 580px;
}
.g-card { position: relative; overflow: hidden; cursor: pointer; text-decoration: none; display: block; }
.g-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
  filter: brightness(0.72);
}
.g-card:hover img { transform: scale(1.06); filter: brightness(0.55); }
.g-card-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px;
  background: linear-gradient(to top, rgba(12,11,10,0.88) 0%, rgba(12,11,10,0.05) 55%, transparent 100%);
}
.g-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.g-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  line-height: 1; margin-bottom: 10px; color: var(--white);
}
.g-desc { font-size: 12px; font-style: italic; color: rgba(242,236,224,0.6); letter-spacing: 0.5px; }
.g-arrow {
  position: absolute; top: 32px; right: 32px;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--white);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.g-card:hover .g-arrow { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero { max-height: none; height: auto; min-height: 100svh; }
  .hero-overlay::after { display: none; }
  .hero-content { padding: 110px 24px 56px; max-width: 100%; }
  .hero-pills { flex-direction: column; }

  .about-section { grid-template-columns: 1fr; }
  .about-left { padding: 48px 24px; border-right: none; border-bottom: 1px solid var(--border); }
  .hours-header { padding: 24px; }
  .hours-row { padding: 12px 24px; }
  .hours-cta { margin: 20px 24px; }

  .gallery { grid-template-columns: 1fr; height: auto; }
  .g-card { height: 320px; }
  .g-card img { filter: brightness(0.62); }
  .g-arrow { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .g-title { font-size: 32px; }
}
