
@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-color: 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);
}
}

/* =========================
   KONTAKT SECTION
========================= */
  
  .contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
  }
  
  .contact-container {
    max-width: 600px;
    text-align: center;
  }
  
  .contact-title {
    font-family: var(--primary-font);
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }
  
  .contact-text {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .contact-email {
    font-family: var(--primary-font);
    font-size: 20px;
    color: var(--nav-color);
    text-decoration: none;
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 4px;
    transition: all 0.3s ease;
  }
  
  .contact-email:hover {
    color: var(--hover-color);
    border-color: var(--hover-color);
  }

  /* =========================
   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;
    }
}
