/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    background-color: #000;
    color: #fefad8;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.1); /* halbtransparent schwarz */
  backdrop-filter: blur(7px); /* Glassmorphism */
  -webkit-backdrop-filter: blur(10px); /* Safari Support */
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  padding: 0 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* feine Linie unten */
}
  
  .logo {
    font-weight: bold;
    color: #fefad8;
    text-decoration: none; /* entfernt den Unterstrich */
  }
  
  .logo:hover {
    color: #b80000; /* optional: Hover-Farbe */
  }
  
  
  
  .nav-links {
    display: flex;
    gap: 30px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #fefad8;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.2s ease;
  }
  
  .nav-links a:hover {
    color: #b80000;
  }
  
  /* Projektseite Hauptbereich */
  .project-main {
    padding-top: 100px; /* Platz unter dem Header */
    background-color: #000;
    color: #fefad8;
  }
  
  /* Hero-Bereich */
  .project-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 40px 40px;
    flex-wrap: wrap;
  }
  
  .project-title {
    font-size: 80px;
    font-weight: bold;
    flex: 1;
  }
  
  .project-description {
    flex: 1;
    text-align: right;
    font-size: 18px;
    line-height: 1.6;
  }
  
  /* Bild/Video Slider */
  .project-slider-wrapper {
    position: relative;
    background-color: #000000;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 80px;
  }
  
  .slider-content {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .slide {
    min-width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
  }
  
  .slide img,
  .slide video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  .slide.active {
    display: flex;
  }
  
  /* Pfeile links/rechts */
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 2px solid #b80000;
    color: #b80000;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s;
  }
  
  .slider-btn:hover {
    background-color: rgba(222, 25, 25, 0.646);
  }
  
  .slider-btn.left {
    left: 20px;
  }
  
  .slider-btn.right {
    right: 20px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .project-hero {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  
    .project-description {
      text-align: center;
    }
  
    .project-title {
      font-size: 50px;
    }
  }

  /* Footer */
.footer {
    background-color: #b80000;
    color: #111;
    width: 100%;
    padding: 60px 40px 30px;
    font-family: 'Arial', sans-serif;
    text-align: center;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
  }
  
  .footer-column {
    min-width: 180px;
    font-size: 25px;
    text-transform: uppercase;
  }
  
  .footer-column a {
    color: #000;
    text-decoration: none;
  }
  
  .footer-column a:hover {
    text-decoration: underline;
  }
  
  .footer-bottom {
    margin-top: 20px;
  }
  
  .footer-brand {
    font-size: 100px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
  
    .footer-brand {
      font-size: 55px;
    }
  }
  

/* Burger Grundstruktur */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    z-index: 1100;
  }
  
  .burger .bar {
    height: 3px;
    width: 100%;
    background-color: #fefad8;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .burger.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.open .bar:nth-child(2) {
    opacity: 0;
  }
  .burger.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Responsive Navigation BURGER */
  @media (max-width: 768px) {
    .burger {
      display: flex;
    }
  
    .nav-links {
      position: absolute;
      top: 80px;
      right: 0;
      background-color: #000;
      flex-direction: column;
      width: 100%;
      display: none;
      text-align: center;
      gap: 0;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links a {
      padding: 15px 0;
      border-top: 1px solid #222;
      color: #fefad8;
      text-decoration: none;
      font-size: 18px;
    }
  
    .nav-links a:hover {
      background-color: #111;
      color: #b80000;
    }
  }
  