/* Schriften */
   
@font-face {
  font-family: 'Tangerine';
  src: url('/fonts/tangerine/tangerine-v17-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-display: swap;
  font-family: 'Jura';
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/jura/jura-v33-latin-300.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Jura';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/jura/jura-v33-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Jura';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/jura/jura-v33-latin-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Jura';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/jura/jura-v33-latin-600.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Jura';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/jura/jura-v33-latin-700.woff2') format('woff2');
}




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

body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      background: #ffffffd5;
      color: #333;
      padding: 0px;
    }

h2{
    font-size: 1.7rem;
    font-weight: bold;
    color: #000000ce;
    text-align: center;
    font-family: 'Jura';padding: 0.5rem;
    
}

/* Header */

header {
  width: 100%;
  height: auto;
  
  position: relative;
  display: inline-block;
  color: #000;
  text-align: center;
  margin: 0 0 0px 0;
  display: flex;
  align-items: center;
  gap: 1vh;
  flex-wrap: wrap;
  justify-content: center;
}


.titelbild {
    height: 50vh;
    width: 100%;
    object-fit: cover; 
    display: block;
    -webkit-mask-image: linear-gradient(to bottom,  
    rgba(0,0,0,1) 80%, 
    rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, 
    rgba(0,0,0,1) 80%,
    rgba(0,0,0,0) 100%);
}

p.titeltext {
  margin-top: 0;
  margin-bottom: 0rem; /* oder 0.5rem, je nach Wunsch */
  line-height: 1;
}


.text-overlay {
  position: absolute;
  top: 20%;          /* vertikal zentriert */
  left: 1%;         /* horizontal zentriert */
  transform: rotate(-11deg);
  color: rgb(7, 255, 90);
  padding: 0rem;
  font-family:'Tangerine';
  font-size: clamp(1.5rem, 4vw, 5rem);
  text-align: center;
    
}

header h1 {
  
  font-size: 2rem;
  font-weight: 700;
}

@media (max-width: 600px) {
    h2 {
        font-size: 1rem;
        font-weight: 700;
}
}

/* Countdown */

.banner {
    width: 100%;
    color: white;
  }
  
  .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0rem;
    text-align: center;
  }

  .countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .countdown-number {
    font-size: 4rem;
    font-weight: bold;
    color: #000000ce;
    font-family:'Tangerine';
  }
  
  .countdown-label {
    margin-top: 0rem;
    font-weight: 500;
    font-size: 2rem;
    color: #000000a6;
    line-height: 1.1;
    font-family:'Jura';
  }

  @media (max-width: 600px) {
    .container {
      grid-template-columns: repeat(4, 1fr);
      gap: 0.5rem;
    }
    .countdown-number {
      font-size: 2rem;
    }
    .countdown-label {
      font-size: 1.5rem;
    }
  }

/* Main */

main {
  max-width: 90%;
  margin: 0 auto;
  background: white;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
}

section {
  margin-bottom: 40px;
}
    
section h2 {
  margin-bottom: 15px;
  border-bottom: 2px solid #728639;
  padding-bottom: 8px;
  color: #000;
}




footer {
    text-align: center;
    padding: 15px 0;
    color: #777;
    margin-top: 30px;
    font-size: 0.9rem;
}
