/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
body {
    font-family: "Georgia", "Times New Roman", serif;
    line-height: 1.7;
    color: #1f1f1f;

    background-color: #fafafa;
}
.section {
    scroll-margin-top: 70px; /* Höhe deines Headers */
}
.container {
    max-width: 760px; 
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
header {
    background: #f4f1ed;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header{
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }


nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;   
}

  .nav-wrap{
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 18px 0px 18px;
  }
  
  /* Logo-Zeile */
  .brand{
    display: flex;
    align-items: baseline;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    max-width: 100%;
  }
  
  .brand__title{
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    color: #2b1a10; /* Umbra */
  }
  
  .brand__subtitle{
    font-size: .95rem;
    opacity: .8;
    color: #2b1a10; /* Umbra */
    /* wichtig für mobile */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  

  .site-nav{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
  }
  
  .site-nav a{
    text-decoration: none;
    color: inherit;
    opacity: .9;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
  }
  
  .site-nav a:hover{
    border-bottom-color:#2b1a10; /* Umbra */
    color: #2b1a10; /* Umbra */
  }
  
  /* is-cta Contact-Button Nav */
  .site-nav a.is-cta{
    padding: 6px 10px;
    border: 1px solid #2b1a10; /* Umbra */;
    border-radius: 999px;
    color: #2b1a10; /* Umbra */
  }
  a.is-cta:hover{
    opacity: .6;
  }

#expertise {
    background-image: url('/img/DSC_0260\ 4.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    color: #f4f1ed;
    position: relative;
    padding: 6rem 0;
}


#expertise::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(54, 47, 36, 0.45);
    z-index: 0;
  }
  

  #expertise .container {
    position: relative;
    z-index: 1;
    max-width: 760px;  
    padding: 3rem 3.25rem;
    text-align: left;
    background: rgba(62, 48, 36, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 8px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(10px);
  }

#expertise h1 {
    margin-bottom: 0.25rem; /* neu */
    font-size: 2rem;       
    line-height: 1.3;
    font-weight: 500;
    max-width: 28ch;
}

#expertise p {
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 65ch;
    color: #ece9e4;
    text-shadow: 0 0 0.6px rgba(0, 0, 0, 0.35);
}

  #expertise h1,
#expertise p {
    text-align: left;
}
#expertise p:first-of-type {
    margin-top: 0;
}


#expertise .timeframe {
    margin-top: 0;         
    margin-bottom: 1.25rem; 
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(240, 237, 232, 0.75);
}


.section {
    padding: 4rem 0;
    background-color: #f4f1ed;
  
}



.section-alt {
    background: #ffffff;
}

h1, h2, h3 {
    font-weight: normal;
    margin-bottom: 1.2rem;
}

h1 {
    font-size: 2.1rem;
}

h2 {
    font-size: 1.6rem;
}

h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
}

p {
    margin-bottom: 1.2rem;
    max-width: 850px;
}

ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}


/* CONTACT SECTION */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border: 1px solid #ddd;
    background: #fff;
}

.contact-text {
    max-width: 700px;
}

.email {
    font-size: 1.05rem;
    margin-top: 1.5rem;
}

.note {
    font-size: 0.9rem;
    color: #555;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .contact-image {
        display: flex;
        justify-content: center;
    }

    .contact-image img {
        max-width: 220px;
    }
}


/* FOOTER */
footer {
    background-color: #2b1a10;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    padding: 2rem 0;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1100px;
}

footer ul {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    margin: 0;
}

footer a {
    
    text-decoration: none;
    color: rgba(255,255,255,0.75);

}

footer a:hover {
   
    color: #ffffff;

}
@media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
    footer ul {
      justify-content: center;
      padding: 0;
    }
    .footer-sep {
      display: none;
    }
  
    .footer-subtitle {
      display: block;
    }
  }
  
  
@media (max-width: 768px) {

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }
}


  
  /* Mobile: Subtitle kürzer & dezenter */
  @media (max-width: 600px){
    .brand__subtitle{
      font-size: .85rem;
      max-width: 50vw; /* verhindert zu breite Header */
    }
  }
  
  @media (max-width: 700px){

    /* Header horizontal */
    .nav-wrap{
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px;
    }  
    /* Brand links – jetzt zweizeilig */
    .brand{
        display: flex;
        flex-direction: column; /* ⬅ Titel & Subtitle untereinander */
        align-items: flex-start;
        gap: 2px;
        margin-bottom: 0;
        max-width: calc(100% - 90px);
      }
    
      .brand__title{
        font-size: 1.05rem;
        line-height: 1.2;
      }
    
      .brand__subtitle{
        display: block;
        font-size: .9rem;
        line-height: 1.25;
        opacity: .7;
        white-space: normal; /* darf umbrechen */
      }
  
    /* Alle Nav-Links ausblenden */
    .site-nav a{
      display: none;
    }
  
    /* Contact sichtbar & rechts */
    .site-nav a.is-cta{
      display: inline-flex;
    }
  
    /* Nav selbst nach rechts schieben */
    .site-nav{
      margin-left: auto;
    }
  }
  
  #emailText a {
    color: #2b1a10; /* Umbra */      /* Wunschfarbe */
    text-decoration: none;  /* kein Unterstrich */
  }
  
  #emailText a:hover {
    color: #2b1a10; /* Umbra */
    text-decoration: underline;
  }
  