@font-face {
  font-family: 'P22DaVinci';
  src: url('fonts/P22DaVinci.ttf') format('truetype');
}

.logo {
  font-family: 'P22DaVinci', serif;
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
}

.logo img {
  height: 40px;
  width: auto;
  max-width: none;
  display: block;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  background: url('norddeutsch-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  background-color: #000;
}

.page-title {
  text-align: center;
  font-family: 'P22 Da Vinci', serif;
  font-size: clamp(2rem, 6vw, 3rem);
  margin-top: 6rem;
  margin-bottom: 2rem;
}

.report-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
}

.report-card {
  display: flex;
  flex-direction: column;
  width: 320px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease;
}

.report-card:hover {
  transform: scale(1.03);
}

.report-card .image {
  height: 200px;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  transition: opacity 0.4s;
}

.report-card:hover .image {
  opacity: 1;
}

.report-card .title {
  padding: 1rem;
  color: white;
  font-weight: bold;
  text-align: center;
  font-size: 1.2rem;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
  flex-wrap: wrap;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}

.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

#menu-toggle {
  display: none;
}

.hero-text {
  text-align: center;
  margin: 4rem auto;
  max-width: 800px;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-row > div {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 0.3rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.7rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  background: #b6ffb6;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  align-self: flex-end;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #90e690;
}

@media (max-width: 768px) {
  .nav ul {
    flex-direction: column;
    display: none;
  }

  #menu-toggle:checked + .menu-icon + .nav ul {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .nav {
    width: 100%;
  }
}