/* ========================================
   SCHLOSSBUCHTCAFÉ – Design System
   ======================================== */

/* ---------- Lokale Schriftarten (DSGVO-konform) ---------- */

/* Cormorant Garamond – 300 */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../../files/layout/fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2'),
       url('../../files/layout/fonts/cormorant-garamond-v21-latin-300.woff') format('woff');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('../../files/layout/fonts/cormorant-garamond-v21-latin-300italic.woff2') format('woff2'),
       url('../../files/layout/fonts/cormorant-garamond-v21-latin-300italic.woff') format('woff');
}

/* Cormorant Garamond – 400 (regular) */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../../files/layout/fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2'),
       url('../../files/layout/fonts/cormorant-garamond-v21-latin-regular.woff') format('woff');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../../files/layout/fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2'),
       url('../../files/layout/fonts/cormorant-garamond-v21-latin-italic.woff') format('woff');
}

/* Cormorant Garamond – 500 */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../../files/layout/fonts/cormorant-garamond-v21-latin-500.woff2') format('woff2'),
       url('../../files/layout/fonts/cormorant-garamond-v21-latin-500.woff') format('woff');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../../files/layout/fonts/cormorant-garamond-v21-latin-500italic.woff2') format('woff2'),
       url('../../files/layout/fonts/cormorant-garamond-v21-latin-500italic.woff') format('woff');
}

/* Cormorant Garamond – 600 */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../../files/layout/fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2'),
       url('../../files/layout/fonts/cormorant-garamond-v21-latin-600.woff') format('woff');
}

/* Cormorant Garamond – 700 */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../../files/layout/fonts/cormorant-garamond-v21-latin-700.woff2') format('woff2'),
       url('../../files/layout/fonts/cormorant-garamond-v21-latin-700.woff') format('woff');
}

/* Inter – 300 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../../files/layout/fonts/inter-v20-latin-300.woff2') format('woff2'),
       url('../../files/layout/fonts/inter-v20-latin-300.woff') format('woff');
}

/* Inter – 400 (regular) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../../files/layout/fonts/inter-v20-latin-regular.woff2') format('woff2'),
       url('../../files/layout/fonts/inter-v20-latin-regular.woff') format('woff');
}

/* Inter – 500 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../../files/layout/fonts/inter-v20-latin-500.woff2') format('woff2'),
       url('../../files/layout/fonts/inter-v20-latin-500.woff') format('woff');
}

/* Inter – 600 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../../files/layout/fonts/inter-v20-latin-600.woff2') format('woff2'),
       url('../../files/layout/fonts/inter-v20-latin-600.woff') format('woff');
}

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --color-gold: #D4A72C;
  --color-gold-light: #E8C44A;
  --color-gold-dark: #B08A1E;
  --color-primary: #1B2A3A;
  --color-primary-light: #2A3F55;
  --color-primary-dark: #0F1A26;
  --color-cream: #FAFAF5;
  --color-cream-warm: #F5F0E6;
  --color-white: #FFFFFF;
  --color-text: #2C2C2C;
  --color-text-light: #6B6B6B;
  --color-overlay: rgba(27, 42, 58, 0.6);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.03em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

p {
  font-size: 1.05rem;
  max-width: 70ch;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
  font-weight: 400;
}

.section-title {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: var(--space-sm);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--color-gold);
}

.gold-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: var(--space-md) auto;
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(27, 42, 58, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition-base);
  filter: brightness(0) invert(1);
}

.navbar.scrolled .nav-logo img {
  height: 45px;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  list-style: none !important;
}

.nav-links a {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--color-gold-light);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: translateY(0) scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(27, 42, 58, 0.4) 0%,
    rgba(27, 42, 58, 0.3) 50%,
    rgba(27, 42, 58, 0.6) 100%
  );
  z-index: -1;
}

.hero-content {
  color: var(--color-white);
  max-width: 800px;
  padding: var(--space-md);
  animation: heroFadeIn 1.2s ease-out;
}

.hero-logo {
  width: 160px;
  margin: 0 auto var(--space-md);
  filter: brightness(0) invert(1);
  animation: heroLogoFloat 3s ease-in-out infinite;
}

.hero h1 {
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--space-sm);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--color-gold-light);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold-light);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   WELCOME SECTION (Über uns)
   ======================================== */
.welcome {
  background: var(--color-white);
  text-align: center;
}

.welcome-content {
  max-width: 780px;
  margin: 0 auto;
}

.welcome-content .section-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.welcome-content p {
  margin: 0 auto var(--space-md);
  color: var(--color-text-light);
  font-size: 1.08rem;
  line-height: 1.85;
}

.welcome-content p:last-child {
  margin-bottom: 0;
}

/* ========================================
   OPENING HOURS SECTION
   ======================================== */
.hours {
  background: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.hours::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(212, 167, 44, 0.15);
  border-radius: 50%;
}

.hours::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(212, 167, 44, 0.1);
  border-radius: 50%;
}

.hours .section-title h2 {
  color: var(--color-white);
}

.hours-grid {
  max-width: 600px;
  margin: 0 auto;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--transition-fast);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.hours-day {
  font-weight: 500;
  font-size: 1.25rem;
}

.hours-time {
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
}

.hours-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-top: 2px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  background: var(--color-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-info {
  padding-top: var(--space-sm);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.contact-item:hover {
  background: rgba(212, 167, 44, 0.06);
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold-dark);
  margin-bottom: 0.3rem;
}

.contact-item p {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--color-gold);
}

/* Klickbarer Kontakt-Item (Reservierungen) */
.contact-item-link {
  cursor: pointer;
  text-decoration: none;
  border: 1.5px dashed rgba(212, 167, 44, 0.3);
  transition: background var(--transition-fast),
              border-color var(--transition-fast),
              transform var(--transition-fast);
}

.contact-item-link:hover {
  background: rgba(212, 167, 44, 0.1);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.contact-item-link p {
  color: var(--color-gold-dark);
  font-weight: 500;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- Map Consent (2-Klick DSGVO) ---------- */
.map-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, #f5f0e6, #e8e0d0);
  text-align: center;
  padding: var(--space-md);
}

.map-consent-icon svg {
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  opacity: 0.6;
  margin-bottom: var(--space-xs);
}

.map-consent-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.map-consent-text {
  font-size: 0.85rem;
  color: var(--color-text-light);
  max-width: 320px;
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.map-consent-text a {
  color: var(--color-gold-dark);
  text-decoration: underline;
}

.map-consent-btn {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 0.65rem 1.8rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base);
}

.map-consent-btn:hover {
  background: var(--color-gold-dark);
  transform: translateY(-1px);
}

/* ========================================
   CONTACT PAGE (Standalone kontakt.html)
   ======================================== */
.contact-page {
  padding-top: 120px;
  padding-bottom: var(--space-xl);
  min-height: 100vh;
  background: var(--color-cream);
}

.contact-page-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.contact-page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-sm);
}

.contact-page-header h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--color-gold);
}

.contact-page-subtitle {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-text-light);
  max-width: 600px;
  margin: var(--space-sm) auto 0;
}

.contact-form-centered {
  max-width: 680px;
  margin: 0 auto;
}

.contact-page .contact-form-wrapper {
  animation: none;
}

/* ---------- Contact Form ---------- */
.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 167, 44, 0.12);
}

.form-heading {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid rgba(212, 167, 44, 0.2);
  font-weight: 500;
}

/* Honeypot – unsichtbar */
.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

.contact-form {
  position: relative;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.form-group .required {
  color: var(--color-gold);
  font-weight: 600;
}

.form-group .optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-text-light);
  font-size: 0.8rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-cream);
  border: 1.5px solid rgba(27, 42, 58, 0.15);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              background var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 167, 44, 0.15);
  background: var(--color-white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-light);
  opacity: 0.6;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Zeichenzähler */
.char-count {
  display: block;
  text-align: right;
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 0.35rem;
  opacity: 0.7;
}

/* Datenschutz-Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
  accent-color: var(--color-gold);
  cursor: pointer;
}

.form-checkbox label {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--color-gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-checkbox label a:hover {
  color: var(--color-gold);
}

/* Submit-Button */
.form-submit {
  width: 100%;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-sm);
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  box-shadow: 0 4px 20px rgba(212, 167, 44, 0.35);
  transform: translateY(-1px);
}

.form-submit:active {
  transform: translateY(0);
}

.form-submit.loading {
  pointer-events: none;
  opacity: 0.85;
}

.form-submit.loading .btn-text {
  opacity: 0;
}

.form-submit.loading .btn-spinner {
  opacity: 1;
}

.btn-spinner {
  position: absolute;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-spinner svg {
  width: 24px;
  height: 24px;
  animation: spinRotate 1s linear infinite;
}

@keyframes spinRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Validierungsfehler */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-error-message {
  color: #C0392B;
  font-size: 0.78rem;
  margin-top: 0.35rem;
  display: none;
}

.form-group.has-error .form-error-message {
  display: block;
}

/* ---------- Toast Notification ---------- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transform: translateX(calc(100% + 3rem));
  transition: transform var(--transition-smooth);
  z-index: 9999;
  max-width: 420px;
  border-left: 4px solid var(--color-gold);
}

.toast.visible {
  transform: translateX(0);
}

.toast.toast-success {
  border-left-color: #27AE60;
}

.toast.toast-error {
  border-left-color: #C0392B;
}

.toast-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
}

.toast-success .toast-icon {
  background: #27AE60;
}

.toast-success .toast-icon::after {
  content: '✓';
}

.toast-error .toast-icon {
  background: #C0392B;
}

.toast-error .toast-icon::after {
  content: '✕';
}

.toast-message {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.4;
  margin: 0;
}

.toast-close {
  flex-shrink: 0;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--color-text-light);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color var(--transition-fast);
}

.toast-close:hover {
  color: var(--color-text);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-logo img {
  height: 50px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-logo img:hover {
  opacity: 1;
}

.footer-links {
  display: flex;
  gap: var(--space-md);
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold-light);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  margin-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   IMPRESSUM / DATENSCHUTZ PAGES
   ======================================== */
.legal-page {
  padding-top: 120px;
  min-height: 100vh;
  background: var(--color-cream);
}

.legal-page #main .container {
  max-width: 800px;
}

.legal-page #main h1 {
  margin-bottom: var(--space-lg);
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-page #main h2 {
  font-size: 1.5rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.legal-page #main h3 {
  font-size: 1.2rem;
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.legal-page #main p {
  margin-bottom: var(--space-sm);
  color: var(--color-text-light);
  max-width: 100%;
}

.legal-page #main a {
  color: var(--color-gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page #main a:hover {
  color: var(--color-gold);
}

.legal-page #main ul {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  list-style: disc;
}

.legal-page #main li {
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.legal-nav {
  background: var(--color-primary);
}

.legal-nav .nav-logo img {
  filter: brightness(0) invert(1);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 350px;
    min-height: unset;
  }


  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(27, 42, 58, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: var(--space-lg);
    transition: right var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 0.8rem 0;
  }

  .hamburger {
    display: flex;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .section {
    padding: var(--space-lg) 0;
  }

  .hero {
    min-height: 500px;
  }

  .hero-logo {
    width: 120px;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .hours-grid {
    padding: 0 var(--space-sm);
  }

  .hours-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 0.8rem 0;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-map {
    height: 280px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 1.25rem;
  }

  .toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

/* Small mobile */
@media (max-width: 380px) {
  :root {
    font-size: 14px;
  }

  .container {
    padding: 0 var(--space-sm);
  }
}

/* ========================================
   CONTAO COMPATIBILITY STYLES
   ======================================== */
.contact-page form,
.contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-page .widget,
.contact-form .widget {
  margin-bottom: 1.25rem;
}
.contact-page .widget label,
.contact-form .widget label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.contact-page .widget .required,
.contact-form .widget .required {
  color: var(--color-gold);
  font-weight: 600;
}
.contact-page .widget input[type="text"],
.contact-page .widget input[type="email"],
.contact-page .widget input[type="tel"],
.contact-page .widget select,
.contact-page .widget textarea,
.contact-form .widget input[type="text"],
.contact-form .widget input[type="email"],
.contact-form .widget input[type="tel"],
.contact-form .widget select,
.contact-form .widget textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-cream);
  border: 1.5px solid rgba(27, 42, 58, 0.15);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              background var(--transition-fast);
  outline: none;
}
.contact-page .widget input:focus,
.contact-page .widget select:focus,
.contact-page .widget textarea:focus,
.contact-form .widget input:focus,
.contact-form .widget select:focus,
.contact-form .widget textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 167, 44, 0.15);
  background: var(--color-white);
}
.contact-page .widget select,
.contact-form .widget select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}
.contact-page .widget textarea,
.contact-form .widget textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.contact-page .widget.widget-submit,
.contact-form .widget.widget-submit {
  margin-top: var(--space-sm);
}
.contact-page .widget button[type="submit"],
.contact-page .widget input[type="submit"],
.contact-page .widget .submit,
.contact-form .widget button[type="submit"],
.contact-form .widget input[type="submit"],
.contact-form .widget .submit {
  width: 100%;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-page .widget button[type="submit"]:hover,
.contact-page .widget input[type="submit"]:hover,
.contact-page .widget .submit:hover,
.contact-form .widget button[type="submit"]:hover,
.contact-form .widget input[type="submit"]:hover,
.contact-form .widget .submit:hover {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  box-shadow: 0 4px 20px rgba(212, 167, 44, 0.35);
  transform: translateY(-1px);
}
.contact-page .widget.privacy fieldset,
.contact-form .widget.privacy fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.contact-page .widget.privacy fieldset span,
.contact-form .widget.privacy fieldset span {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.contact-page .widget.privacy input[type="checkbox"],
.contact-form .widget.privacy input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
  accent-color: var(--color-gold);
  cursor: pointer;
}
.contact-page .widget.privacy label,
.contact-form .widget.privacy label {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.5;
  cursor: pointer;
}
.contact-page .widget.privacy label a,
.contact-form .widget.privacy label a {
  color: var(--color-gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-page .widget.privacy label a:hover,
.contact-form .widget.privacy label a:hover {
  color: var(--color-gold);
}
.contact-page .widget.privacy legend,
.contact-form .widget.privacy legend {
  display: none;
}

/* Form Row Grid Layout for Email & Phone in Contao */
@media (min-width: 641px) {
  .contact-page form .formbody,
  .contact-form form .formbody {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
  }
  .contact-page .widget,
  .contact-form .widget {
    grid-column: 1 / -1;
  }
  .contact-page .widget.email,
  .contact-form .widget.email {
    grid-column: 1 / 2;
  }
  .contact-page .widget.phone,
  .contact-form .widget.phone {
    grid-column: 2 / 3;
  }
}

