/* Grundlegende Reset-Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Farben */
:root {
  --primary-color: #ff6600;      /* warmes Orange */
  --secondary-color: #3399ff;    /* komplementäres Blau */
  --accent-color: #66cc33;       /* lebendiges Grün */
  --light-bg: #fff;
}

/* Header */
header {
  background-color: var(--primary-color);
  padding: 20px;
  text-align: center;
}

header img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Layout für Content */
main {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
}

/* Drei Spalten oben */
.top-section {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.left, .middle, .right {
  padding: 10px;
}

.left, .middle {
  width: 40%;
  background-color: var(--light-bg);
}

.right {
  width: 20%;
  background-color: var(--secondary-color);
  color: white;
}

/* Zwei Spalten darunter */
.bottom-section {
  display: flex;
  width: 100%;
  margin-top: 20px;
}

.description {
  width: 80%;
  background-color: var(--light-bg);
  padding: 10px;
}

/* Menübild-Übersicht */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 20px;
}

.icon-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid var(--accent-color);
  transition: transform 0.2s ease;
}

.icon-grid img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* Responsive Verhalten */
@media (max-width: 900px) {
  .left, .middle, .right,
  .description, .menu-continued {
    width: 100%;
  }

  .icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
