*{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background:white;
      color: #0f1720;
      overflow-x: hidden;
    }

    /* HEADER */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: white;
      padding: 15px 20px;
      border-bottom: 2px solid #d4af37;
    }

    .burger {
      font-size: 26px;
      cursor: pointer;
      color: #0f1720;
    }

    .logo img {
      height: 120px;
    }

    /* NAV */
    nav {
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background: white;
      display: none;
      flex-direction: column;
    }

    nav a {
      padding: 15px;
      color: #0f1720;
      text-decoration: none;
      border-top: 1px solid #0f1720;
    }

    nav a:hover {
      background: hwb(200 95% 4%);
      color: #0f1720;
    }

    .show {
      display: flex;
    }


.hero {
  width: 100%;
  min-height: 300px;
  height: 60vh;
  background: url('images/DieFotografen002.jpg') center/cover no-repeat;
  border-bottom: 3px solid #d4af37;
}


    /* TEXT */
    .content {
      padding: 30px 20px;
      text-align: center;
    }

    .content h1 {
      color: #d4af37;
      margin-bottom: 10px;
    }
    .content h2 {
      color: #0f1720;
      margin-bottom: 20px;
      font-size: 35px;
    }


    .content p {
      color: #0f1720;
    }

    /* FORM */
    form {
      max-width: 400px;
      margin: 20px auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    input, select {
      padding: 10px;
      border-radius: 5px;
      border: #0f1720 2px;
      background: white;
      color:#0f1720;
      border-radius: 5px;
    }

    button {
    background-color: #1f2937; /* dunkelblau */
    color: white;              /* weiße Schrift */
    border: none;
    padding: 15px 20px;
    border-radius: 12px;       /* abgerundete Ecken */
    font-size: 15px;
    cursor: pointer;
    }
    button:hover {
      background-color: #1f2937;
    }

    /* GALERIE */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 10px;
      padding: 20px;
    }

    .gallery img {
      width: 100%;
      border-radius: 8px;
      border: 2px solid #d4af37;
    }

    /* WIR */
    .gallery2 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 10px;
      padding: 20px;
    }

    .gallery2 img {
      width: 100%;
      border-radius: 8px;
      border: 2px solid #d4af37;
    }

    /* FOOTER */
    footer {
      background: #fff;
      color: #1f2937;
      text-align: center;
      padding: 20px;
      border-top: 2px solid #d4af37;
    }

    footer a {
      color: #1f2937;
      margin: 0 10px;
      text-decoration: none;
    }
a:link {
  color:#d4af37;
  text-decoration: none;
}
    footer a:hover {
      color: #d4af37;
    }

    /* DESKTOP */
    @media (min-width: 768px) {
      .burger {
        display: none;
      }

      nav {
        position: static;
        display: flex !important;
        flex-direction: row;
        width: auto;
        background: none;
      }
      .video-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  aspect-ratio: 16 / 9;
}


      nav a {
        border: none;
      }
