/* ==========================================================================
   Cheers Core – Club of Fine Spirits
   Website-Template · helles, freundliches Erscheinungsbild
   ========================================================================== */

:root {
  /* Markenfarben – abgeleitet aus dem Cheers Core Logo */
  --cc-navy: #1c2b4a;
  --cc-navy-dark: #131f38;
  --cc-navy-soft: #33456b;
  --cc-amber: #c9852c;          /* Whisky-Gold */
  --cc-amber-light: #e0a94d;
  --cc-amber-bright: #f2c879;
  --cc-cream: #faf6ef;          /* heller, warmer Hintergrund */
  --cc-cream-2: #f3ebdd;
  --cc-paper: #fffdfa;
  --cc-ink: #2c3242;
  --cc-muted: #6b7180;
  --cc-line: #e9e0d2;

  --cc-shadow-sm: 0 2px 10px rgba(28, 43, 74, .06);
  --cc-shadow-md: 0 12px 40px rgba(28, 43, 74, .10);
  --cc-shadow-lg: 0 24px 70px rgba(28, 43, 74, .16);

  --cc-radius: 18px;
  --cc-radius-sm: 12px;

  --bs-body-font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ----- Basis -------------------------------------------------------------- */
body {
  font-family: var(--bs-body-font-family);
  color: var(--cc-ink);
  background-color: var(--cc-cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4, .navbar-brand {
  font-family: "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif;
  color: var(--cc-navy);
  letter-spacing: -0.01em;
}

.section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--bs-body-font-family);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cc-amber);
}
.section-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--cc-amber);
  display: inline-block;
}

.text-muted-cc { color: var(--cc-muted) !important; }
.bg-cream { background-color: var(--cc-cream); }
.bg-paper { background-color: var(--cc-paper); }
.bg-navy { background-color: var(--cc-navy); }

a { color: var(--cc-navy); text-decoration-color: var(--cc-amber-light); }
a:hover { color: var(--cc-amber); }

/* ----- Buttons --------------------------------------------------------- */
.btn {
  border-radius: 999px;
  font-weight: 600;
  padding: .75rem 1.6rem;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn-cc-primary {
  background: var(--cc-amber);
  border-color: var(--cc-amber);
  color: #fff;
}
.btn-cc-primary:hover {
  background: var(--cc-amber-light);
  border-color: var(--cc-amber-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 133, 44, .35);
}
.btn-cc-navy {
  background: var(--cc-navy);
  border-color: var(--cc-navy);
  color: #fff;
}
.btn-cc-navy:hover {
  background: var(--cc-navy-dark);
  border-color: var(--cc-navy-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-cc-outline {
  background: transparent;
  border: 1.5px solid var(--cc-navy);
  color: var(--cc-navy);
}
.btn-cc-outline:hover {
  background: var(--cc-navy);
  color: #fff;
}

/* ----- Navbar --------------------------------------------------------- */
.navbar {
  background: rgba(250, 246, 239, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.navbar.is-scrolled {
  background: rgba(255, 253, 250, .96);
  box-shadow: var(--cc-shadow-sm);
  border-bottom-color: var(--cc-line);
}
.navbar-brand img { height: 34px; width: auto; }
.navbar .nav-link {
  font-weight: 600;
  color: var(--cc-navy) !important;
  padding: .5rem .95rem !important;
  position: relative;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: .95rem; right: .95rem;
  bottom: .3rem;
  height: 2px;
  background: var(--cc-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }

/* ----- Hero ---------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(7rem, 16vw, 11rem) 0 clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(1100px 520px at 85% -8%, rgba(242, 200, 121, .35), transparent 60%),
    radial-gradient(900px 500px at 5% 15%, rgba(28, 43, 74, .07), transparent 55%),
    linear-gradient(180deg, var(--cc-cream) 0%, var(--cc-paper) 100%);
  overflow: hidden;
}
.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); line-height: 1.05; }
.hero--compact { padding: clamp(7rem, 14vw, 9rem) 0 clamp(2rem, 5vw, 3.5rem); }
.hero--compact h1 { font-size: clamp(2rem, 4vw, 3rem); }
.hero .lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--cc-navy-soft); max-width: 34rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #fff;
  border: 1px solid var(--cc-line);
  border-radius: 999px;
  padding: .45rem 1rem .45rem .5rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--cc-navy);
  box-shadow: var(--cc-shadow-sm);
}
.hero-badge .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #35b26a;
  box-shadow: 0 0 0 4px rgba(53, 178, 106, .18);
}

.hero-card {
  background: #fff;
  border: 1px solid var(--cc-line);
  border-radius: var(--cc-radius);
  box-shadow: var(--cc-shadow-lg);
  padding: 1.75rem;
}
.hero-card .glass-visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--cc-radius-sm);
  background:
    radial-gradient(120px 120px at 70% 30%, rgba(242, 200, 121, .5), transparent 70%),
    linear-gradient(160deg, #fdf6ea, #f6e7cd);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cc-line);
}
.hero-card .glass-visual img { width: 42%; opacity: .9; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.hero-stats .num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.7rem;
  color: var(--cc-navy);
  font-weight: 600;
}
.hero-stats .lbl { font-size: .78rem; color: var(--cc-muted); }

/* ----- Karten allgemein --------------------------------------------- */
.cc-card {
  background: var(--cc-paper);
  border: 1px solid var(--cc-line);
  border-radius: var(--cc-radius);
  padding: 1.9rem;
  height: 100%;
  box-shadow: var(--cc-shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.cc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cc-shadow-md);
  border-color: var(--cc-amber-light);
}
.cc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201, 133, 44, .12);
  color: var(--cc-amber);
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}

/* ----- Club / Über uns -------------------------------------------------- */
.club-image {
  border-radius: var(--cc-radius);
  overflow: hidden;
  box-shadow: var(--cc-shadow-md);
  background: linear-gradient(160deg, #eef1f6, #e3e8f0);
  aspect-ratio: 3 / 4;
  display: flex; align-items: center; justify-content: center;
}
.club-image img { width: 55%; opacity: .85; }

.club-credentials { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.club-credentials li {
  display: flex;
  gap: .85rem;
  padding: .7rem 0;
  border-bottom: 1px dashed var(--cc-line);
}
.club-credentials li:last-child { border-bottom: 0; }
.club-credentials .tick {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--cc-navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  margin-top: .1rem;
}

/* ----- Storytelling ---------------------------------------------------- */
.story-card {
  background: var(--cc-paper);
  border: 1px solid var(--cc-line);
  border-radius: var(--cc-radius);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--cc-shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--cc-shadow-md); }
.story-card .story-media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, var(--cc-navy), var(--cc-navy-soft));
  position: relative;
  display: flex; align-items: flex-end;
  padding: 1rem 1.25rem;
}
.story-card .story-media .tag {
  background: rgba(255, 255, 255, .92);
  color: var(--cc-navy);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 999px;
}
.story-card .story-body { padding: 1.5rem; }
.story-card .story-body h3 { font-size: 1.28rem; }
.story-meta { font-size: .8rem; color: var(--cc-muted); }

.story-quote {
  border-left: 3px solid var(--cc-amber);
  padding: .4rem 0 .4rem 1.15rem;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  color: var(--cc-navy);
}

/* ----- Verkostungen / Empfehlungen ---------------------------------- */
.filter-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-pill {
  border: 1.5px solid var(--cc-line);
  background: #fff;
  color: var(--cc-navy);
  border-radius: 999px;
  padding: .45rem 1.1rem;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: all .15s ease;
}
.filter-pill:hover { border-color: var(--cc-amber); }
.filter-pill.active { background: var(--cc-navy); color: #fff; border-color: var(--cc-navy); }

.dram-card {
  background: var(--cc-paper);
  border: 1px solid var(--cc-line);
  border-radius: var(--cc-radius);
  padding: 1.6rem;
  height: 100%;
  box-shadow: var(--cc-shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.dram-card:hover { transform: translateY(-4px); box-shadow: var(--cc-shadow-md); }
.dram-card .region {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cc-amber);
}
.dram-card h3 { font-size: 1.3rem; margin: .2rem 0 .1rem; }
.dram-card .age { color: var(--cc-muted); font-size: .9rem; }
.dram-rating {
  display: inline-flex;
  align-items: baseline;
  gap: .3rem;
  background: rgba(28, 43, 74, .06);
  border-radius: 999px;
  padding: .25rem .7rem;
  font-weight: 700;
  color: var(--cc-navy);
}
.dram-rating small { font-weight: 500; color: var(--cc-muted); }
.dram-notes { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.dram-notes span {
  font-size: .78rem;
  background: rgba(201, 133, 44, .1);
  color: #9a6318;
  border-radius: 999px;
  padding: .22rem .65rem;
}

/* ----- Termine / Tickets ------------------------------------------------ */
.event-row {
  background: #fff;
  border: 1px solid var(--cc-line);
  border-radius: var(--cc-radius);
  padding: 1.5rem;
  box-shadow: var(--cc-shadow-sm);
  transition: box-shadow .18s ease, border-color .18s ease;
}
.event-row:hover { box-shadow: var(--cc-shadow-md); border-color: var(--cc-amber-light); }
.event-date {
  flex: 0 0 auto;
  width: 84px;
  text-align: center;
  background: var(--cc-navy);
  color: #fff;
  border-radius: var(--cc-radius-sm);
  padding: .7rem .4rem;
}
.event-date .d { font-size: 1.6rem; font-weight: 700; font-family: "Fraunces", Georgia, serif; line-height: 1; }
.event-date .m { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.event-meta { font-size: .88rem; color: var(--cc-muted); }
.badge-seats {
  font-size: .75rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .3rem .7rem;
}
.badge-seats.few { background: #fdeede; color: #9a6318; }
.badge-seats.ok { background: #e4f4ea; color: #1f7a45; }
.badge-seats.sold { background: #f2e3e3; color: #9a3b3b; }

.ticket-cta {
  background: linear-gradient(160deg, var(--cc-navy), var(--cc-navy-dark));
  border-radius: var(--cc-radius);
  color: #fff;
  padding: clamp(2rem, 5vw, 3.25rem);
  box-shadow: var(--cc-shadow-lg);
}
.ticket-cta h2 { color: #fff; }
.ticket-cta .lead { color: rgba(255,255,255,.8); }

/* ----- Countdown ---------------------------------------------------- */
#countdown {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.cd-unit {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 1px solid var(--cc-line);
  border-radius: var(--cc-radius-sm);
  padding: .55rem .8rem;
  min-width: 62px;
  box-shadow: var(--cc-shadow-sm);
}
.cd-num { font-family: "Fraunces", Georgia, serif; font-size: 1.5rem; font-weight: 600; color: var(--cc-navy); line-height: 1; }
.cd-lbl { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cc-muted); margin-top: .2rem; }
.cd-sep { color: var(--cc-amber); font-weight: 700; }

/* ----- Newsletter ---------------------------------------------------- */
.newsletter-box {
  background: var(--cc-paper);
  border: 1px solid var(--cc-line);
  border-radius: var(--cc-radius);
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: var(--cc-shadow-md);
}
.newsletter-box .form-control {
  border-radius: 999px;
  border: 1.5px solid var(--cc-line);
  padding: .8rem 1.2rem;
}
.newsletter-box .form-control:focus {
  border-color: var(--cc-amber);
  box-shadow: 0 0 0 .2rem rgba(201, 133, 44, .18);
}
.form-note { font-size: .8rem; color: var(--cc-muted); }

/* ----- Footer ------------------------------------------------------- */
footer.cc-footer {
  background: var(--cc-navy);
  color: rgba(255, 255, 255, .75);
  padding: 4rem 0 2rem;
}
footer.cc-footer h5 { color: #fff; font-family: var(--bs-body-font-family); font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; }
footer.cc-footer a { color: rgba(255, 255, 255, .75); text-decoration: none; }
footer.cc-footer a:hover { color: var(--cc-amber-bright); }
footer.cc-footer .brand-logo { height: 34px; filter: brightness(0) invert(1); opacity: .95; }
footer.cc-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: .82rem;
}

/* ----- Reveal-Animation ------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .cc-card:hover, .story-card:hover, .dram-card:hover { transform: none; }
}

/* ----- Utilities ---------------------------------------------------- */
.divider-dot { color: var(--cc-amber); }
.list-check { list-style: none; padding-left: 0; }
.list-check li { position: relative; padding-left: 1.75rem; margin-bottom: .6rem; }
.list-check li::before {
  content: "✦";
  position: absolute; left: 0; top: 0;
  color: var(--cc-amber);
}
.anchor-offset { scroll-margin-top: 90px; }
