/*
Theme Name: OzeanGrill
Theme URI: https://ozeangrill.de
Author: OzeanGrill
Author URI: https://ozeangrill.de
Description: Exklusives Restaurant-Theme für OzeanGrill Schweinfurt – frische Meeresfrüchte und Fischgerichte seit 2014.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ozeangrill
Tags: restaurant, food, dark, elegant, responsive
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-bg:         #0a0f1e;
  --color-bg-alt:     #0d1528;
  --color-bg-card:    #111827;
  --color-primary:    #1a6bcc;
  --color-primary-hover: #1558a8;
  --color-gold:       #c9a84c;
  --color-gold-light: #e0c068;
  --color-text:       #e8eaf0;
  --color-text-muted: #8a94a8;
  --color-border:     rgba(201,168,76,0.2);
  --color-white:      #ffffff;
  --font-heading:     'Cormorant Garamond', Georgia, serif;
  --font-body:        'Lato', 'Helvetica Neue', Arial, sans-serif;
  --radius:           4px;
  --radius-lg:        8px;
  --transition:       all 0.3s ease;
  --shadow:           0 4px 24px rgba(0,0,0,0.4);
  --shadow-card:      0 8px 32px rgba(0,0,0,0.5);
  --max-width:        1200px;
  --section-padding:  90px 0;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-gold-light); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
}

p { margin-bottom: 1rem; color: var(--color-text); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: var(--section-padding); }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin: 20px 0 30px;
}
.text-center .gold-line { margin: 20px auto 30px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,107,204,0.4);
}

.btn-gold {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}
.btn-gold:hover {
  background: var(--color-gold);
  color: var(--color-bg);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  border-color: var(--color-white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

#site-header.scrolled {
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.03em;
  line-height: 1;
}
.site-logo span { color: var(--color-gold); }
.site-logo img,
.site-logo-img { height: 52px; width: auto; display: block; }

@media (max-width: 600px) {
  .site-logo { font-size: 1.9rem; }
  .site-logo img,
  .site-logo-img { height: 40px; }
}

.main-nav { display: flex; align-items: center; gap: 36px; }

.primary-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}
.main-nav a:hover { color: var(--color-white); }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.78rem !important;
}
.nav-cta:hover { background: var(--color-primary-hover); }
.nav-cta::after { display: none !important; }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(10,15,30,0.92) 0%, rgba(13,21,40,0.75) 50%, rgba(10,15,30,0.88) 100%),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(26,107,204,0.15) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-badge::before { content: '✦'; font-size: 0.6rem; }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--color-gold);
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(232,234,240,0.8);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-meta {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  gap: 48px;
}
.hero-meta-item { text-align: center; }
.hero-meta-item .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  display: block;
}
.hero-meta-item .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity:1; }
  50% { transform: scaleY(0.5); opacity:0.4; }
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
#features-strip {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 40px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
}

.feature-item {
  background: var(--color-bg-alt);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 2px;
}
.feature-text span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about { background: var(--color-bg); }

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

.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--color-primary);
  color: var(--color-white);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
  color: var(--color-white);
}
.about-badge span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.about-list { margin: 24px 0 32px; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.95rem;
}
.about-list li:last-child { border-bottom: none; }
.about-list li::before {
  content: '✦';
  color: var(--color-gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ============================================================
   SPECIALTIES SECTION
   ============================================================ */
#specialties {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.specialty-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.specialty-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(201,168,76,0.4);
}
.specialty-card:hover::before { opacity: 1; }

.specialty-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}
.specialty-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 12px;
}
.specialty-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   MENU SECTION
   ============================================================ */
#menu { background: var(--color-bg); }

.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 40px 0 48px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0;
}

.menu-tab {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.menu-tab:hover { color: var(--color-white); }
.menu-tab.active {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--color-border);
}

.menu-item {
  background: var(--color-bg-card);
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  transition: background 0.2s ease;
}
.menu-item:hover { background: rgba(17,24,39,0.8); }

.menu-item-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 4px;
}
.menu-item-info p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-gold);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-note {
  margin-top: 32px;
  padding: 20px 28px;
  background: rgba(26,107,204,0.08);
  border: 1px solid rgba(26,107,204,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}
.menu-note span { font-size: 1.2rem; }

/* ============================================================
   HOURS SECTION
   ============================================================ */
#hours {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}

.hours-table { width: 100%; }
.hours-table tr {
  border-bottom: 1px solid var(--color-border);
}
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 14px 0;
  color: var(--color-text);
  font-size: 0.95rem;
}
.hours-table td:first-child {
  color: var(--color-gold);
  font-weight: 700;
  min-width: 130px;
}
.hours-table td:last-child {
  text-align: right;
  color: var(--color-text-muted);
}
.hours-table tr.closed td { color: var(--color-text-muted); opacity: 0.5; }

.contact-details { }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 42px;
  height: 42px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-item-text span, .contact-item-text a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
#gallery { background: var(--color-bg); }

.gallery-slideshow {
  position: relative;
  max-width: 860px;
  margin: 56px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-card);
}

.gallery-slide-track {
  position: relative;
  width: 100%;
  height: 480px;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
.gallery-slide.active {
  opacity: 1;
  visibility: visible;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(6,10,20,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  z-index: 2;
}
.gallery-nav:hover { background: var(--color-primary); border-color: var(--color-primary); }
.gallery-nav-prev { left: 16px; }
.gallery-nav-next { right: 16px; }

.gallery-dots {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}
.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.gallery-dot:hover { background: rgba(255,255,255,0.7); }
.gallery-dot.active { background: var(--color-gold); transform: scale(1.2); }

@media (max-width: 768px) {
  .gallery-slide-track { height: 320px; }
  .gallery-nav { width: 38px; height: 38px; }
}

/* ============================================================
   RESERVATION / CTA SECTION
   ============================================================ */
#reservation {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(10,15,30,0.88), rgba(10,15,30,0.88)),
    url('https://images.unsplash.com/photo-1559329007-40df8a9345d8?w=1600&q=80') center/cover no-repeat fixed;
}

#reservation .section-title { font-size: clamp(2.2rem, 4vw, 3.5rem); }
#reservation .section-subtitle { color: rgba(232,234,240,0.7); margin: 0 auto 40px; }

.reservation-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  margin-top: 56px;
}

.contact-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-group select option { background: var(--color-bg-card); }

/* ============================================================
   MAP / DIRECTIONS
   ============================================================ */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}
.map-wrap iframe {
  width: 100%;
  flex: 1;
  border: none;
  filter: grayscale(60%) invert(90%) contrast(85%) hue-rotate(180deg);
}
.map-info {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-card);
}
.map-info span { font-size: 1.2rem; }
.map-info p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
.map-info p strong { color: var(--color-white); display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #060a14;
  border-top: 1px solid var(--color-border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 14px;
  display: block;
}
.footer-logo span { color: var(--color-gold); }
.footer-logo-img { height: 40px; width: auto; display: block; margin-bottom: 14px; }

.footer-about p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-bg);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--color-white); padding-left: 4px; }

.footer-hours-list { display: flex; flex-direction: column; gap: 8px; }
.footer-hours-list li {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.footer-hours-list li strong { color: var(--color-text); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.footer-legal a:hover { color: var(--color-white); }

.footer-credit {
  padding: 16px 0 28px;
  text-align: center;
  border-top: 1px solid var(--color-border);
}
.footer-credit p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  opacity: 0.7;
}
.footer-credit a {
  color: var(--color-text-muted);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.25);
}
.footer-credit a:hover {
  color: var(--color-gold);
  text-decoration-color: var(--color-gold);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   SUBPAGES — Datenschutz / AGB / Impressum
   ============================================================ */
.subpage-hero {
  padding: 140px 0 60px;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
.subpage-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; }
.subpage-hero p { color: var(--color-text-muted); font-size: 1rem; }

.legal-content {
  padding: 64px 0 80px;
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  margin: 36px 0 12px;
}
.legal-content h3 {
  font-size: 1.1rem;
  color: var(--color-gold);
  margin: 24px 0 8px;
}
.legal-content p, .legal-content li {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.legal-content ul { padding-left: 20px; margin-bottom: 1rem; }
.legal-content ul li { list-style: disc; margin-bottom: 6px; }
.legal-content a { color: var(--color-gold); }

/* ============================================================
   WORDPRESS SPECIFIC
   ============================================================ */
.wp-caption { max-width: 100%; }
.alignleft { float: left; margin-right: 24px; }
.alignright { float: right; margin-left: 24px; }
.aligncenter { margin: 0 auto; text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { right: 16px; bottom: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-padding: 64px 0; }

  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(6,10,20,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 32px;
    gap: 28px;
    transition: right 0.35s ease;
    border-left: 1px solid var(--color-border);
  }
  .primary-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .main-nav.open { right: 0; }
  .main-nav a { font-size: 1rem; }
  .nav-cta { width: 100%; text-align: center; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: 2.6rem; }
  .hero-meta { flex-wrap: wrap; gap: 24px; position: static; transform: none; margin-top: 48px; }
  .scroll-indicator { display: none; }

  #hero .container { padding-top: 110px; padding-bottom: 40px; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .specialties-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .menu-tabs { gap: 4px; }
  .menu-tab { padding: 10px 14px; font-size: 0.72rem; }
}
