
@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);
    }
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

  body {
    margin: 0;
    background: var(--background);
    color: var(--primary-color);
    font-family: var(--secondary-font);
    -webkit-font-smoothing: antialiased;
  }
  
/* =========================
   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);
  }
/* =========================
   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);
}
}



/* =========================
   ARTICLES
========================= */
  .articles-page {
    padding: 90px 24px;
  }
  
  .articles-header {
    max-width: 780px;
    margin: 0 auto 70px;
    text-align: center;
  }
  
  .articles-kicker {
    margin-bottom: 16px;
    margin-top: 36px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--secondary-color);
  }
  
  .articles-header h1 {
    margin: 0;
    font-family: var(--primary-font);
    font-size: clamp(42px, 7vw, 88px);
    font-weight: 400;
    line-height: 1;
  }
  
  .articles-intro {
    max-width: 520px;
    margin: 24px auto 0;
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.7;
  }
  
  .articles-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 28px;
  }
  
  .article-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 34px;
    background: var(--alt-section-color);
    border: 1px solid rgba(88, 71, 55, 0.12);
    text-decoration: none;
    color: var(--primary-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }
  
  .article-card:hover {
    transform: translateY(-4px);
    border-color: var(--hover-color);
  }
  
  .article-date {
    font-family: var(--primary-font);
    font-size: 18px;
    color: var(--nav-color);
  }
  
  .article-category {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--secondary-color);
  }
  
  .article-title {
    margin: 0 0 14px;
    font-family: var(--primary-font);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 400;
    line-height: 1.08;
  }
  
  .article-excerpt {
    max-width: 680px;
    margin: 0 0 22px;
    color: var(--secondary-color);
    font-size: 15px;
    line-height: 1.7;
  }
  
  .article-read-more {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nav-color);
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 4px;
  }
  
  .articles-load-wrap {
    margin-top: 54px;
    text-align: center;
  }
  
  .load-more-btn {
    background: transparent;
    border: 1px solid var(--nav-color);
    padding: 15px 30px;
    font-family: var(--secondary-font);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--nav-color);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .load-more-btn:hover {
    background: var(--nav-color);
    color: var(--background);
  }
  
  .load-more-btn.is-hidden {
    display: none;
  }
  
  @media (max-width: 720px) {
    .articles-page {
      padding: 70px 18px;
    }
  
    .article-card {
      grid-template-columns: 1fr;
      gap: 18px;
      padding: 28px;
    }
  
    .article-date {
      font-size: 16px;
    }
  }



  
  .article-card.featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 34px;
    overflow: hidden;
  }
  
  .article-card.featured .article-image {
    grid-column: 1 / -1;
    width: calc(100% + 68px);
    aspect-ratio: 3 / 2;
    height: auto;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: -34px -34px 0;
}
  
  .article-card.featured .article-date {
    padding: 0;
  }
  
  .article-card.featured .article-content {
    padding: 0;
  }
  
  @media (max-width: 720px) {
    .article-card.featured {
      grid-template-columns: 1fr;
      gap: 18px;
      padding: 28px;
    }
  
    .article-card.featured .article-image {
      width: 100% !important;
      height: 58vw !important;
      max-height: 300px !important;
      aspect-ratio: auto !important;
      background-size: contain !important;
      background-position: center !important;
      background-repeat: no-repeat !important;
  
      margin: 0 !important;
  }

  
    .article-card.featured .article-date {
        padding: 0;
    }
  
    .article-card.featured .article-content {
        padding: 0;
    }
  }

 
/* =========================
   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);
  font-weight: 400;
  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);
  font-weight: 400;
  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;
  }
}
