/* =========================
   RESET
========================= */
@font-face {
    font-display: swap; 
    font-family: 'PlayfairDisplay';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/PlayfairDisplay-VariableFont_wght.woff2') format('woff2'); 
  }
  @font-face {
    font-display: swap; 
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/Inter-VariableFont_opsz\,wght.woff2') format('woff2'); 
  }
  @font-face {
    font-display: swap; 
    font-family: 'Meddon';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/Meddon-Regular.woff2') format('woff2'); 
  }
  
  :root {
    --primary-font:'PlayfairDisplay';
    --secondary-font:'Inter';
      --primary-color:#0c0a08;
      --secondary-color:#8C8175;
      --hover-color:#756b61;
      --nav-color:#584737;
      --background: #F7F5F2; 
      --alt-section-color:#EFEDE9;
      --light: #F5F3F0;
      --text: #0c0a08;
      --border-radius: 12px;
      --box-shadow: -10px 0 30px rgba(0,0,0,0.08);
      --border: 1px solid rgba(0,0,0,0.04);
      --neue-text-farbe-elementor:#585450;
    }
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--secondary-font);
    background: var(--background);
    color: #0c0a08;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

/* =========================
   GLOBAL LAYOUT
========================= */

/* FULL WIDTH SECTIONS */
.section {
    width: 100%;
    padding: 120px 0; /* KEIN seitliches Padding mehr hier */
}
.content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px; 
}
/* CONTENT WIDTH  */
.content-wide {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.lastcta {
    text-align: left;
    max-width: 700px;   /* optional für schöne Lesbarkeit */
    margin: 0 auto;     /* zentriert den Block */
}
.lastcta .cta {
    display: flex;
    justify-content: center;
    gap: 12px; /* optional Abstand */
    flex-wrap: wrap; /* sauber auf Mobile */
}
.lastcta .primary{
background-color: var(--nav-color);
}
.lastcta .secondary {
    border: 1px solid var(--nav-color);
    color: var(--nav-color);
}
.lastcta .secondary:hover{
    border: 1px solid #8C8175;
    color: #8C8175;
}

.bullet {
    color: var(--nav-color);
    margin-right: 8px;
}

/* =========================
   TYPOGRAPHY
========================= */

h2 {
    font-family: var(--primary-font);
    line-height: 1.3;
    margin-bottom: 40px;
}

p {
    margin-bottom: 22px;
    font-size: 17px;
}

strong {
    font-weight: 500;
}
/* =========================
   NAVIGATION
========================= */
.logo {
    display: flex;
    gap: 10px;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.4px;
    font-family: var(--primary-font);
}

.logo img {
    height: 30px;
    border-radius: 50px; /* falls Icon weich wirken soll */
}

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: #F7F5F2;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    margin-left: auto; 
    font-family: var(--primary-font);

}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav a {
    margin-left: 30px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.4px;
    color: var(--primary-color);
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--nav-color);
    font-size: 15px;
    letter-spacing: 0.4px;
    margin: 0;
}
.nav-links a:hover {
    color: var(--primary-color);
}

.burger {
    display: none;
}
.nav-links a.nav-highlight {
    color: var(--primary-color);
    border-bottom: 1px solid var(--nav-color);
    padding-bottom: 2px;
  }
  
  .nav-links a.nav-highlight:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
  }
/* =========================
   HERO 
========================= */

.hero {
    width: 100%;
    background: linear-gradient(
        to bottom,
        #0c0a08 0%,
        #151210 100%
    );
    color: #FFFFFF;
    padding: 180px 0 140px;
}

/* INNERER CONTENT (zentriert!) */
.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}



.hero .sub {
    margin-top: 30px;
    font-size: 20px;
    color: #CFCAC3;
    max-width: 600px;
}

.hero-light {
    padding: 190px 0 90px;
}

.hero-inner-narrow {
    max-width: 860px;
}

.eyebrow {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 18px;
    font-family: var(--secondary-font);
}

.hero-light h1 {
    font-family: var(--primary-font);
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: -1px;
    max-width: 980px;
    font-weight: 400;
}


.hero-light .sub {
    margin-top: 28px;
    font-size: 21px;
    line-height: 1.7;
    color: var(--secondary-color);
    max-width: 720px;
}


@media (max-width: 768px) {

    .hero-light {
        padding: 150px 0 70px;
    }

    .hero-light .sub {
        font-size: 17px;
        line-height: 1.7;
    }
}


/* =========================
   ERFAHRUNGEN TEXT
========================= */
.w48-reference-strip {
    padding: clamp(32px, 6vw, 70px) 20px;
    background: #f5efe7;
    text-align: center;
  }
  
  .w48-reference-kicker {
    margin: 0 0 clamp(18px, 3vw, 28px);
    font-family: var(--secondary-font);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(45, 34, 27, 0.62);
  }
  
  .w48-reference-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
  }
  
  .w48-reference-list span {
    font-family: var(--primary-font);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #2d221b;
  }
  
  .w48-reference-list span:not(:last-child)::after {
    content: "·";
    margin: 0 1rem;
    opacity: 0.5;
  }
  .w48-credentials {
    margin: clamp(18px, 3vw, 28px) 0 0;
    font-family: var(--secondary-font);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(45, 34, 27, 0.62);
}

/* =========================
   INTRO TEXT
========================= */
.about-image-box {
    position: relative; 
    margin-top: 20px;
}

.about-handwritten {
    position: absolute;
    top: -55px;
    left: -28px;
    z-index: 2;
    font-size: 3rem;
    line-height: 1;
    font-weight: 600;
    color: var(--primary-color);
    transform: rotate(-7deg);
    font-family: 'Meddon', cursive;
    -webkit-font-smoothing: antialiased;
}

.about-wrap {
    max-width: 1280px;
}

.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(320px, 480px) minmax(420px, 560px);
    justify-content: center;
    align-items: start;
    gap: 110px;
}

.about-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-image-box {
    width: 100%;
    max-width: 420px;
    
}

.about-image-box img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.about-image-caption {
    margin-top: 14px;
    text-align: right;
    letter-spacing: 0.08em;
    color: var(--secondary-color);
}

.caption-line-strong,
.caption-line {
    margin: 0;
    line-height: 1.2;
}

.caption-line-strong {
    font-size: 1.05rem;
    font-weight: 700;
}

.caption-line {
    font-size: 0.95rem;
    font-weight: 500;
}

.about-right {
    padding-top: 18px;
}

.about-title {
    margin: 0 0 34px;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1.1;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.about-kicker {
    margin: 0 0 36px;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--nav-color);
}

.about-copy {
    max-width: 520px;
}

.about-copy p {
    margin: 0 0 24px;
    line-height: 1.55;
    color: #111;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 18px 28px;
    border: 1.5px solid var(--nav-color);
    color: var(--nav-color);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.about-btn:hover {
    background: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    color: #fff;
}

.about-btn span {
    font-size: 1.3em;
    line-height: 1;
}

@media (max-width: 1100px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-left,
    .about-right {
        max-width: 680px;
        margin: 0 auto;
    }

    .about-right {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .about-handwritten {
        top: -66px;
    }
    .about-section {
        padding: 56px 0;
    }

    .about-grid {
        gap: 36px;
    }

    .about-image-box {
        max-width: 320px;
    }

    .about-title {
        margin-bottom: 24px;
        font-size: 2.2rem;
    }

    .about-kicker {
        margin-bottom: 24px;
        font-size: 0.92rem;
    }

    .about-copy p {
        font-size: 1.06rem;
        line-height: 1.6;
    }

    .about-btn {
        margin-top: 12px;
        padding: 16px 22px;
        font-size: 0.95rem;
    }

    .caption-line-strong {
        font-size: 0.95rem;
    }

    .caption-line {
        font-size: 0.85rem;
    }
}



/* =========================
   BUTTONS
========================= */

.cta {
    margin-top: 50px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 1.6rem;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

@media (max-width: 640px) {
    .btn {
        width: 100%;
        text-align: center;
    }

    .cta {
        width: 100%;
    }
}

/* PRIMARY */
.primary {
    background: var(--nav-color);
    color: #FFFFFF;
    
}


.primary:hover {
    background: var(--hover-color);
}

/* SECONDARY */
.secondary {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}
.secondary:hover{
    border: 1px solid #8C8175;
    color: #8C8175;
}

.link{
    color: #8C8175;
    text-decoration: none;
}
.link:hover{
    color: #756b61;
}

/* =========================
   TEXT SECTIONS
========================= */

.text-section {
    padding-top: 80px;
}

.text-section .content {
    max-width: 900px;
}

.text-section p {
    display: flex;
    align-items: flex-start;
    gap: 10px; /* Abstand zwischen Icon und Text */
}
.editorial-section {
    background: #F7F5F2;
    color: #584737;
  }
  
  .editorial-content {
    max-width: 1180px;
    margin: 0 auto;
  }
  
  .editorial-heading {
    font-family: var(--primary-font);
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 0.95;
    margin-bottom: 48px;
    font-weight: 400;
  }
  
  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  
  .problem-text {
    max-width: 560px;
  }
  
  .problem-text p,
  .solution-block p {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: var(--secondary-font);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }
  
  .icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
 
  
  .bildproblem {
    width: 100%;
    max-width: 350px;
    height: auto;
  }
  
  .editorial-divider {
    width: 100%;
    height: 1px;
    background: #584737;
    opacity: 0.28;
    margin: 90px 0;
  }
  
  .solution-block {
    max-width: 760px;
  }
  
  .intro-text {
    display: block !important;
    max-width: 620px;
    margin-bottom: 28px;
  }
  
  .bildsolution {
    display: block;
    max-width: 400px;
    width: 100%;
    margin: 44px 0;
  }

  
  .final-line {
    font-family: var(--primary-font) !important;
    font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
    line-height: 1.2 !important;
    margin-top: 28px;
  }
  
  @media (max-width: 768px) {
    .editorial-heading {
        font-size: clamp(3rem, 3vw, 2.4rem);
      margin-bottom: 34px;
    }
  
    .problem-grid {
      grid-template-columns: 1fr;
      gap: 34px;
    }
  
    .problem-image {
      order: -1;
    }
  
    .editorial-divider {
      margin: 64px 0;
    }
  
    .bildsolution {
      max-width: 350px;
    }
    .bildproblem{
        max-width: 250px;
        margin: 0 0 0 40px;
      } 
      .icon {
        width: 30px;
        height: 30px;
      }

  }



/* =========================
   CTA BOX 
========================= */
.email-series-text .email-series-heading{
    color: var(--primary-color);
    font-weight: 500;
}
.email-series-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 32px;
}

.email-series-text {
    flex: 1;
    min-width: 0;
}

.email-series-image {
    flex: 0 0 300px;
    display: flex;
    justify-content: flex-end;
    
}
.email-series-image {
    transform: translateY(60px);
}

.email-series-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    border-radius: 50px;
}

.email-form {
    max-width: 100%;
}
@media (max-width: 768px) {
    .email-series-top {
        flex-direction: column;
        gap: 20px;
    }

    .email-series-image {
        order: -1;
        width: 100%;
        justify-content: center;
        flex: none;
    }

    .email-series-image img {
        max-width: 250px;
    }
    .email-series-image {
        transform: translateY(10px);
    }
}


.cta-box {
    background: #FFFFFF;
    padding: 80px;
    border-radius: 0px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.cta-box.alt {
    background: #EFEDE9;
}




/* =========================
   SPACING RHYTHM
========================= */

.section + .section {
    padding-top: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {

    .hero h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {

    .section {
        padding: 80px 20px;
    }

    .hero {
        padding: 140px 20px 100px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero .sub {
        font-size: 16px;
    }

    h2 {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }

    .cta-box {
        padding: 30px;
    }


    .logo {
        flex: 1;
    }
    
    .burger {
        flex: 0;
    }

    .nav a {
        margin: 0 10px;
    }
}

/* =========================
   RESPONSIVE NAVIGATION
========================= */

@media (max-width: 900px) {


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

nav {
    margin-left: 0;
}

.nav-links {
    position: fixed;
    top: 4em;
    right: 0;
    width: 45vw;
    height: auto;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
    z-index: 10;
    background-color:#F7F5F2;
    border-left:  1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    gap: 0;
    padding: 1rem 0;
}

.nav-links li {
    opacity: 0;
    margin: 1.25em 1em; 
}

.nav-links a {
    color: #584737;
    text-decoration: none;
    letter-spacing: 0.12em;
    font-size: 1em;
    margin: 0;
}
.nav-links a:hover{
color:#0c0a08;
}

.burger {
    display: block;
    cursor: pointer;
    margin-left: auto;
    z-index: 20;
}


.burger div {
    width: 35px;
    height: 3px;
    background-color:#0c0a08;
    margin: 5px;
    transition: all 0.3s ease;
       
}

/* Active navigation */
.nav-active {
    transform: translateX(0); /* FIX */
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

/* Burger Animation */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}
 
}


/* =========================
   EMAIL FORM
========================= */
.main-cta-box h2 {
    line-height: 1;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    margin-bottom: 28px;
}
.list {
    padding-left: 18px;
    margin-top: 20px;
}

.main-cta-box .list li {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--primary-color);
    padding-left: 20px;
}
.email-series-text p {
    color: var(--secondary-color);
    text-transform: uppercase;
}
.email-form {
    margin-top: 32px;
    max-width: 760px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 8px;
    color: #0c0a08;
    font-weight: 500;
}

.form-group label span {
    font-weight: 400;
    color: #756b61;
}

.form-group input {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(12, 10, 8, 0.12);
    background: #fcfbf9;
    color: #1E1E1E;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    border-radius: 0px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input:focus {
    border-color: #8C8175;
    background: #ffffff;
}

.form-group input::placeholder {
    color: #9b9186;
}

.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 6px 0 24px;
    font-size: 14px;
    color: #4d453f;
    line-height: 1.6;
}

.checkbox-wrap input {
    margin-top: 4px;
    accent-color: #8C8175;
}

.email-form .btn {
    border: none;
    cursor: pointer;
    background-color: var(--nav-color);
}
.email-form .btn:hover {
    background-color: var(--secondary-color);
}

.small {
    font-size: 14px;
    color: var(--secondary-color);
    margin-top: 20px;
}

.main-cta-section {
    padding-top: 80px;
  }

.main-cta-box {
    background: #EFEDE9;
    border: 1px solid rgba(88, 71, 55, 0.12);
    box-shadow: none;
    position: relative;
}

.main-cta-box .about-kicker {
    margin-bottom: 18px;
    color: var(--nav-color);
}

.main-cta-box .email-form {
    border-top: 1px solid rgba(88, 71, 55, 0.18);
    padding-top: 34px;
}

.main-cta-box input {
    background: #F7F5F2;
    border: 1px solid rgba(88, 71, 55, 0.18);
}

.main-cta-box .btn {
    background: var(--nav-color);
}

.main-cta-box::before {
    display: none;
}

/* Linie über Textblock */
.email-series-text::before {
    content: "";
    display: block;
    width: 90px;
    height: 1px;
    background: var(--nav-color);
    margin-bottom: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .email-form .btn {
        width: 100%;
        text-align: center;
    }
    .main-cta-box h2 {
        font-size: clamp(2.2rem, 9vw, 4.2rem);
        
    }
}


/* =========================
   EXPERIENCE SECTION
========================= */

.experience-section {
    background: #F7F5F2;
    color: #584737;
  }
  
  .experience-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
  }
  
  .experience-content h2 {
    font-family: var(--primary-font);
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 32px;
    font-weight: 500;
  }
  
  .experience-content p {
    font-family: var(--secondary-font);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
  }
  
  
  .highlight-text {
    padding-left: 22px;
    border-left: 2px solid #584737;
  }
  
  .final-text {
    margin-top: 34px;
    font-weight: 500;
  }


  
/* =========================
   LAST CTA EMAIL FORM
========================= */
.editorial-cta .eyebrow {
    color: var(--primary-color);
}
  .editorial-cta {
    background: var(--background);
    color: var(--nav-color);
}

.editorial-cta-content {
    max-width: 720px;
   
}
.last-email-heading {
    color: var(--primary-color);
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    font-weight: 500;
}

/* Textblock ruhiger */
.cta-text {
    margin-bottom: 40px;
    color: var(--nav-color);
}

.editorial-cta .highlight-text-email {
    color: var(--primary-color);
    padding-left: 0;
    font-family: var(--primary-font);
    font-size: 1.3rem;
    line-height: 1.4;
}

/* Formular luftiger */
.editorial-form {
    margin-top: 30px;
}

/* Inputs minimal cleaner */
.editorial-form input {
    background: transparent;
    border: 1px solid rgba(88,71,55,0.2);
}

.editorial-form input:focus {
    border-color: var(--nav-color);
}

/* Button stärker als Fokuspunkt */
.editorial-btn {
    margin-top: 10px;
    padding: 18px 28px;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

/* Microcopy unter CTA */
.small-note {
    margin-top: 18px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}
@media (max-width: 768px) {
    .editorial-cta-content h2  {
        font-size: clamp(2.4rem, 13vw, 3rem);
      margin-bottom: 34px;
    }
  
  }
  @media (max-width: 640px) {
    .btn,
    .editorial-btn {
        width: 100%;
        text-align: center;
        font-size: 0.9rem;
    }

    .cta {
        width: 100%;
    }
}

/* =========================
   FOOTER 
========================= */

.footer {
    background: var(--primary-color);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TOP */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* BRAND */
.footer-brand {
    font-size: 15px;
    color: var(--secondary-color);
}

/* NAV */
.footer-nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-nav a {
    text-decoration: none;
    font-size: 15px;
    color: var(--secondary-color);
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--hover-color);
}

/* BOTTOM (LEGAL) */
.footer-bottom {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--secondary-color);

    display: flex;
    gap: 20px;
}

.footer-bottom a {
    font-size: 13px;
    color: #a39a90;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}


.footer-credit {
    font-size: 0.9rem;
    color: var(--secondary-color); /* Text weiß */
    
  
    margin-top: 30px;
}

.footer-credit a {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-credit a:hover {
    color: var(--background);
}

.heart {
    color: var(--background); /* Herz weiß */
    font-size: 1rem;
}


@media (max-width: 768px) {

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 14px;
    }

    .footer-brand {
        order: 2;
        margin-top: 10px;
    }

    .footer-nav {
        order: 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        margin-top: 40px;
    }
}




