/* Grundlegende Schriftart und Textfarbe */
body {
    font-family: 'Verdana', sans-serif; /* Verdana als Schriftart */
    color: #003366; /* Dunkelblau für Text */
    background-color: #f1f8ff; /* Zartes Hellblau für den Hintergrund */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Banner-Styling */
#banner {
    background-color: #d1e2f1; /* Sehr helles Blau */
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #003366; /* Dunkelblau als Akzent */
}

#logo {
    width: 100px;
    height: 50px;
}

#menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

#menu li {
    font-size: 18px;
}

#menu a {
    color: #003366; /* Dunkelblau */
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

#menu a:hover {
    color: #ff7eb9; /* Rosa bei Hover */
}

/* Inhaltlicher Bereich */
#content {
    padding: 40px;
    text-align: center; /* Zentriert den gesamten Inhalt */
}

.section-title {
    color: #003366; /* Dunkelblau */
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: bold;
}

.section {
    display: flex;
    justify-content: space-between;
    gap: 10px; /* Verringert den Abstand zwischen den Produkten */
    flex-wrap: wrap; /* Für bessere Darstellung auf kleinen Bildschirmen */
}

.product {
    background-color: #ffffff; /* Weißer Hintergrund für Produkte */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 280px; /* Verringert die Breite der Produkte */
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.product:hover {
    transform: scale(1.05); /* Leichte Vergrößerung beim Hover */
}

.product-info h3 {
    color: #003366; /* Dunkelblau für Produkttitel */
    font-size: 22px;
}

.product-info p {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-info .available {
    color: #28a745; /* Grün für Verfügbarkeit */
    font-weight: bold;
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

/* Footer Styling */
#bottom {
    background-color: #003366; /* Dunkelblau */
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}
