/*
Theme Name: Aura Restaurant
Theme URI: https://aura-restaurant.de
Author: Aura Restaurant
Description: Modernes One-Page Theme für Aura Restaurant – Pizza & Döner in Köln Nippes
Version: 1.0
License: Private
Text Domain: aura-restaurant
*/

/* ═══════════════════════════════════════════════════════════════
   AURA RESTAURANT — CSS
   Farben: Dunkelgrün #3a6b4a · Gold #c9a84c · Dunkel #0d0d0d
═══════════════════════════════════════════════════════════════ */

/* ── Reset & Basis ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #3a6b4a;
  --green-light: #4e8a60;
  --green-dark:  #1e3d2a;
  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --dark:        #0d0d0d;
  --dark-2:      #141414;
  --dark-3:      #1c1c1c;
  --dark-4:      #242424;
  --text:        #e8e4de;
  --text-muted:  #9a9590;
  --white:       #ffffff;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 8px 40px rgba(0,0,0,.45);
  --transition:  .35s cubic-bezier(.25,.8,.25,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

/* WordPress admin bar fix */
.admin-bar .navbar { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .navbar { top: 46px; }
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 700; }

.section-label {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .75rem;
  display: block;
}

.center { text-align: center; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(13,13,13,.92);
  backdrop-filter: blur(16px);
  padding: .6rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.nav-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
}

.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--white);
}

.nav-logo em {
  display: block;
  font-style: normal;
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: .12em;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links li a {
  padding: .5rem 1rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: var(--transition);
}

.nav-links li a:hover {
  color: var(--white);
  background: rgba(255,255,255,.07);
}

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  padding: .5rem 1.25rem;
}
.nav-links .nav-cta:hover { background: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,.85) 0%, rgba(30,61,42,.6) 50%, rgba(13,13,13,.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  animation: fadeUp .9s ease both;
}

.hero-tag {
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}

.hero-tag::before, .hero-tag::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}

h1 span { color: var(--gold); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  margin: 1.5rem 0 2.5rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 20px;
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════ */
.about { padding: 120px 0; background: var(--dark-2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(201,168,76,.35);
}

.badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.badge-text {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: .85;
}

.about-text h2 { margin-bottom: 1.25rem; }
.about-text > p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.05rem; }

.highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.highlight-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--dark-3);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.05);
  transition: var(--transition);
}

.highlight-item:hover { border-color: rgba(201,168,76,.25); transform: translateY(-2px); }
.highlight-icon { font-size: 1.5rem; flex-shrink: 0; }
.highlight-item strong { display: block; font-size: .9rem; margin-bottom: .2rem; color: var(--white); }
.highlight-item p { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ══════════════════════════════════════════════════════════════
   MENU
══════════════════════════════════════════════════════════════ */
.menu-section { padding: 120px 0; background: var(--dark); }
.menu-section h2 { margin-bottom: .75rem; }
.section-desc { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 3rem; }

.menu-tabs {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: .65rem 1.5rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.12);
  background: transparent;
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.tab-btn:hover { border-color: var(--gold); color: var(--gold); }
.tab-btn.active { background: var(--gold); border-color: var(--gold); color: var(--dark); font-weight: 700; }

.menu-tab-content { display: none; }
.menu-tab-content.active { display: block; }

.menu-hero-img {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.menu-hero-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.menu-hero-img:hover img { transform: scale(1.04); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  background: var(--dark-3);
  transition: var(--transition);
}

.menu-item:hover { background: var(--dark-4); }

.menu-item-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .3rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.menu-item-info p { font-size: .82rem; color: var(--text-muted); margin: 0; }

.tag {
  font-size: .68rem;
  background: rgba(58,107,74,.35);
  color: var(--green-light);
  border: 1px solid rgba(78,138,96,.3);
  padding: .15rem .5rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: .04em;
}

.menu-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.menu-note { text-align: center; color: var(--text-muted); font-size: .78rem; margin-top: 2rem; opacity: .7; }

/* ══════════════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════════════ */
.gallery-section { padding: 120px 0; background: var(--dark-2); }
.gallery-section h2 { margin-bottom: 2.5rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
  margin-top: 2rem;
  padding: 0 40px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}

.gallery-item img, .gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.03); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ══════════════════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════════════════ */
.reviews-section { padding: 120px 0; background: var(--dark); }

.stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin: .75rem 0 3rem;
}

.stars-row span:first-child { color: var(--gold); font-size: 1.4rem; letter-spacing: .1em; }
.rating-text { color: var(--text-muted); font-size: .88rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.review-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.review-card:hover { border-color: rgba(201,168,76,.2); transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,.35); }

.review-card.featured {
  background: var(--dark-4);
  border-color: rgba(201,168,76,.25);
  transform: scale(1.03);
  box-shadow: 0 16px 60px rgba(0,0,0,.4);
}

.review-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; margin-bottom: 1rem; }
.review-card p { color: var(--text-muted); font-size: .92rem; line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }

.review-author { display: flex; align-items: center; gap: .75rem; }

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--white);
  flex-shrink: 0;
}

.review-author strong { display: block; font-size: .9rem; color: var(--white); }
.review-author span { font-size: .75rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   DELIVERY
══════════════════════════════════════════════════════════════ */
.delivery-section { padding: 120px 0; background: var(--dark-2); }

.delivery-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
}

.delivery-text { padding: 3.5rem; }
.delivery-text h2 { margin-bottom: 1rem; }
.delivery-text p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1rem; }
.delivery-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.delivery-visual { height: 420px; overflow: hidden; }
.delivery-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.delivery-visual:hover img { transform: scale(1.05); }

/* ══════════════════════════════════════════════════════════════
   CONTACT / HOURS / MAP
══════════════════════════════════════════════════════════════ */
.contact-section { padding: 120px 0; background: var(--dark); }
.contact-section h2 { margin-bottom: 3rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 2rem;
  min-height: 520px;
}

.hours-card {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hours-card h3 { font-size: 1.1rem; color: var(--gold); margin-bottom: .25rem; }

.hours-list { display: flex; flex-direction: column; gap: .6rem; }

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: var(--text-muted);
}

.hours-list li span:first-child { color: var(--text); }
.hours-list li.today { color: var(--gold); }
.hours-list li.today span { color: var(--gold); }

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(58,107,74,.2);
  border: 1px solid rgba(58,107,74,.4);
  color: #6dbf85;
  padding: .5rem 1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  width: fit-content;
}

.open-dot {
  width: 8px;
  height: 8px;
  background: #4caf6e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
  line-height: 1.5;
}

.contact-info svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.social-links { display: flex; gap: .75rem; margin-top: 1rem; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.12);
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-btn:hover { border-color: var(--gold); color: var(--gold); }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.06); }
.map-wrap iframe { display: block; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green); margin-bottom: 1rem; }
.footer-brand p { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); margin-bottom: .35rem; }
.footer-brand em { font-style: normal; color: var(--gold); font-size: .85rem; }
.footer-desc { font-family: 'Inter', sans-serif; font-size: .85rem; color: var(--text-muted); margin-top: .75rem; }

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links ul li { margin-bottom: .5rem; }
.footer-links ul li a, .footer-links p { font-size: .88rem; color: var(--text-muted); transition: color var(--transition); line-height: 1.7; }
.footer-links ul li a:hover { color: var(--white); }

.footer-social h4 {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-social-btns { display: flex; gap: .75rem; }

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-icon:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.08); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: var(--text-muted);
}

.footer-bottom a { color: var(--text-muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: .4; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,110,.5); }
  50%       { box-shadow: 0 0 0 6px rgba(76,175,110,0); }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img { height: 380px; }
  .about-badge { right: 20px; bottom: 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card.featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { height: 380px; }
  .delivery-box { grid-template-columns: 1fr; }
  .delivery-visual { height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.tall, .gallery-item.wide { grid-column: auto; grid-row: auto; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,13,13,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { font-size: 1.2rem; }
  .nav-toggle { display: flex; z-index: 101; }
  .highlights { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .delivery-text { padding: 2rem; }
  .about, .menu-section, .gallery-section, .reviews-section,
  .delivery-section, .contact-section { padding: 80px 0; }
}
