/* ═══════════════════════════════════════════════════════════
   CSS-VARIABLEN
═══════════════════════════════════════════════════════════ */
:root {
  --accent:        #d4849a;
  --accent-light:  #f7e4e9;
  --accent-dark:   #b8607a;
  --bg:            #fafafa;
  --bg-tinted:     #fdf4f6;
  --text:          #2c2c2c;
  --text-subtle:   #888;
  --border:        #e8dde0;
  --white:         #ffffff;
  --radius:        12px;
  --radius-sm:     6px;
  --shadow:        0 2px 16px rgba(212, 132, 154, 0.10);
  --shadow-hover:  0 6px 28px rgba(212, 132, 154, 0.22);
  --font:          'Segoe UI', system-ui, -apple-system, sans-serif;
  --max-width:     1100px;
  --nav-height:    64px;
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

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

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--accent); }

ul { list-style: none; }

/* ═══════════════════════════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════════════════════════ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--tinted {
  background: var(--bg-tinted);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-top: 10px;
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-subtle);
  margin-top: 16px;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.accent { color: var(--accent-dark); }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover {
  background: var(--accent-light);
  color: var(--accent-dark);
}

/* Burger (mobile) */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%);
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  flex-shrink: 0;
}

.hero-portrait {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-hover);
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-subtle);
  margin-bottom: 36px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--white);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(212, 132, 154, 0.35);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 132, 154, 0.45);
}

/* ═══════════════════════════════════════════════════════════
   ÜBER MICH
═══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.about-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent-dark);
}

.about-card--full {
  grid-column: 1 / -1;
}

/* Fakten-Liste */
.fact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fact-list li {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--accent-light);
  padding-bottom: 10px;
}

.fact-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fact-label {
  font-weight: 600;
  min-width: 100px;
  color: var(--text-subtle);
  font-size: 0.85rem;
  padding-top: 2px;
}

/* Tags */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.about-text {
  color: var(--text-subtle);
  font-size: 0.97rem;
  line-height: 1.75;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   GALERIE / KARUSSELL
═══════════════════════════════════════════════════════════ */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 16px auto 0;
  max-width: 1000px;
}

.carousel-track-outer {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  aspect-ratio: 3 / 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(44, 44, 44, 0.7));
  color: var(--white);
  padding: 32px 24px 20px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0 0 var(--radius) var(--radius);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover:not(:disabled) {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.carousel-btn--prev { left: 12px; }
.carousel-btn--next { right: 12px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.carousel-dot:hover { background: var(--accent); }

.carousel-dot--active {
  background: var(--accent);
  transform: scale(1.3);
}

.carousel-error {
  padding: 40px;
  text-align: center;
  color: var(--text-subtle);
}

/* ═══════════════════════════════════════════════════════════
   VIDEO
═══════════════════════════════════════════════════════════ */
.video-wrap {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.video-wrap video {
  width: 100%;
  display: block;
  background: #000;
}

.video-placeholder {
  background: var(--accent-light);
  border: 2px dashed var(--accent);
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder-inner {
  text-align: center;
  color: var(--accent-dark);
  padding: 32px;
}

.video-placeholder-inner svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  opacity: 0.6;
}

.video-placeholder-inner p {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.video-hint {
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  color: var(--text-subtle);
  line-height: 1.7;
}

.video-hint code {
  background: var(--white);
  padding: 1px 6px;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: 0.9em;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER / KONTAKT
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--text);
  color: var(--white);
  padding: 64px 0 40px;
  text-align: center;
}

.footer-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-subtitle {
  color: #aaa;
  margin-bottom: 28px;
}

.contact-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 28px;
  padding: 14px 32px;
  background: rgba(212, 132, 154, 0.15);
  color: var(--accent-light);
  border: 1px solid rgba(212, 132, 154, 0.3);
  border-radius: 30px;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.contact-toggle:hover {
  background: rgba(212, 132, 154, 0.25);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.contact-toggle-icon {
  font-size: 1.2rem;
}

.contact-toggle-chevron {
  font-size: 1.3rem;
  transition: transform 0.3s;
}

.contact-toggle[aria-expanded="true"] .contact-toggle-chevron {
  transform: rotate(90deg);
}

.contact-collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.contact-collapsible--open {
  max-height: 500px;
  opacity: 1;
}

.contact-form {
  max-width: 480px;
  margin: 0 auto 40px;
  text-align: left;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #ccc;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 132, 154, 0.18);
}

.form-row textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  margin-top: 6px;
}

.footer-copy {
  color: #666;
  font-size: 0.85rem;
  border-top: 1px solid #3a3a3a;
  padding-top: 24px;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Nav */
  .nav-burger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .nav-links--open { display: flex; }

  .nav-links a {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    width: 100%;
  }

  /* Hero */
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 36px;
    padding: 40px 24px 60px;
  }

  .hero-portrait {
    width: 180px;
    height: 180px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-card--full {
    grid-column: 1;
  }

  /* Carousel */
  .carousel-btn--prev { left: 6px; }
  .carousel-btn--next { right: 6px; }

  /* Footer */
  .contact-form { padding: 0 8px; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
}
