/* ===== Reset & Basics ===== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

:root{
  --bg: #f5f6f8;
  --text: #101827;
  --muted: #6b7280;

  --band1: #edf3ff;   /* Künstler */
  --band2: #edfdf3;   /* Veranstaltungsart */
  --band3: #fff0e9;   /* Anfrage */

  --card: #ffffff;
  --border: #e5e7eb;

  --radius: 16px;
  --shadow: 0 18px 40px rgba(17,24,39,.08);

  --maxw: 960px;
  --formw: 520px;
  --leadw: 700px;
}

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  text-align: center;
}

/* ===== Header ===== */
.header{
  padding: 48px 20px 28px;
}
.header h1{
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 1rem + 2.4vw, 2.6rem);
}
.header .lead{
  margin: 0 auto;
  max-width: var(--leadw);
  color: var(--muted);
}

/* ===== Sections ===== */
.section{
  width: 100%;
  padding: 56px 20px;
}
.section.artists{ background: var(--band1); }
.section.venue{ background: var(--band2); }
.section.request{ background: var(--band3); }
.section.special{ background: #fff; }
.section.testimonials{ background: #fff; }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
}

/* ===== Option Cards ===== */
.list{
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.option{
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
  padding: 14px 16px;
  transition: border .2s, background .2s, box-shadow .2s, transform .2s;
}

.option:hover{
  background: #f8fbff;
  border-color: #cfd7e3;
  box-shadow: 0 10px 26px rgba(17,24,39,.08);
  transform: translateY(-1px);
}

.option-row{
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
}

.option input{
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.option-title{
  font-weight: 700;
}

.option-sub{
  color: var(--muted);
  font-weight: 500;
  margin-left: 6px;
}

.option-desc{
  margin-top: 4px;
  font-size: 0.95rem;
  color: #4b5563;
}

.option-links{
  margin-top: 6px;
}

.option-links a{
  font-size: 0.9rem;
  color: #2563eb;
  text-decoration: none;
}
.option-links a:hover{
  text-decoration: underline;
}

/* ===== Formular ===== */
form{
  display: grid;
  gap: 14px;
  justify-items: center;
  margin-top: 18px;
}

.form-field{
  width: 100%;
  max-width: var(--formw);
  text-align: left;
}

label{
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

input[type="text"],
input[type="tel"],
input[type="date"],
input[type="time"],
textarea{
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  font-size: 1rem;
}

textarea{
  min-height: 110px;
  resize: vertical;
}

button{
  margin-top: 6px;
  background: #111827;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(17,24,39,.15);
}
button:hover{
  background: #0b1220;
}

/* ===== Text Section ===== */
.section.special p{
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  font-size: 1rem;
}

/* =========================
   VIDEO SECTION – FIX & STABIL
   ========================= */

.section.testimonials .container{
  max-width: var(--maxw);
}

.video-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
  align-items: start;
}

@media (max-width: 900px){
  .video-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px){
  .video-grid{ grid-template-columns: 1fr; }
}

.video-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  box-shadow: var(--shadow);
  text-align: left;
}

.video-card strong{
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-weight: 700;
}

.video-embed{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 10px;
}

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

.soft-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: #111827;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.soft-link:hover {
  transform: translateY(-1px);
}

.soft-link:active {
  transform: translateY(0);
  box-shadow: none;
}

.soft-link:focus-visible {
  outline: 3px solid rgba(17, 24, 39, 0.25);
  outline-offset: 2px;
}
