/* ============================================
   VOLL GUT DRAUF – style.css
   Firmenfarbe: #990000
   ============================================ */

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

:root {
  --red: #990000;
  --red-light: #b30000;
  --red-pale: #fdf0f0;
  --beige: #fdf6f0;
  --gray: #555;
  --light: #f5f5f5;
  --white: #fff;
  --dark: #222;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--dark); line-height: 1.7; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.btn { display: inline-block; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.2s; }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-light); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--red); color: var(--red); background: transparent; }
.btn-outline:hover { background: var(--red); color: var(--white); }
.btn-white { background: var(--white); color: var(--red); font-weight: 700; }
.btn-white:hover { background: var(--beige); }

/* HEADER */
.header { background: var(--red); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.logo { display: flex; flex-direction: column; }
.logo-text { font-size: 1.6rem; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.logo-heart { color: #ffcccc; font-size: 1.8rem; }
.logo-sub { font-size: 0.6rem; color: rgba(255,255,255,0.85); letter-spacing: 2px; text-transform: uppercase; margin-top: -4px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav ul { display: flex; gap: 24px; }
.nav ul a { color: rgba(255,255,255,0.9); font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.nav ul a:hover { color: var(--white); }
.burger { display: none; background: none; border: none; color: white; font-size: 1.6rem; cursor: pointer; }
.mobile-nav { display: none; flex-direction: column; gap: 12px; padding: 16px 24px; background: var(--red-light); }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: white; font-size: 1rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.2); }

/* HERO */
.hero { background: var(--beige); padding: 80px 0; }
.hero-inner { display: flex; align-items: center; gap: 60px; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 2.8rem; font-weight: 800; color: var(--red); line-height: 1.2; margin-bottom: 20px; }
.hero-text p { font-size: 1.1rem; color: var(--gray); margin-bottom: 32px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { flex: 0 0 280px; display: flex; justify-content: center; }
.hero-circle { width: 260px; height: 260px; background: var(--red); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; text-align: center; box-shadow: 0 8px 40px rgba(153,0,0,0.3); }
.hero-icon { font-size: 3rem; margin-bottom: 12px; }
.hero-circle p { font-size: 1rem; line-height: 2; font-weight: 500; }

/* SECTIONS */
.section { padding: 70px 0; }
.bg-white { background: var(--white); }
.bg-light { background: var(--light); }
.bg-red { background: var(--red); color: white; }
.bg-beige { background: var(--beige); }
.section-title { font-size: 2rem; font-weight: 800; color: var(--red); text-align: center; margin-bottom: 12px; }
.bg-red .section-title { color: white; }
.section-sub { text-align: center; color: var(--gray); margin-bottom: 48px; font-size: 1.05rem; }
.bg-red .section-sub { color: rgba(255,255,255,0.8); }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px 24px; border-top: 4px solid var(--red); transition: transform 0.2s; }
.card:hover { transform: translateY(-4px); }
.card-icon { font-size: 2.4rem; margin-bottom: 16px; }
.card h3 { font-size: 1.2rem; color: var(--red); margin-bottom: 12px; font-weight: 700; }
.card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 16px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tag { background: var(--red-pale); color: var(--red); font-size: 0.78rem; padding: 4px 12px; border-radius: 50px; font-weight: 600; }
.card-link { color: var(--red); font-weight: 700; font-size: 0.9rem; }
.card-link:hover { text-decoration: underline; }

/* METHODEN GRID */
.methoden-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.methode-item { background: white; border-radius: var(--radius); padding: 20px 12px; text-align: center; box-shadow: var(--shadow); }
.methode-icon { font-size: 1.8rem; margin-bottom: 8px; }
.methode-item span { font-size: 0.82rem; color: var(--gray); font-weight: 600; }

/* ÜBER MICH TEASER */
.about-teaser { display: flex; align-items: center; gap: 60px; }
.about-img-placeholder { flex: 0 0 220px; }
.img-circle { width: 220px; height: 220px; border-radius: 50%; background: var(--red-pale); border: 4px solid var(--red); display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1rem; font-weight: 600; }
.about-text h2 { font-size: 1.8rem; color: var(--red); margin-bottom: 16px; }
.about-text p { color: var(--gray); margin-bottom: 12px; }

/* KONTAKT TEASER */
.kontakt-teaser { display: flex; align-items: flex-start; gap: 60px; }
.kontakt-info h2 { font-size: 1.8rem; margin-bottom: 20px; }
.kontakt-info p { margin-bottom: 10px; font-size: 1rem; opacity: 0.9; }
.kontakt-info .btn { margin-top: 20px; }
.qr-codes { display: flex; gap: 32px; }
.qr-box { text-align: center; color: white; }
.qr-img { width: 130px; height: 130px; border-radius: 8px; margin: 0 auto 12px; display: block; }
.qr-placeholder { width: 130px; height: 130px; background: white; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--red); font-weight: 700; margin: 0 auto 12px; }
.qr-box strong { display: block; font-size: 1rem; letter-spacing: 2px; margin-bottom: 6px; }
.qr-box p { font-size: 0.82rem; opacity: 0.85; line-height: 1.5; }

/* FOOTER */
.footer { background: #222; color: white; padding: 32px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; flex-direction: column; gap: 4px; }
.logo-text-small { font-size: 1.2rem; font-weight: 800; color: #ffcccc; }
.footer-logo span:last-child { font-size: 0.8rem; opacity: 0.6; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-links a:hover { color: white; }

/* PAGE HERO */
.page-hero { background: var(--red); color: white; padding: 60px 0; text-align: center; }
.page-hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 1.1rem; opacity: 0.85; max-width: 600px; margin: 0 auto; }

/* CONTENT */
.content-block { padding: 60px 0; }
.content-block h2 { font-size: 1.6rem; color: var(--red); margin-bottom: 16px; font-weight: 700; }
.content-block h3 { font-size: 1.15rem; color: var(--red); margin: 28px 0 10px; font-weight: 600; }
.content-block p { color: var(--gray); margin-bottom: 14px; line-height: 1.8; }
.content-block ul { margin: 12px 0 20px 20px; }
.content-block ul li { color: var(--gray); margin-bottom: 8px; list-style: disc; }
.highlight-box { background: var(--red-pale); border-left: 4px solid var(--red); border-radius: var(--radius); padding: 24px 28px; margin: 32px 0; }
.highlight-box p { color: var(--dark); margin: 0; font-style: italic; font-size: 1.05rem; }

/* METHODEN DETAIL */
.methoden-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
.methoden-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; border-left: 4px solid var(--red); }
.methoden-card h3 { color: var(--red); margin-bottom: 10px; font-size: 1.1rem; margin-top: 0; }
.methoden-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 0; }

/* FAQ */
.faq-list { margin-top: 32px; }
.faq-item { border-bottom: 1px solid #eee; padding: 20px 0; }
.faq-item h3 { color: var(--red); font-size: 1rem; margin-bottom: 8px; }
.faq-item p { color: var(--gray); font-size: 0.95rem; margin: 0; }

/* KONTAKT FORM */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--dark); font-size: 0.9rem; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid #ddd; border-radius: 8px; font-size: 0.95rem; font-family: inherit; transition: border 0.2s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { height: 140px; resize: vertical; }
.kontakt-info-box h2 { font-size: 1.6rem; color: var(--red); margin-bottom: 24px; }
.kontakt-info-box p { color: var(--gray); margin-bottom: 12px; font-size: 1rem; }
.kontakt-info-box .qr-codes { margin-top: 32px; }
.kontakt-info-box .qr-box { color: var(--dark); }
.kontakt-info-box .qr-box strong { color: var(--red); }
.kontakt-info-box .qr-box p { color: var(--gray); }
.kontakt-info-box .qr-placeholder { border: 2px solid var(--red); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
  .methoden-grid { grid-template-columns: repeat(3, 1fr); }
  .methoden-cards { grid-template-columns: 1fr; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-visual { display: none; }
  .about-teaser { flex-direction: column; text-align: center; }
  .kontakt-teaser { flex-direction: column; }
  .qr-codes { justify-content: center; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .nav ul, .nav .btn { display: none; }
  .burger { display: block; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .hero-text h1 { font-size: 2rem; }
  .methoden-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 1.6rem; }
  .page-hero h1 { font-size: 1.8rem; }
}