/* ==========================================================================
   TENNISHALLE TRAAR — GLOBAL STYLESHEET (style.css)
   v1.5 · 2026-06 · Single Source of Truth
   ========================================================================== */

/* ==========================================================================
   01. VARIABLES & RESET
   ========================================================================== */
:root {
  /* Colors */
  --navy:        #2C3E7A;
  --navy-dark:   #1a2550;
  --navy-light:  #3d52a0;
  --silver:      #8A9BB0;
  --silver-light:#b8c6d4;
  --silver-pale: #e8edf3;
  --black:       #0d0d0d;
  --gray-dark:   #1c1c2e;
  --gray-mid:    #5a6070;
  --gray-light:  #e2e6ec;
  --off-white:   #f5f6fa;
  --white:       #ffffff;
  
  /* Pricing Seasons */
  --summer:      #c8773c;
  --summer-pale: #fdf0e6;
  --winter:      #2C3E7A;
  --winter-pale: #e8edf3;

  /* Layout */
  --radius:      3px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth; 
  font-size: 16px; 
  scroll-padding-top: 90px; /* UX Fix: Verhindert das Verdecken von Überschriften durch sticky/fixed Navigation */
}

body { 
  font-family: 'DM Sans', sans-serif; 
  background: var(--off-white); 
  color: var(--black); 
  overflow-x: hidden; 
}

/* ==========================================================================
   02. GLOBALS & TYPOGRAPHY
   ========================================================================== */
.container { 
  max-width: 1100px; 
  margin: 0 auto; 
}

section { 
  padding: 6rem 2.5rem; 
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.0; 
  letter-spacing: -0.02em;
  color: var(--white); 
  margin-bottom: 1.5rem;
  font-weight: 900;
}
h1 em { font-style: italic; color: var(--silver-light); }

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); 
  letter-spacing: -0.02em;
  line-height: 1.1; 
  margin-bottom: 1rem; 
  font-weight: 700;
}
h2 em { font-style: italic; color: var(--navy); }

.section-label {
  font-size: 0.7rem; 
  font-weight: 600; 
  letter-spacing: 0.16em;
  text-transform: uppercase; 
  color: var(--navy); 
  margin-bottom: 1rem;
  display: flex; 
  align-items: center; 
  gap: 0.7rem;
}
.section-label::before { 
  content: ''; 
  display: block; 
  width: 28px; 
  height: 2px; 
  background: var(--navy); 
}

.section-intro { 
  color: var(--gray-mid); 
  font-size: 1rem; 
  line-height: 1.75; 
  max-width: 540px; 
  margin-bottom: 3rem; 
}

.reveal { 
  opacity: 0; 
  transform: translateY(24px); 
  transition: opacity 0.65s ease, transform 0.65s ease; 
}
.reveal.visible { 
  opacity: 1; 
  transform: none; 
}

/* ==========================================================================
   03. UI COMPONENTS (Buttons, Forms, Alerts)
   ========================================================================== */
.btn {
  display: inline-flex; 
  align-items: center; 
  gap: 0.5rem;
  padding: 0.85rem 1.8rem; 
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; 
  font-weight: 600; 
  border-radius: var(--radius);
  cursor: pointer; 
  border: 2px solid transparent;
  text-decoration: none; 
  transition: all var(--transition); 
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-light); border-color: var(--navy-light); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-large { padding: 1.1rem 2.8rem; font-size: 1.05rem; }

/* Forms */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
input, select, textarea {
  padding: 0.75rem 1rem; 
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); 
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; 
  background: rgba(255,255,255,0.05); 
  color: var(--white);
  transition: border-color var(--transition); 
  outline: none; 
  width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.25); }
input:focus, select:focus, textarea:focus { border-color: var(--navy-light); }
select option { background: var(--gray-dark); }
textarea { resize: vertical; min-height: 100px; }

/* Toast Notifications */
.toast {
  position: fixed; 
  bottom: 2rem; 
  left: 50%; 
  transform: translateX(-50%) translateY(80px);
  background: var(--navy-dark); 
  color: var(--white);
  padding: 0.9rem 1.8rem; 
  border-radius: 100px; 
  border: 1px solid rgba(138,155,176,0.3);
  font-size: 0.88rem; 
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4); 
  z-index: 999;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--navy); border-color: var(--silver-light); }

/* Notice Box */
.notice-box {
  background: var(--silver-pale); 
  border: 1px solid var(--gray-light);
  border-left: 3px solid var(--navy); 
  border-radius: 4px;
  padding: 1rem 1.2rem;
  display: flex; 
  gap: 0.8rem; 
  align-items: flex-start;
  font-size: 0.88rem; 
  color: var(--gray-mid); 
  line-height: 1.65;
}
.notice-box .notice-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.notice-box strong { color: var(--navy); }

/* ==========================================================================
   04. NAVIGATION (Header, Fixed Nav, Back-links)
   ========================================================================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: border-color var(--transition);
}
body.subpage nav { position: sticky; border-bottom: 1px solid rgba(44,62,122,0.3); background: rgba(13,13,13,0.96); }
nav.scrolled { border-color: rgba(44,62,122,0.4); }

.nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav-logo-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 1.5px solid rgba(138,155,176,0.4); }
/* Falls die Startseite noch das große Nav-Bild nutzt */
nav:not(.subpage-nav) .nav-logo-img { width: 84px; height: 84px; }

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text strong { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); letter-spacing: 0.02em; }
.nav-logo-text small { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.55);
  text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--navy); color: var(--white) !important;
  padding: 0.5rem 1.3rem; border-radius: var(--radius); font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--navy-light) !important; }

.nav-back {
  font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.55);
  text-decoration: none; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 0.4rem;
  transition: color var(--transition);
}
.nav-back:hover { color: var(--white); }

/* Mobile Menu & Hamburger */
.nav-burger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; border: none; background: transparent; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

.mobile-menu {
  display: none; position: fixed; top: 65px; left: 0; right: 0;
  background: var(--gray-dark); padding: 1.5rem 2rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08); z-index: 99;
  flex-direction: column; gap: 0.8rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.7);
  text-decoration: none; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a.cta-mob {
  background: var(--navy); color: var(--white); text-align: center; 
  padding: 0.9rem; border-radius: var(--radius); border: none; margin-top: 0.5rem;
}

/* ==========================================================================
   05. HERO SECTION (Startseite)
   ========================================================================== */
.hero {
  min-height: 100vh; 
  position: relative; 
  overflow: hidden;
  display: flex; 
  align-items: flex-end;
}

.hero-gallery { position: absolute; inset: 0; z-index: 0; }
.hero-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.hero-gallery img:hover { transform: scale(1.03); }
.hero-gallery::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.96) 0%, rgba(13,13,13,0.65) 40%, rgba(13,13,13,0.2) 70%, rgba(13,13,13,0.35) 100%);
}

.hero-content {
  position: relative; z-index: 2; width: 100%;
  padding: 0 2.5rem 5rem; max-width: 1100px; margin: 0 auto;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--silver-light); margin-bottom: 1.5rem;
}
.hero-tag::before { content: ''; display: block; width: 20px; height: 1px; background: var(--navy-light); }

.hero-sub {
  font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.6);
  line-height: 1.75; max-width: 500px; margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-logo {
  position: absolute;
  top: 8rem;      
  right: 2.5rem;  
  z-index: 3;
  width: 180px;   
  height: 180px;  
  border-radius: 50%;
  object-fit: cover;
  object-position: center 48%; /* Visuelle Korrektur des asymmetrischen weißen Logo-Rands */
  border: 2px solid rgba(138,155,176,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); display: block; line-height: 1; }
.stat-label { font-size: 0.72rem; color: var(--silver); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.3rem; }

/* ==========================================================================
   06. SUBPAGE COMPONENT HEADER
   ========================================================================== */
.page-header {
  background: var(--navy-dark); color: var(--white);
  padding: 4rem 2.5rem 3rem;
  border-bottom: 1px solid rgba(138,155,176,0.15);
}
.page-header-inner { max-width: 900px; margin: 0 auto; }

.breadcrumb {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--silver);
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.2rem;
}
.breadcrumb a { color: var(--silver); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.4; }

.page-header h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; letter-spacing: -0.02em; color: var(--white);
  margin-bottom: 0.5rem;
}
.page-header p { font-size: 0.9rem; color: rgba(255,255,255,0.45); margin-top: 0.5rem; }

.validity-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.2rem;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; padding: 0.4rem 1rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.6);
}
.validity-badge span { color: var(--silver-light); font-weight: 600; }

/* ==========================================================================
   07. SECTIONS INHALT & GRIDS
   ========================================================================== */

/* --- Die Halle --- */
#halle { background: var(--white); }
.usp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; }
.usp-card {
  background: var(--off-white); border: 1px solid var(--gray-light);
  border-radius: 4px; padding: 1.8rem; border-top: 3px solid var(--navy);
  transition: box-shadow 0.25s, transform 0.25s;
}
.usp-card:hover { box-shadow: 0 8px 30px rgba(44,62,122,0.1); transform: translateY(-2px); }
.usp-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.usp-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.5rem; }
.usp-card p { font-size: 0.85rem; color: var(--gray-mid); line-height: 1.65; }

/* --- Buchen (Startseite) --- */
#buchen { background: var(--navy-dark); }
#buchen .section-label { color: var(--silver-light); }
#buchen .section-label::before { background: var(--silver-light); }
#buchen h2 { color: var(--white); }
#buchen h2 em { color: var(--silver-light); }
#buchen .section-intro { color: rgba(255,255,255,0.55); }

.booking-cta-block { display: flex; flex-direction: column; gap: 2rem; }
.booking-info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.binfo-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 1.2rem;
}
.binfo-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.binfo-text { display: flex; flex-direction: column; gap: 0.3rem; }
.binfo-text strong { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.binfo-text span { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

.booking-courts-preview { display: flex; gap: 1rem; flex-wrap: wrap; }
.bcp-card {
  flex: 1; min-width: 220px; display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.4rem; background: rgba(255,255,255,0.05); 
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius);
}
.bcp-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.bcp-dot.indoor { background: var(--silver-light); }
.bcp-dot.outdoor { background: #c8a46a; }
.bcp-card div { display: flex; flex-direction: column; gap: 0.2rem; flex: 1; }
.bcp-card strong { font-size: 0.92rem; font-weight: 600; color: var(--white); }
.bcp-card span { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.bcp-price { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--silver-light); white-space: nowrap; }

.booking-cta-center {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding: 3rem 2rem; background: rgba(255,255,255,0.04); 
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; text-align: center;
}
.booking-cta-note { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* --- Gastronomie (Maki & Masala Info Block) --- */
#gastro { background: var(--off-white); }
.gastro-block { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.gastro-links { display: flex; flex-direction: column; gap: 0.8rem; }
.gastro-link {
  display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.2rem;
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: 4px; text-decoration: none; color: var(--black);
  transition: border-color var(--transition), box-shadow 0.2s;
}
.gastro-link:hover { border-color: var(--navy); box-shadow: 0 4px 16px rgba(44,62,122,0.1); }
.gastro-link-icon { font-size: 1.4rem; flex-shrink: 0; }
.gastro-link div { flex: 1; display: flex; flex-direction: column; gap: 0.15rem; }
.gastro-link strong { font-size: 0.92rem; font-weight: 600; }
.gastro-link span { font-size: 0.78rem; color: var(--gray-mid); }
.gastro-link-arrow { color: var(--navy); font-size: 1rem; flex-shrink: 0; }

.gastro-info { display: flex; flex-direction: column; gap: 1.2rem; }
.gastro-fact { display: flex; gap: 1rem; align-items: flex-start; padding-bottom: 1.2rem; border-bottom: 1px solid var(--gray-light); }
.gastro-fact:last-child { border-bottom: none; padding-bottom: 0; }
.gastro-fact > span { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.gastro-fact div { display: flex; flex-direction: column; gap: 0.2rem; }
.gastro-fact strong { font-size: 0.92rem; font-weight: 600; }
.gastro-fact p { font-size: 0.83rem; color: var(--gray-mid); line-height: 1.55; margin: 0; }

/* Fallback-Karten falls für das Menü benötigt */
.menu-tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.tab-btn {
  padding: 0.45rem 1.1rem; border: 1.5px solid var(--gray-light); background: transparent; 
  border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: 0.84rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s; color: var(--gray-mid);
}
.tab-btn.active, .tab-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.menu-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: 4px; padding: 1.4rem; transition: box-shadow 0.2s; }
.menu-card:hover { box-shadow: 0 4px 24px rgba(44,62,122,0.08); }
.menu-card-cat { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.5rem; }
.menu-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.4rem; }
.menu-card p { font-size: 0.82rem; color: var(--gray-mid); line-height: 1.5; margin-bottom: 0.8rem; }
.menu-card-footer { display: flex; justify-content: space-between; align-items: center; }
.price { font-family: 'Playfair Display', serif; font-size: 1.15rem; }
.add-btn {
  width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color: var(--white); 
  border: none; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; 
  justify-content: center; transition: background 0.2s;
}
.add-btn:hover { background: var(--navy-dark); }

/* --- Partner (TC Traar Block) --- */
#partner { background: var(--white); }
.partner-block { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center; }
.partner-logo-area { display: flex; flex-direction: column; gap: 1.5rem; }
.partner-logo-box {
  background: var(--off-white); border-radius: 8px; padding: 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  position: relative; border: 2px solid #4a7c59; /* Grüne Accent-Farbe des TC Traar e.V. */
}
.partner-logo-box img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; }
.partner-logo-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--black); text-align: center; margin-top: 0.5rem; }
.partner-logo-sub { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-mid); }

.partner-links { display: flex; flex-direction: column; gap: 0.6rem; }
.partner-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1rem; background: var(--off-white); border: 1px solid var(--gray-light);
  border-radius: var(--radius); text-decoration: none; color: var(--black);
  font-size: 0.88rem; font-weight: 500; transition: border-color var(--transition), background 0.2s;
}
.partner-link:hover { border-color: var(--navy); background: var(--silver-pale); }
.partner-link-arrow { color: var(--navy); font-size: 1rem; }

.partner-facts { display: flex; flex-direction: column; gap: 1.2rem; }
.partner-fact { display: flex; gap: 1rem; align-items: flex-start; padding-bottom: 1.2rem; border-bottom: 1px solid var(--gray-light); }
.partner-fact:last-child { border-bottom: none; padding-bottom: 0; }
.partner-fact-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.partner-fact div { display: flex; flex-direction: column; gap: 0.2rem; }
.partner-fact strong { font-size: 0.92rem; font-weight: 600; }
.partner-fact p { font-size: 0.83rem; color: var(--gray-mid); line-height: 1.55; margin: 0; }

/* --- Termine & Events --- */
#events { background: var(--off-white); }
.no-events-msg {
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem; 
  padding: 3rem 2rem; text-align: center; background: var(--white); 
  border: 1px solid var(--gray-light); border-radius: 4px; color: var(--gray-mid);
}
.no-events-msg span { font-size: 2rem; }
.no-events-msg p { font-size: 0.95rem; line-height: 1.7; }

.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.event-card { border: 1px solid var(--gray-light); border-radius: 4px; overflow: hidden; transition: box-shadow 0.2s; background: var(--white); }
.event-card:hover { box-shadow: 0 6px 28px rgba(44,62,122,0.12); }
.event-header { background: var(--navy-dark); padding: 1.4rem; color: var(--white); display: flex; gap: 1rem; align-items: flex-start; }
.event-date-box {
  background: var(--navy); border-radius: 4px; padding: 0.5rem 0.8rem;
  text-align: center; min-width: 52px; flex-shrink: 0; border: 1px solid rgba(138,155,176,0.3);
}
.event-day { font-family: 'Playfair Display', serif; font-size: 1.6rem; line-height: 1; display: block; }
.event-month { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-top: 2px; color: var(--silver-light); }
.event-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 0.3rem; }
.event-time { font-size: 0.78rem; opacity: 0.6; }
.event-body { padding: 1.2rem 1.4rem; }
.event-body p { font-size: 0.86rem; color: var(--gray-mid); line-height: 1.6; }

/* --- Kontakt --- */
#kontakt { background: var(--gray-dark); color: var(--white); }
#kontakt .section-label { color: var(--silver-light); }
#kontakt .section-label::before { background: var(--silver-light); }
#kontakt h2 { color: var(--white); }
#kontakt h2 em { color: var(--silver-light); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.info-item { display: flex; gap: 0.9rem; align-items: flex-start; margin-bottom: 1.3rem; }
.info-icon {
  width: 38px; height: 38px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0; margin-top: 2px;
}
.info-text h5 { font-weight: 600; margin-bottom: 0.25rem; font-size: 0.86rem; color: var(--white); }
.info-text p { font-size: 0.86rem; color: rgba(255,255,255,0.5); line-height: 1.55; margin: 0; }

/* ==========================================================================
   08. PREISLISTE SPECIFIC COMPONENTS
   ========================================================================== */
.price-content {
  max-width: 900px; margin: 0 auto;
  padding: 3rem 2.5rem 6rem;
  display: flex; flex-direction: column; gap: 2.5rem;
}

.season-block {
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--gray-light);
}
.season-header {
  padding: 1.2rem 1.8rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.season-header.summer { background: var(--summer); color: var(--white); }
.season-header.winter { background: var(--navy-dark); color: var(--white); }
.season-icon { font-size: 1.5rem; }
.season-header-text { flex: 1; }
.season-header-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem; margin-bottom: 0.2rem; color: var(--white);
}
.season-header-text p { font-size: 0.82rem; opacity: 0.75; }
.season-weeks {
  background: rgba(255,255,255,0.15); border-radius: 100px;
  padding: 0.3rem 0.9rem; font-size: 0.78rem; font-weight: 600;
  white-space: nowrap;
}

.season-body { background: var(--white); padding: 1.8rem; }

/* Price Table Element */
.price-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.price-table:last-child { margin-bottom: 0; }

.price-table thead tr { border-bottom: 2px solid var(--gray-light); }
.price-table th {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--silver);
  padding: 0.6rem 1rem 0.6rem 0; text-align: left;
}
.price-table th:not(:first-child) { text-align: right; }

.price-table tbody tr { border-bottom: 1px solid var(--gray-light); transition: background 0.15s; }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: var(--off-white); }

.price-table td { padding: 0.85rem 1rem 0.85rem 0; font-size: 0.92rem; color: var(--black); vertical-align: middle; }
.price-table td:not(:first-child) { text-align: right; }

.td-label { font-weight: 500; }
.td-time { font-size: 0.8rem; color: var(--gray-mid); margin-top: 0.15rem; }

.price-main { font-family: "Playfair Display", serif; font-size: 1.2rem; color: var(--navy); font-weight: 700; }
.price-abo { font-size: 0.82rem; color: var(--gray-mid); }
.price-total { font-size: 0.75rem; color: var(--silver); display: block; margin-top: 0.1rem; }

.table-subheading {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy);
  padding: 1.2rem 0 0.4rem; display: block;
  border-top: 1px solid var(--silver-pale); margin-top: 0.5rem;
}
.table-subheading:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }

/* 10er Karte Highlight-Box */
.card-highlight {
  background: var(--summer-pale); border: 1.5px solid var(--summer);
  border-radius: 4px; padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 1.5rem;
}
.card-highlight-icon { font-size: 2rem; }
.card-highlight-text { flex: 1; }
.card-highlight-text h4 { font-family: "Playfair Display", serif; font-size: 1.1rem; margin-bottom: 0.25rem; }
.card-highlight-text p { font-size: 0.84rem; color: var(--gray-mid); line-height: 1.5; }
.card-highlight-price { text-align: right; }
.card-highlight-price .price-main { font-size: 1.6rem; color: var(--summer); }
.card-highlight-price small { font-size: 0.75rem; color: var(--gray-mid); display: block; }

.footnotes { background: var(--off-white); border-top: 1px solid var(--gray-light); padding: 1rem 1.8rem; display: flex; flex-direction: column; gap: 0.5rem; }
.footnote { font-size: 0.8rem; color: var(--gray-mid); display: flex; gap: 0.6rem; align-items: flex-start; line-height: 1.55; }
.footnote-icon { flex-shrink: 0; }

/* Call-To-Action (Abo / Buchen Booking Section) */
.booking-section { background: var(--navy-dark); border-radius: 6px; padding: 2.5rem; display: flex; flex-direction: column; gap: 2rem; }
.section-label-light {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--silver-light);
  display: flex; align-items: center; justify-content: center; gap: 0.7rem; margin-bottom: 0.8rem;
}
.section-label-light::before, .section-label-light::after { content: ''; display: block; width: 24px; height: 1px; background: var(--silver); }
.booking-section-title { font-family: "Playfair Display", serif; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 0.5rem; letter-spacing: -0.02em; text-align: center; }
.booking-section-sub { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 480px; margin: 0 auto; text-align: center; }

.contact-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.contact-option {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; padding: 1.3rem;
  display: flex; gap: 1rem; align-items: flex-start; text-decoration: none; color: var(--white); transition: background 0.2s, border-color 0.2s;
}
.contact-option:hover { background: rgba(255,255,255,0.1); border-color: var(--silver-light); }
.contact-option-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-option-body { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-option-body strong { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--silver-light); }
.contact-option-body span { font-size: 1rem; font-weight: 500; color: var(--white); }
.contact-option-body small { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

.or-divider { display: flex; align-items: center; gap: 1rem; color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.booking-form-wrap { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; padding: 2rem; }

/* ==========================================================================
   09. RECHTLICHES SPECIFIC COMPONENTS (Datenschutz & Impressum)
   ========================================================================== */
.dsg-content, .impressum-content {
  max-width: 860px; margin: 0 auto;
  padding: 3rem 2.5rem 6rem;
  display: flex; flex-direction: column; gap: 2.5rem;
}

.dsg-section, .imp-section {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px; overflow: hidden;
}

.dsg-section-header, .imp-section-header {
  background: var(--silver-pale); border-bottom: 1px solid var(--gray-light);
  padding: 0.9rem 1.5rem; display: flex; align-items: center; gap: 0.7rem;
}
.dsg-section-header { cursor: pointer; user-select: none; transition: background 0.2s; }
.dsg-section-header:hover { background: #dde3ed; }

.dsg-section-header h2, .imp-section-header h2 {
  font-family: "Playfair Display", serif; font-size: 1rem; font-weight: 700;
  color: var(--navy-dark); margin: 0; flex: 1;
}

.dsg-icon, .imp-icon { font-size: 1rem; }
.dsg-chevron { font-size: 0.8rem; color: var(--silver); transition: transform 0.3s; margin-left: auto; }
.dsg-section.open .dsg-chevron { transform: rotate(180deg); }

.dsg-body, .imp-body { padding: 1.5rem; }
.dsg-body { display: none; }
.dsg-section.open .dsg-body { display: block; }

.dsg-body p, .imp-body p { font-size: 0.92rem; color: var(--gray-mid); line-height: 1.8; margin-bottom: 0.9rem; }
.dsg-body p:last-child, .imp-body p:last-child { margin-bottom: 0; }
.dsg-body strong, .imp-body strong { color: var(--black); font-weight: 600; }
.dsg-body a, .imp-body a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
.dsg-body a:hover, .imp-body a:hover { color: var(--navy-dark); text-decoration: underline; }

.dsg-body h3 { font-family: "Playfair Display", serif; font-size: 0.95rem; font-weight: 700; color: var(--navy-dark); margin: 1.4rem 0 0.5rem; }
.dsg-body h3:first-child { margin-top: 0; }
.dsg-body ul { margin: 0.5rem 0 0.9rem 1.2rem; display: flex; flex-direction: column; gap: 0.35rem; }
.dsg-body ul li { font-size: 0.9rem; color: var(--gray-mid); line-height: 1.6; }

/* Grid für die Betroffenenrechte */
.rights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin: 0.8rem 0; }
.rights-item { background: var(--silver-pale); border-radius: 4px; padding: 0.9rem 1rem; border-left: 3px solid var(--navy); }
.rights-item strong { display: block; font-size: 0.85rem; color: var(--navy-dark); margin-bottom: 0.2rem; }
.rights-item span { font-size: 0.78rem; color: var(--gray-mid); line-height: 1.5; }

/* Grid für das Firmenimpressum */
.imp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.imp-item { display: flex; flex-direction: column; gap: 0.15rem; }
.imp-item dt { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--silver); }
.imp-item dd { font-size: 0.92rem; color: var(--black); font-weight: 400; }

/* Inhaltsverzeichnis (TOC) */
.toc { background: var(--white); border: 1px solid var(--gray-light); border-radius: 6px; padding: 1.5rem; }
.toc h3 { font-family: "Playfair Display", serif; font-size: 1rem; color: var(--navy-dark); margin-bottom: 1rem; }
.toc ol { margin-left: 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.toc ol li { font-size: 0.88rem; }
.toc ol li a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
.toc ol li a:hover { color: var(--navy-dark); text-decoration: underline; }

.last-updated { text-align: right; font-size: 0.78rem; color: var(--silver); padding-top: 0.5rem; }

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
footer {
  background: var(--black); color: rgba(255,255,255,0.35);
  padding: 2rem 2.5rem; font-size: 0.78rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
footer a { color: var(--silver); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--white); }
.footer-links { display: flex; gap: 1.5rem; }

/* ==========================================================================
   11. MEDIA QUERIES (Responsive Design / Mobile-First Overrides)
   ========================================================================== */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .partner-block { grid-template-columns: 1fr; gap: 2rem; }
  
  /* Das große Logo auf der Startseite wird für Tablets herunterskaliert */
  .hero-logo { width: 120px; height: 120px; top: 8.5rem; right: 2rem; } 
  
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 760px) {
  .gastro-block { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .contact-options { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 1.2rem; }
  .booking-section { padding: 1.5rem; }
}

@media (max-width: 640px) {
  .dsg-content, .impressum-content, .price-content { padding: 2rem 1.2rem 4rem; }
  nav { padding: 0.9rem 1.2rem; }
  .page-header { padding: 3rem 1.2rem 2rem; }
  .rights-grid, .imp-grid { grid-template-columns: 1fr; }
  .season-body { padding: 1.2rem; }
  .price-table th, .price-table td { padding: 0.75rem 0.5rem 0.75rem 0; font-size: 0.85rem; }
  .card-highlight { flex-direction: column; text-align: center; }
  .card-highlight-price { text-align: center; }
}

@media (max-width: 540px) {
  nav { padding: 0.9rem 1.2rem; }
  section { padding: 4rem 1.2rem; }
  h1 { font-size: 2.6rem; }
  
  .hero-content { 
    padding: 0 1.2rem 4rem; 
    display: block; 
    text-align: left; 
  }
  
  .hero-actions { justify-content: flex-start; }
  .hero-stats { gap: 1.5rem; justify-content: flex-start; }

  /* UX & Clean Mobile View: Das große schwebende Logo wird auf echten Handys ausgeblendet, 
     da es sich sonst mit der Überschrift beißt und bereits oben im Header fixiert sichtbar ist. */
  .hero-logo { 
    display: none; 
  }
}
