/* Grundlegende Stile */
body {
    background-color: #0d0d0d;
    color: #cccccc;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
    max-width: 960px;
}

a {
    color: #4fc3f7; /* Leuchtendes Blau */
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #ffffff;
}

/* --- Seiten-spezifische Hintergründe --- */
body.home-page {
    background-image: url('../img/hero-background.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Hintergrund bleibt beim Scrollen fixiert */
}

/* Dunkler Overlay für bessere Lesbarkeit auf dem Hintergrundbild */
body.home-page::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% schwarzer Overlay */
    z-index: -1; /* Legt den Overlay hinter den Inhalt */
}

body.getraenke-page {
    background-image: url('../img/getraenke-background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body.getraenke-page::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* 60% schwarzer Overlay für besseren Kontrast */
    z-index: -1;
}

body.team-page {
    background-image: url('../img/team-background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body.team-page::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

body.gallery-page {
    background-image: url('../img/gallery-background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body.gallery-page::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Header und Navigation */
header {
    background: #1a1a1a;
    padding: 1rem 0;
    border-bottom: 3px solid #EAD58C; /* Gold-Akzent */
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

header nav ul li {
    display: inline-block;
    margin: 0 20px;
}

header nav ul li a {
    font-family: 'Special Elite', cursive;
    font-size: 1.5rem;
    color: #EAD58C;
    text-transform: uppercase;
}

/* Hauptinhalt */
main {
    padding: 2rem 0;
}

h1, h2, h3, h4 {
    font-family: 'Special Elite', cursive;
    color: #EAD58C; /* Gold-Ton aus dem Logo */
    text-shadow: 2px 2px 4px #000;
}

h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
}

/* Startseite (Hero-Sektion) */
#hero {
    text-align: center;
}

#hero .logo {
    max-width: 250px;
    margin-bottom: 2rem;
    border-radius: 50%;
    border: 5px solid #EAD58C;
}

#hero p {
    max-width: 700px;
    margin: 1rem auto;
    font-size: 1.1rem;
}

/* Getränkekarte */
#getraenke-liste .kategorie {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #1a1a1a;
    border-left: 5px solid #4fc3f7; /* Blauer Akzent */
}

#getraenke-liste .getraenk {
    margin-bottom: 1.5rem;
}

#getraenke-liste .getraenk h3 {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

#getraenke-liste .getraenk .preis {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #cccccc;
    font-weight: bold;
}

/* Neue Getränkekarte Stile */
.menu-category {
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.menu-category h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #EAD58C;
    text-shadow: 2px 2px 4px #000;
    position: relative;
    padding-bottom: 1rem;
}

.menu-category h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4fc3f7, #EAD58C);
    border-radius: 2px;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.menu-item {
    background: #0d0d0d;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4fc3f7, #EAD58C);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: #4fc3f7;
}

.menu-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #EAD58C;
    text-shadow: 1px 1px 2px #000;
}

.drink-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.drink-header h3 {
    margin: 0;
    flex: 1;
}

.drink-price-main {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.price-tag {
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(79, 195, 247, 0.3);
    transition: all 0.3s ease;
}

.drink-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    font-style: italic;
}

/* Entferne die alten Preis-Listen-Stile */
.drink-prices {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drink-prices li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
}

.drink-prices li:last-child {
    border-bottom: none;
}

.drink-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #4fc3f7;
    text-shadow: 1px 1px 2px #000;
}

/* Responsive Design für Getränkekarte */
@media (max-width: 768px) {
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .menu-category {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .menu-item {
        padding: 1.2rem;
    }
    
    .menu-category h2 {
        font-size: 1.8rem;
    }
    
    .drink-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .drink-price-main {
        justify-content: flex-start;
    }
    
    .price-tag {
        font-size: 0.9rem;
        padding: 0.25rem 0.6rem;
    }
}

/* Neue Team-Struktur Stile */
.team-role-group {
    margin-bottom: 3.5rem; /* Abstand zwischen den Rollen-Gruppen */
    width: 100%;
}

.role-heading {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #EAD58C;
}

.team-grid-container {
    display: grid;
    /* Erzeugt automatisch so viele Spalten wie möglich mit einer Mindestbreite von 200px und zentriert sie */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem 1.5rem; /* Vertikaler und horizontaler Abstand */
    justify-items: center; /* Zentriert die Mitarbeiter-Karten horizontal in ihrer Zelle */
}

.mitglied {
    /* Stellt die Karte auf vertikale Ausrichtung um und entfernt den Hintergrund */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: none;
    padding: 0;
}

.mitglied img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #EAD58C;
    flex-shrink: 0;
    margin: 0;
    margin-bottom: 1rem; /* Abstand zwischen Bild und Text */
}

.mitglied-info h3 {
    margin-bottom: 0.25rem;
}

.mitglied-info h4 {
    color: #4fc3f7; /* Blauer Akzent für die Position */
    margin: 0;
    font-weight: normal;
}

/* Stil für das Team-Gruppenfoto */
.team-group-photo-container {
    width: 100%;
    margin-bottom: 2.5rem;
    text-align: center;
}

.team-group-photo-container img {
    max-width: 100%;
    max-height: 400px; /* Verhindert, dass das Bild zu hoch wird */
    width: auto;
    height: auto;
    border-radius: 5px;
}

/* --- Galerie-Seite --- */
#gallery-container {
    display: grid;
    /* Erzeugt automatisch Spalten mit einer Mindestbreite von 300px */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 5px;
    overflow: hidden; /* Stellt sicher, dass das Bild die abgerundeten Ecken respektiert */
    display: flex;
    flex-direction: column;
}

.gallery-item img {
    width: 100%;
    height: 250px; /* Feste Höhe für alle Galerie-Vorschaubilder */
    object-fit: cover; /* Stellt sicher, dass das Bild den Raum füllt, ohne sich zu verzerren */
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item a:hover img {
    transform: scale(1.05);
}

.gallery-info {
    padding: 1rem;
}

.gallery-info h3 {
    margin-top: 0;
}

.gallery-info p {
    font-size: 0.9rem;
    color: #ccc;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    background: #1a1a1a;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.footer-links a {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #4fc3f7;
    border-radius: 20px;
    color: #4fc3f7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background-color: #4fc3f7;
    color: #0d0d0d;
    box-shadow: 0 0 10px #4fc3f7;
}

.drink-icon {
    width: 64px;
    height: 64px;
    vertical-align: middle;
    margin: 0 10px;
    object-fit: contain; /* Verhindert Verzerrung und behält das Seitenverhältnis bei */
    object-position: center; /* Zentriert das Icon */
}

/* Impressum Styles */
body.impressum-page {
    background-image: url('../img/impressum-background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body.impressum-page::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

#impressum {
    max-width: 900px;
    margin: 0 auto;
}

.impressum-section {
    margin-bottom: 3rem;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ic-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #EAD58C;
    border-left: 8px solid #EAD58C;
}

.ooc-section {
    background: linear-gradient(135deg, #2a1a1a 0%, #3a2a2a 100%);
    border: 2px solid #ff6b6b;
    border-left: 8px solid #ff6b6b;
}

.ic-section h2 {
    color: #EAD58C;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.ooc-section h2 {
    color: #ff6b6b;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.ic-content h3, .ooc-content h3 {
    color: #EAD58C;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    border-bottom: 2px solid #EAD58C;
    padding-bottom: 0.3rem;
}

.ooc-content h3 {
    color: #ff6b6b;
    border-bottom: 2px solid #ff6b6b;
}

.ic-content p, .ooc-content p {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.ic-content ul, .ooc-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.ic-content li, .ooc-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.ooc-warning {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: #000;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
    border: 3px solid #ff4444;
}

.ooc-warning h3 {
    color: #000 !important;
    border-bottom: 2px solid #000 !important;
    margin-top: 0 !important;
}

.ooc-warning p {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.ooc-note {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.ooc-note p {
    margin-bottom: 0;
    font-style: italic;
}

/* Responsive Design für Impressum */
@media (max-width: 768px) {
    .impressum-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .ic-section h2, .ooc-section h2 {
        font-size: 1.8rem;
    }
    
    .ic-content h3, .ooc-content h3 {
        font-size: 1.2rem;
    }
    
    .ooc-warning {
        padding: 1rem;
    }
    
    .ooc-warning p {
        font-size: 1rem;
    }
} 