body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.header .left {
  width: 65%;
}

.header .right {
  width: 30%;
  text-align: center;
}

.header img {
  width: 100%;
  height: auto;
}

/* NAVIGATION */
nav {
  background: linear-gradient(to right, #2c7da0, #1b4965);
  padding: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
}

nav a:hover {
  background: #c0392b;
}

/* HERO (EINMAL, RICHTIG!) */
..hero {
  background: url('../img/empanadas.jpg') center/cover no-repeat;
  height: 350px;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* TEXT FIX */
.hero-overlay h1 {
  color: white;
  font-size: 40px;
  margin: 0;
}

.hero-overlay p {
  color: white;
  font-size: 18px;
  max-width: 600px;
  text-align: center;
}

.hero-overlay h1,
.hero-overlay p {
  color: white;
  text-align: center;
}

/* CONTENT */
.container {
  padding: 20px;
}

h1, h2 {
  text-align: center;
}

h2 {
  color: #c0392b;
}

/* BILDER */
.images {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.images img {
  width: 50%;
  height: auto;
  border-radius: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
  }

  .header .left,
  .header .right {
    width: 100%;
  }

  .images {
    flex-direction: column;
  }

  .images img {
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }
}