/* Modernes Stylesheet im Look des ASS-Logos (Lila–Gold) */
:root {
  --brand: #6b21a8;     /* Hauptfarbe: Lila */
  --brand-light: #9333ea; /* heller Verlaufston */
  --accent: #fbbf24;    /* Goldgelb-Akzent */
  --text: #1e1b4b;      /* Dunkles Violett-Anthrazit */
  --bg: #faf5ff;        /* Sehr helles Lila/Beige */
  --surface: #ffffff;
  --border: #e5e7eb;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}
a:hover {
  color: var(--accent);
  text-decoration: underline;
}

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

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

/
/* --- Kopfzeile / Navigation --- */
.topbar {
  background: var(--surface);
  border-bottom: 3px solid var(--brand);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;                /* Abstand zwischen Logo und Text */
  padding: .5rem 0;
}

.brand-link {
  display: flex;
  align-items: center;      /* Logo und Text vertikal mittig */
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  height: 65px;             /* Logo GRÖSSER gemacht (war 40–50px) */
  width: auto;
  border-radius: 8px;
  display: block;
}

.brand-text strong {
  font-size: 1.25rem;       /* Haupttext etwas größer */
  color: var(--brand);
  font-weight: 700;
}

.brand-text small {
  font-size: 0.9rem;        /* Untertitel kleiner und dezent */
  color: #5b21b6;           /* leicht helleres Lila */
}

.logo {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 2px 6px rgba(107, 33, 168, 0.3);
}

.brand-text strong {
  color: var(--brand);
}

.nav a {
  margin-left: 1rem;
  padding: .75rem .25rem;
  display: inline-block;
  font-weight: 500;
}
.nav a:hover {
  color: var(--accent);
}

/* --- Hero-Bereich --- */
.hero {
  background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 50%, #fff 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 2px solid var(--brand);
}

.hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: .75rem;
  font-weight: 800;
  color: var(--brand);
}

.lead {
  font-size: 1.15rem;
  max-width: 60ch;
  margin: 0 auto;
  color: var(--text);
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: .75rem;
  margin: 1.5rem 0 0;
}

.btn {
  display: inline-block;
  border: 2px solid var(--brand);
  padding: .75rem 1.25rem;
  border-radius: .65rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 3px 8px rgba(107, 33, 168, 0.3);
}
.btn.primary:hover {
  opacity: 0.9;
}
.btn.ghost {
  background: #fff;
  color: var(--brand);
}
.btn.ghost:hover {
  background: var(--brand);
  color: #fff;
}

/* --- Allgemeine Layouts --- */
.section {
  padding: 3rem 0;
}
.section.alt {
  background: #fff;
}

h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: var(--brand);
  border-left: 6px solid var(--accent);
  padding-left: .5rem;
  margin-bottom: 1.25rem;
}
h3 {
  color: var(--brand);
  margin-top: 0;
}

.grid {
  display: grid;
  gap: 1rem;
}
.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 800px) {
  .grid.two,
  .grid.three { grid-template-columns: 1fr; }
  .nav { display: none; }
}

/* --- Karten & Elemente --- */
.card {
  background: #fff;
  border: 1px solid #e9d5ff;
  border-radius: .75rem;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(107, 33, 168, 0.08);
}
.card.note {
  background: #fefce8;
  border-color: #fde68a;
}
.ticks li {
  list-style: "✓ ";
  color: var(--brand);
  margin-bottom: .25rem;
}

/* --- Kontakt --- */
.contact a {
  font-weight: 600;
  color: var(--brand);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .7rem;
  border: 1px solid #ddd6fe;
  border-radius: .5rem;
}
.contact-form button {
  margin-top: .75rem;
  background: var(--brand);
  color: #fff;
  border: none;
  padding: .75rem 1.25rem;
  border-radius: .5rem;
  cursor: pointer;
}
.contact-form button:hover {
  background: var(--accent);
  color: #000;
}

/* --- Footer --- */
.footer {
  background: var(--brand);
  color: #fef9c3;
  padding: 2rem 0;
  margin-top: 3rem;
}
.footer a {
  color: #fef9c3;
}
.footer .grid {
  align-items: center;
}
.footer .rightlinks {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* === Video-Sektion === */
.video-gallery {
  display: grid;
  gap: 1.5rem;
  /* 1 Spalte auf Handy, 2 auf Tablet, 3 auf Desktop */
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .video-gallery { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .video-gallery { grid-template-columns: 1fr 1fr 1fr; }
}

.video-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.video-16x9 {
  /* moderne, saubere Lösung */
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #f3f4f6;
  position: relative;
}

.video-16x9 iframe,
.video-16x9 video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-title {
  font-size: 1.05rem;
  margin: 0.9rem 1rem 0.25rem;
}

.video-desc {
  margin: 0 1rem 1rem;
  color: #4b5563;
  line-height: 1.5;
}

/* Optional: leichte Hover-Interaktion */
.video-card:hover {
  transform: translateY(-2px);
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 28px rgba(0,0,0,0.09);
}
