/* ============================================
   ENERGIE SCHREIER — Stylesheet
   style.css
   ============================================ */

/* ── RESET & VARIABLEN ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  :root {
    --bg:           #f5f3ef;
    --bg-card:      #ffffff;
    --text:         #1a1a18;
    --text-muted:   #6b6b65;
    --accent:       #2d5a27;
    --accent-light: #4a8a42;
    --accent-warm:  #c8a96e;
    --border:       #e2dfd8;
    --radius:       16px;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  
  
  /* ============================================
     NAVIGATION
     ============================================ */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 64px;
    background: rgba(245, 243, 239, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
  }
  
  .nav-logo {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.01em;
  }
  
  .nav-logo span {
    color: var(--accent);
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  nav ul a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 400;
    transition: color 0.2s;
  }
  
  nav ul a:hover {
    color: var(--text);
  }
  
  .nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    transition: background 0.2s, transform 0.15s !important;
  }
  
  .nav-cta:hover {
    background: var(--accent-light) !important;
    transform: translateY(-1px);
  }
  
  /* Hamburger Button */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    z-index: 200;
  }
  
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  
  /* Mobile Menü Overlay */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(245, 243, 239, 0.98);
    backdrop-filter: blur(20px);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu.open {
    display: flex;
  }
  
  .mobile-menu a {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text);
    text-decoration: none;
    padding: 0.9rem 2rem;
    letter-spacing: -0.02em;
    transition: color 0.2s;
  }
  
  .mobile-menu a:hover {
    color: var(--accent);
  }
  
  .mobile-menu .mobile-cta {
    margin-top: 1.5rem;
    background: var(--accent);
    color: #fff !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem !important;
    font-weight: 500;
    padding: 0.9rem 2.5rem;
    border-radius: 100px;
  }
  
  
  /* ============================================
     BUTTONS
     ============================================ */
  .btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-block;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.25);
  }
  
  .btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 90, 39, 0.35);
  }
  
  .btn-ghost {
    color: var(--text);
    padding: 0.85rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    border: 1px solid var(--border);
    transition: border-color 0.2s, background 0.2s;
  }
  
  .btn-ghost:hover {
    background: var(--bg-card);
    border-color: #ccc;
  }
  
  .btn-submit {
    background: var(--accent-warm);
    color: var(--text);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: opacity 0.2s, transform 0.15s;
    align-self: flex-start;
  }
  
  .btn-submit:hover {
    opacity: 0.85;
    transform: translateY(-1px);
  }
  
  
  /* ============================================
     ANIMATIONEN
     ============================================ */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(1.4); }
  }
  
  
  /* ============================================
     ALLGEMEINE SECTION-STYLES
     ============================================ */
  section {
    padding: 100px 5vw;
  }
  
  .section-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
  }
  
  h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 700px;
  }
  
  h2 em {
    font-style: italic;
    color: var(--accent);
  }
  
  
  /* ============================================
     HERO
     ============================================ */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5vw 80px;
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(45, 90, 39, 0.10) 0%, transparent 70%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(45, 90, 39, 0.08);
    border: 1px solid rgba(45, 90, 39, 0.18);
    color: var(--accent);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeUp 0.6s ease both;
  }
  
  .hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  
  h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 900px;
    animation: fadeUp 0.7s 0.1s ease both;
  }
  
  h1 em {
    font-style: italic;
    color: var(--accent);
  }
  
  .hero-sub {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 520px;
    font-weight: 300;
    animation: fadeUp 0.7s 0.2s ease both;
  }
  
  .hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    animation: fadeUp 0.7s 0.3s ease both;
  }
  
  
  /* ============================================
     TRUST BAR
     ============================================ */
  .trust {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 3rem 5vw;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
  }
  
  .trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.875rem;
  }
  
  .trust-item .icon {
    width: 32px;
    height: 32px;
    background: rgba(45, 90, 39, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }
  
  
  /* ============================================
     LEISTUNGEN
     ============================================ */
  #leistungen {
    background: var(--bg);
  }
  
  .leistungen-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
  }
  
  .leistungen-intro p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 400px;
    margin-top: 1rem;
  }
  
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
  }
  
  .card-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
  }
  
  .card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
  }
  
  
  /* ============================================
     ABLAUF
     ============================================ */
  #ablauf {
    background: var(--bg-card);
  }
  
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .step-num {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--border);
    line-height: 1;
    margin-bottom: 0.75rem;
  }
  
  .step h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
  }
  
  .step p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
  }
  
  
  /* ============================================
     ÜBER MICH
     ============================================ */
  #about {
    background: var(--bg);
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  
  .about-visual {
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.12), rgba(200, 169, 110, 0.18));
    border-radius: 24px;
    aspect-ratio: 4/5;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  
  .about-visual::before {
    content: 'NS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-family: 'Fraunces', serif;
    font-size: 8rem;
    font-weight: 300;
    color: rgba(45, 90, 39, 0.12);
    letter-spacing: -0.05em;
  }
  
  .about-badge {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    width: 100%;
  }
  
  .about-badge p {
    font-size: 0.875rem;
    color: var(--text-muted);
  }
  
  .about-badge strong {
    display: block;
    font-size: 1rem;
    font-family: 'Fraunces', serif;
    font-weight: 400;
    margin-bottom: 0.25rem;
  }
  
  .about-content h2 {
    margin-bottom: 1.5rem;
  }
  
  .about-content p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.975rem;
    line-height: 1.75;
  }
  
  .qualifikationen {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  
  .qual-tag {
    background: rgba(45, 90, 39, 0.08);
    color: var(--accent);
    border: 1px solid rgba(45, 90, 39, 0.15);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  
  /* ============================================
     KONTAKT
     ============================================ */
  #kontakt {
    background: var(--text);
    color: #f5f3ef;
  }
  
  #kontakt .section-label { color: var(--accent-warm); }
  #kontakt h2 { color: #f5f3ef; max-width: 600px; }
  
  .kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
  }
  
  .kontakt-info p {
    color: rgba(245, 243, 239, 0.6);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.75;
  }
  
  .kontakt-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .kontakt-detail .icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  
  .kontakt-detail a {
    color: #f5f3ef;
    text-decoration: none;
    font-size: 0.95rem;
  }
  
  .kontakt-detail a:hover { color: var(--accent-warm); }
  
  .kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  
  .form-group label {
    font-size: 0.8rem;
    color: rgba(245, 243, 239, 0.5);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    color: #f5f3ef;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(245, 243, 239, 0.3);
  }
  
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--accent-warm);
  }
  
  .form-group select option {
    background: #1a1a18;
    color: #f5f3ef;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  
  /* ============================================
     FOOTER
     ============================================ */
  footer {
    background: #111110;
    color: rgba(245, 243, 239, 0.4);
    padding: 3rem 5vw 2rem;
  }
  
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }
  
  .footer-logo {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #f5f3ef;
    text-decoration: none;
  }
  
  .footer-logo span { color: var(--accent-light); }
  
  .footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .footer-links a {
    color: rgba(245, 243, 239, 0.4);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
  }
  
  .footer-links a:hover { color: #f5f3ef; }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
  }
  
  
  /* ============================================
     IMPRESSUM / DATENSCHUTZ
     ============================================ */
  .legal-section {
    display: none;
    background: var(--bg-card);
    padding: 120px 5vw 80px;
  }
  
  .legal-section.active {
    display: block;
  }
  
  .legal-section h2 {
    margin-bottom: 2rem;
  }
  
  .legal-content h3 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin: 2rem 0 0.75rem;
  }
  
  .legal-content p,
  .legal-content li {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 0.5rem;
  }
  
  .legal-content ul {
    padding-left: 1.25rem;
  }
  
  
  /* ============================================
     RESPONSIVE — TABLET (max 1024px)
     ============================================ */
  @media (max-width: 1024px) {
    .leistungen-intro {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .steps {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  
  /* ============================================
     RESPONSIVE — MOBIL (max 768px)
     ============================================ */
  @media (max-width: 768px) {
    /* Navigation */
    nav ul        { display: none; }
    .nav-hamburger { display: flex; }
  
    /* Sections */
    section { padding: 70px 6vw; }
  
    /* Hero */
    .hero      { padding: 100px 6vw 60px; min-height: 100svh; }
    .hero-sub  { font-size: 1rem; }
    .hero-actions {
      flex-direction: column;
      width: 100%;
      align-items: center;
    }
    .hero-actions a {
      width: 100%;
      text-align: center;
    }
  
    /* Trust Bar */
    .trust {
      gap: 1.25rem;
      padding: 2rem 6vw;
      justify-content: flex-start;
    }
    .trust-item { font-size: 0.8rem; }
  
    /* Leistungen */
    .leistungen-intro { grid-template-columns: 1fr; gap: 1rem; }
    .leistungen-intro p { max-width: 100%; }
    .cards { grid-template-columns: 1fr; gap: 1rem; }
    .card  { padding: 1.5rem; }
  
    /* Ablauf */
    .steps { grid-template-columns: 1fr; gap: 2rem; }
  
    /* Über mich */
    .about-grid   { grid-template-columns: 1fr; gap: 2rem; }
    .about-visual { aspect-ratio: 3/2; }
  
    /* Kontakt */
    .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row     { grid-template-columns: 1fr; }
    .btn-submit   { width: 100%; text-align: center; }
  
    /* Footer */
    .footer-top    { flex-direction: column; gap: 1.5rem; }
    .footer-links  { flex-direction: column; gap: 0.75rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
  
    /* Legal */
    .legal-section { padding: 100px 6vw 60px; }
  }
  
  
  /* ============================================
     RESPONSIVE — KLEINE HANDYS (max 380px)
     ============================================ */
  @media (max-width: 380px) {
    h1               { font-size: 2.6rem; }
    .mobile-menu a   { font-size: 1.6rem; }
  }