@import url('https://fonts.googleapis.com/css2?family=Anton&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --bg: #D8DEE3;
  --nav-text: #2A5399;
  --nav-hover: #3D9BE9;
  --heading: #2A5399;
  --heading-dark: #164172;
  --body-text: #333;
  --footer-bg: #1B3869;
  --footer-text: #fff;
  --footer-link: #7EBAEB;
  --white: #fff;
  --accent: #3D7BB8;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--bg);
  color: var(--body-text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── HEADER / NAV ── */

header {
  background-color: var(--bg);
  border-bottom: 1px solid #c5cdd5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}

nav ul li {
  position: relative;
}

nav ul li a {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--nav-text);
  text-decoration: none;
  padding: 8px 10px;
  display: block;
  white-space: nowrap;
  transition: color 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--nav-hover);
}

/* Dropdown */
nav ul li.has-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
}

nav ul li .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  min-width: 220px;
  z-index: 100;
}

nav ul li:hover .dropdown {
  display: block;
}

nav ul li .dropdown a {
  font-size: 13px;
  padding: 10px 16px;
  color: var(--nav-text);
  border-bottom: 1px solid #eee;
}

nav ul li .dropdown a:hover {
  background: #f0f4f8;
  color: var(--nav-hover);
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--nav-text);
}

/* ── MAIN CONTENT ── */

main {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 24px;
}

.page-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 0.12em;
  color: var(--heading);
  text-transform: uppercase;
  margin-bottom: 32px;
  line-height: 1.1;
}

h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-dark);
  margin: 24px 0 12px;
}

p {
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ── STARTSEITE ── */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.hero-text h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: 0.06em;
  color: var(--heading);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-text p {
  font-size: 15px;
  line-height: 1.75;
}

.hero-logo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-logo img {
  max-width: 160px;
}

.news-section {
  margin: 0 0 48px;
}

.news-heading {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: var(--heading);
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: start;
}

.news-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.news-text p {
  font-size: 14px;
}

/* Gallery / photo slider */
.gallery-section {
  background: #2a2a2a;
  padding: 40px 0;
  margin: 48px -24px;
  overflow: hidden;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 8px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.photo-credit {
  color: #aaa;
  font-size: 12px;
  text-align: center;
  margin-top: 12px;
}

/* Anfahrt section */
.anfahrt-section {
  margin: 48px 0;
  text-align: center;
}

.anfahrt-section h2 {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  letter-spacing: 0.15em;
  color: var(--heading);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.anfahrt-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.anfahrt-btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 2px;
  transition: background 0.2s;
}

.anfahrt-btn:hover {
  background: var(--heading-dark);
}

/* Sponsor section */
.sponsor-section {
  text-align: center;
  margin: 40px 0;
  padding: 32px;
  background: var(--white);
  border-radius: 4px;
}

.sponsor-section p {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
}

.sponsor-section img {
  max-height: 80px;
  width: auto;
}

/* ── SPIELTERMINE ── */

.spieltermine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.termine-table {
  background: var(--white);
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.termine-table h3 {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--heading);
  margin-bottom: 16px;
}

.termin-row {
  display: grid;
  grid-template-columns: 26px 90px 90px 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  align-items: center;
}

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

.termin-day {
  font-weight: 700;
  color: var(--heading);
}

.termin-special {
  font-style: italic;
  color: var(--accent);
}

.ticket-box {
  background: var(--white);
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
}

.ticket-box img {
  max-width: 200px;
  margin-bottom: 16px;
}

.ticket-box p {
  font-size: 13px;
  color: #555;
}

.ticket-box .ticket-note {
  font-size: 12px;
  color: #888;
  margin-top: 12px;
}

/* ── KLEINES THEATER ── */

.theater-content {
  max-width: 900px;
}

.theater-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 24px 0;
  align-items: start;
}

.theater-grid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.highlight-link {
  color: #d63a00;
  font-weight: 600;
}

/* ── KONTAKT ── */

.kontakt-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  background: var(--white);
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  max-width: 1000px;
}

.kontakt-info h2 {
  margin-bottom: 16px;
}

.kontakt-info p {
  font-size: 14px;
  line-height: 1.8;
}

.kontakt-info a {
  color: var(--accent);
  text-decoration: none;
}

.kontakt-form h2 {
  font-size: 26px;
  font-weight: 400;
  color: #555;
  margin-bottom: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group input,
.form-group textarea {
  border: 1px solid #ccc;
  border-radius: 2px;
  padding: 10px 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  height: 180px;
  resize: vertical;
}

.form-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #555;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}

.btn-send {
  display: inline-block;
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 16px;
  align-self: flex-end;
}

.btn-send:hover {
  background: var(--heading-dark);
}

/* ── ÜBER UNS / DROPDOWN PAGES ── */

.ueber-uns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
}

.ueber-card {
  background: var(--white);
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.ueber-card a {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--heading);
  text-transform: uppercase;
  text-decoration: none;
}

.ueber-card a:hover {
  color: var(--nav-hover);
}

/* ── GESCHICHTE ── */

.geschichte-content {
  max-width: 800px;
}

.geschichte-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ── ARCHIV / FOTOALBEN ── */

.archiv-note {
  font-size: 15px;
  color: #666;
  font-style: italic;
}

/* ── IMPRESSUM ── */

.impressum-content {
  max-width: 800px;
  background: var(--white);
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.impressum-content h1 {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  letter-spacing: 0.1em;
  color: var(--heading);
  margin-bottom: 24px;
}

.impressum-content h2 {
  font-size: 18px;
  margin: 20px 0 8px;
}

.impressum-content p {
  font-size: 14px;
  line-height: 1.7;
}

/* ── FOOTER ── */

footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 48px 24px 24px;
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--footer-link);
  margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  line-height: 1.8;
  display: block;
}

.footer-col a:hover {
  color: var(--footer-link);
}

.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-block;
}

.social-icons img {
  width: 36px;
  height: 36px;
  border-radius: 4px;
}

.footer-logo img {
  max-height: 90px;
  width: auto;
}

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ── RESPONSIVE ── */

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .spieltermine-grid { grid-template-columns: 1fr; }
  .theater-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .ueber-uns-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav ul { display: none; }
  nav ul.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-top: 1px solid #c5cdd5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  .menu-toggle { display: block; }
  .kontakt-wrapper { grid-template-columns: 1fr; padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
