/*=============== HERO SECTION ===============*/
.hero {
    position: relative;
    background: url("../images/hero-bar.jpg") center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 1rem;
}

.hero__title {
    font-size: 3rem;
    font-family: var(--heading-font);
    color: #fff;
    margin-bottom: 1rem;
}

.hero__subtitle {
    font-size: 1.25rem;
    font-family: var(--body-font);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero__button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero__button:hover {
    background-color: #6b1fb2;
    transform: scale(1.05);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero {
        height: 100vh;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__button {
        font-size: 0.9rem;
    }
}

/*=============== DRINK MENU SECTION ===============*/
.drink-menu {
    padding: 4rem 1rem;
    background-color: #f9f9f9;
}

.drink-menu__nav {
    text-align: center;
    margin-bottom: 2rem;
}

.drink-menu__title {
    font-size: 2rem;
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.drink-menu__categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Zentriert die Buttons */
    list-style: none;
    padding: 0;
    margin: 0 auto;
    gap: 1.5rem; /* Mehr Abstand zwischen Buttons */
}

.drink-menu__link {
    text-decoration: none;
    color: #fff;
    background-color: var(--primary-color);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1 1 calc(25% - 1rem); /* Genau 4 pro Reihe */
    max-width: 220px; /* Einheitliche Breite */
    min-width: 200px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.drink-menu__link:hover {
    background-color: #6b1fb2;
    transform: scale(1.05);
}

.drink-menu__content {
    max-width: 1200px;
    margin: 0 auto;
}

.drink-menu__section {
    margin-bottom: 2rem;
}

.drink-menu__section-title {
    font-size: 1.5rem;
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.drink-menu__description {
    font-size: 1rem;
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .drink-menu__categories {
        gap: 1rem;
    }

    .drink-menu__link {
        flex: 1 1 calc(33.33% - 1rem); /* 3 Buttons pro Zeile */
        max-width: 200px; /* Gleiche Größe */
    }
}

@media screen and (max-width: 768px) {
    .drink-menu__categories {
        flex-direction: column;
        align-items: stretch;
        max-width: 100%; /* Volle Breite auf Smartphones */
    }

    .drink-menu__link {
        width: 100%; /* Buttons über gesamte Breite */
        max-width: none;
    }
}

/* Drink Menu Items Styling */
.drink-menu__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.drink-menu__item {
    background-color: #f5f5f5;
    padding: 1rem;
    border: 2px solid #6b1fb2; /* Permanent farbiger Border */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(107, 31, 178, 0.4); /* Permanenter Leuchteffekt */
    text-align: center;
    transition: transform 0.3s ease;
}

.drink-menu__item:hover {
    transform: scale(1.05); /* Nur beim Hover leichtes Vergrößern */
}

.drink-menu__item-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #6b1fb2; /* Gleiche Farbe wie der Border */
    margin-bottom: 0.5rem;
}

.drink-menu__item-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.drink-menu__item-price {
    font-size: 0.95rem;
    font-weight: bold;
    color: #333;
    margin: 0.2rem 0; /* Etwas Abstand zwischen Preisen */
}

.drink-menu__category-title {
    font-size: 2rem; /* Große Schrift */
    font-weight: bold; /* Fette Schrift für bessere Sichtbarkeit */
    text-align: center; /* Zentrierte Position */
    margin: 2rem 0; /* Abstand nach oben und unten */
    color: var(--primary-color); /* Farbe passend zum Design */
    font-family: var(--heading-font); /* Einheitliche Überschrift-Schriftart */
    text-transform: uppercase; /* Optional: Großbuchstaben */
    letter-spacing: 1px; /* Optional: Leichter Buchstabenabstand für Eleganz */
}

.drink-menu__item-note {
    font-size: 0.9rem;
    font-family: var(--body-font);
    color: #6b1fb2; /* Primärfarbe passend zu den Buttons */
    font-style: italic;
    margin-top: 0.5rem;
    text-align: center; /* Zentriert den Text unter den anderen Infos */
}
.drink-menu__note {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #6b1fb2;
    font-size: 1rem;
    font-family: var(--body-font);
    color: var(--text-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    text-align: center;
    line-height: 1.6;
}



/* Responsive Design */
@media screen and (max-width: 768px) {
    .drink-menu__items {
        grid-template-columns: 1fr; /* Items in einer Spalte auf kleineren Geräten */
    }

    .drink-menu__category-title {
        font-size: 1.5rem; /* Kleinere Schriftgröße für mobile Geräte */
        margin: 1.5rem 0; /* Weniger Abstand für kleinere Bildschirme */
    }
}