:root {
  --green: #0f3d2e;
  --green-light: #1f6f52;
  --gold: #d6a84f;
  --cream: #f8f4ea;
  --dark: #1e1e1e;
  --muted: #666;
  --white: #ffffff;
  --orange: #F4A11A;
}

@font-face {
  font-family: 'OldLondon';
  src: url('OldLondon.ttf') format('truetype');
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* HEADER */
header {
  position: relative;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  border-bottom: 4px solid var(--orange);
  box-shadow:
    0 12px 35px rgba(0,0,0,0.35),
    0 0 12px rgba(244,161,26,0.25);
}

.subpage-hero {
  flex: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* NAVIGATION */
nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 20px;
  z-index: 999;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-title {
  color: var(--gold);
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
}

.nav-links a {
  color: #f5d27a;
  font-weight: 700;
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* HERO */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.hero-heading {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.title-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  min-width: 0;
}

.title-main {
  text-align: center;
}

.title-logo {
  width: clamp(90px, 12vw, 180px);
  height: auto;
  align-self: center;
}

h1 {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.old-english,
.old-english-kings {
  font-family: 'OldLondon', cursive;
  color: #d6a84f;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 0.95;
}

.old-english {
  text-shadow: 0 3px 10px rgba(0,0,0,0.35);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 26px;
  background: rgba(214,168,79,0.12);
  color: var(--gold);
  border: 1px solid rgba(214,168,79,0.6);
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow:
    0 0 12px rgba(214,168,79,0.25),
    inset 0 0 6px rgba(214,168,79,0.15);
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-top: 16px;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #d6a84f, #f4c96b);
  color: #1e1e1e;
  border: none;
  box-shadow:
    0 6px 18px rgba(0,0,0,0.3),
    0 0 12px rgba(214,168,79,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}

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

/* STANDARD LAYOUT */
section {
  padding: 76px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  color: var(--green);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-intro {
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 34px;
  font-size: 1.08rem;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.card {
  background: var(--white);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.07);
  border: 1px solid rgba(15,61,46,0.08);
}

.card h3 {
  color: var(--green);
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.card p,
.card li {
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: stretch;
}

.image-box {
  font-family: 'OldLondon', cursive;
  font-size: clamp(3.2rem, 13vw, 5rem);
  font-weight: bold;
  background: var(--green);
  color: #d6a84f;
  text-shadow: 0 3px 10px rgba(0,0,0,0.35);
  min-height: 340px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  box-shadow:
    0 12px 30px rgba(0,0,0,0.2),
    0 0 20px rgba(214,168,79,0.2);
}

/* KONTAKT */
.contact-box {
  background: var(--green);
  color: var(--white);
  border-radius: 28px;
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.contact-box h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.contact-box p {
  color: #e9e9e9;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 28px;
  background: rgba(0,0,0,0.88);
  z-index: 99999;
  touch-action: manipulation;
}

.lightbox.active {
  display: flex;
}

/* FOOTER */
footer {
  background: #0b2e23;
  color: var(--white);
  padding: 34px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #d8d8d8;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

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

header.section-title,
header.section-intro {
  color: var(--gold);
}

.card {
  background: #ffffff;
  color: var(--dark);
}

.card p,
.card li {
  color: var(--muted);
}

/* BUTTON FIX - gegen Überschreibungen aus banner.css */
a.btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

a.btn-primary,
.btn-primary {
  background: linear-gradient(135deg, #d6a84f, #f4c96b);
  color: #1e1e1e;
  border: none;
  box-shadow:
    0 6px 18px rgba(0,0,0,0.3),
    0 0 12px rgba(214,168,79,0.35);
}

a.btn-secondary,
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 999px;
}

a.btn:hover,
.btn:hover {
  transform: translateY(-2px);
}

.banner {
  width: 100%;
  background: #111;
  color: white;
  padding: 10px;
  overflow: hidden;
  text-align: center;
  font-weight: bold;
}

.banner-slide-text {
  display: inline-block;
}

.slide-in {
  animation: slideIn 0.3s forwards;
}

.slide-out {
  animation: slideOut 0.3s forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}
