* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: white;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

header {
  background-color: #1d1d1d;
  border-bottom: 3px solid #c59d5f;
}

header .container {
  display: flex;
  justify-content: flex-start; /* statt space-between */
  align-items: center;
  flex-wrap: wrap;
  gap: 40px; /* Abstand zwischen Titel und Menü */
}

h1 {
  color: #c59d5f;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  justify-content: flex-start;
  padding-left: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #c59d5f;
}

.hero {
  height: 60vh;

  background-image: url('https://images.unsplash.com/photo-1511192336575-5a79af67a629');
  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h2 {
  background-color: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 10px;
  font-size: 3rem;
}

main {
  padding: 40px 20px;
}

section {
  margin-bottom: 40px;
}

h3 {
  color: #c59d5f;
  margin-bottom: 20px;
}

.card {
  background-color: #1d1d1d;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 5px solid #c59d5f;
  border-radius: 8px;
}

footer {
  background-color: #1d1d1d;
  border-top: 3px solid #c59d5f;
  text-align: center;
  padding: 20px;
}

/* Tablet */

@media (max-width: 900px) {

  .hero h2 {
    font-size: 2rem;
  }

}

/* Smartphone */
@media (max-width: 900x) {

  header .container {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }

  nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 0;
    gap: 10px;
  }

  .hero {
    height: 40vh;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

}

.gallery-section {
    padding: 20px 20px 20px 20px;
    background: #111;
    color: white;
    text-align: center;
}

.gallery-section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}