/* ================================================================
   CHICKEN CLUB BERLIN — SHARED STYLES
   ================================================================ */
:root {
  --gold:        #F5C300;
  --gold-dim:    rgba(245,195,0,0.12);
  --gold-border: rgba(245,195,0,0.25);
  --black:       #080808;
  --black-2:     #111111;
  --black-3:     #1A1A1A;
  --white:       #FFFFFF;
  --gray-hi:     #E0E0E0;
  --gray-mid:    #9A9A9A;
  --gray-lo:     #555555;
  --font-serif:  'Playfair Display', serif;
  --font-script: 'Dancing Script', cursive;
  --font-sans:   'Inter', sans-serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --max-w:       1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { background: var(--black); color: var(--white); font-family: var(--font-sans); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
section { padding: 88px 0; }
.gold-rule { width: 48px; height: 2px; background: var(--gold); margin: 14px 0 28px; }
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* === TYPOGRAPHY === */
.t-label { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.t-display { font-family: var(--font-serif); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
.t-heading { font-family: var(--font-serif); font-weight: 600; line-height: 1.2; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 1px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold { background: var(--gold); color: var(--black); box-shadow: 0 4px 20px rgba(245,195,0,0.25); }
.btn-gold:hover { box-shadow: 0 8px 32px rgba(245,195,0,0.5); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--black); color: var(--gold); border: 2px solid var(--black); }
.btn-dark-outline { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-dark-outline:hover { background: var(--black); color: var(--gold); }
@keyframes shimmer { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }
.btn-shimmer {
  background: linear-gradient(90deg,#C8A000 0%,var(--gold) 30%,#FFE55C 50%,var(--gold) 70%,#C8A000 100%);
  background-size: 200% auto; animation: shimmer 4s linear infinite; color: var(--black);
}

/* === NAVIGATION === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 0.4s var(--ease-out), background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 13px 40px;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--gold-border);
}
.nav.solid {
  background: rgba(8,8,8,0.97);
  border-bottom-color: var(--gold-border);
}
.nav-logo-img { height: 34px; width: auto; transition: height 0.4s var(--ease-out); }
.nav.scrolled .nav-logo-img { height: 28px; }
.nav-links { display: flex; align-items: center; gap: 32px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-links a {
  font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); transition: color 0.25s ease;
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { background: var(--gold); width: 100%; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-btn {
  font-size: 0.7rem; letter-spacing: 0.12em; color: var(--gray-mid);
  border: 1px solid var(--gold-border); padding: 6px 12px;
  transition: all 0.25s ease; border-radius: 1px;
}
.lang-btn:hover { color: var(--gold); border-color: var(--gold); }
.nav-order { opacity: 0; pointer-events: none; transform: translateY(-4px); transition: opacity 0.3s ease, transform 0.3s ease; }
.nav.scrolled .nav-order, .nav.solid .nav-order { opacity: 1; pointer-events: auto; transform: translateY(0); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-nav {
  position: fixed; inset: 0; background: var(--black); z-index: 800;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a { font-family: var(--font-serif); font-size: clamp(1.8rem,6vw,2.8rem); color: rgba(255,255,255,0.8); padding: 10px; transition: color 0.2s ease; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .m-divider { width: 40px; height: 1px; background: var(--gold-border); margin: 16px 0; }

/* === PAGE HERO (for sub-pages) === */
.page-hero {
  padding: 160px 0 80px;
  background: var(--black-2);
  border-bottom: 1px solid var(--gold-border);
  text-align: center;
}
.page-hero .t-label { margin-bottom: 12px; display: block; }
.page-hero h1 { font-size: clamp(2.2rem,5vw,3.8rem); margin-bottom: 16px; }
.page-hero p { color: var(--gray-mid); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* === BREADCRUMB === */
.breadcrumb {
  padding: 14px 0;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.breadcrumb-inner {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--gray-lo);
}
.breadcrumb-inner a { color: var(--gray-lo); transition: color 0.2s ease; }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-inner span { color: var(--gray-lo); }
.bc-sep { opacity: 0.4; }

/* === FOOTER === */
footer { background: var(--black); border-top: 1px solid var(--gold-border); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.footer-logo { height: 40px; margin-bottom: 16px; }
.footer-brand p { color: var(--gray-mid); font-size: 0.87rem; line-height: 1.75; max-width: 260px; }
.footer-col h4 { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--gray-mid); font-size: 0.87rem; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; color: var(--gray-lo); font-size: 0.76rem; }
.footer-bottom a { color: var(--gray-lo); transition: color 0.25s ease; }
.footer-bottom a:hover { color: var(--gold); }

/* === SCROLL REVEAL === */
.reveal, .reveal-l, .reveal-r { transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out); }
.reveal     { opacity: 0; transform: translateY(32px); }
.reveal-l   { opacity: 0; transform: translateX(-32px); }
.reveal-r   { opacity: 0; transform: translateX(32px); }
.reveal.in, .reveal-l.in, .reveal-r.in { opacity: 1; transform: translate(0); }
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}
.d4{transition-delay:.32s}.d5{transition-delay:.4s}

/* === MARQUEE BANNER === */
.banner { background: var(--gold); padding: 22px 0; overflow: hidden; }
.banner-track { display: flex; white-space: nowrap; animation: marquee 24s linear infinite; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.banner-track span { display: inline-block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--black); padding: 0 28px; }
.banner-dot { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: rgba(0,0,0,0.3); margin: 0 4px; vertical-align: middle; }

/* === ORDER CTA === */
.order-cta { background: var(--gold); padding: 80px 0; position: relative; overflow: hidden; }
.order-cta::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40' fill='rgba(0,0,0,0.04)'/%3E%3C/svg%3E"); }
.order-inner { position: relative; z-index: 1; text-align: center; }
.order-inner .t-label { color: rgba(0,0,0,0.45); margin-bottom: 12px; display: block; }
.order-inner h2 { font-family: var(--font-serif); font-size: clamp(2rem,4vw,3rem); color: var(--black); margin-bottom: 10px; }
.order-inner p { color: rgba(0,0,0,0.55); margin-bottom: 40px; font-size: 1rem; }
.order-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-l, .reveal-r { opacity: 1; transform: none; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 24px; }
  section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .order-btns { flex-direction: column; align-items: center; }
  .page-hero { padding: 130px 0 60px; }
}
