/* Globales Stylesheet - Elysium Event Buchungen 
   Farbpalette:
   Schwarz: #000000, Schwarz Weich: #1C1C1C, Weiß: #FFFFFF, Dunkelrot: #800000, 
   Gold: #A57C42, Gelbgold: #D4AF37, Champagner: #F7E7CE, 
   Dunkelgrün: #004225, Dunkelblau: #1A1A44
*/

/* 1. Basis-Standards */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #1C1C1C; /* Schwarz Weich als Standard */
    background-color: #FFFFFF; 
}

/* Globale Text-Erzwingung für wichtige Elemente */
.eeb-container p,
.eeb-container span,
.eeb-container label,
.eeb-container strong,
.eeb-container b,
.eeb-container td,
.eeb-container th,
.eeb-event-header-info p,
.eeb-event-header-info label,
.eeb-event-header-info strong {
    color: #1C1C1C;
}

/* Formular-Labels Standard */
label {
    color: #1C1C1C;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 5px;
}

/* 2. Header-Bereich */
header {
    background-color: #1A1A44; /* Dunkelblau */
    color: #FFFFFF; /* Weiß */
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid #D4AF37; /* Gelbgold-Akzent */
}

header img {
    height: 50px;
    margin-right: 20px;
}

header h1 {
    font-size: 1.8em;
    margin: 0;
    color: #F7E7CE; /* Champagner für Überschrift im Header */
    font-weight: bold;
}

/* 3. Navigations- bzw. Fortschrittsleiste */
nav {
    background-color: #D4AF37; /* Gelbgold */
    padding: 10px;
    text-align: center;
}

nav a {
    color: #FFFFFF; /* Weiß */
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: #1C1C1C; /* Schwarz Weich bei Hover oder Aktiv */
}

/* 4. Haupt-Container */
.eeb-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background-color: #F7E7CE; /* Champagner als weicher Hintergrund */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 5. Buttons & Interaktionen */
.eeb-btn-primary {
    background-color: #D4AF37; /* Gelbgold */
    color: #1C1C1C; 
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.eeb-btn-primary:hover {
    background-color: #A57C42; /* Gold */
    color: #FFFFFF;
}

.eeb-btn-secondary {
    background-color: #1C1C1C;
    color: #FFFFFF;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.eeb-btn-secondary:hover {
    background-color: #444444;
}

.eeb-btn-success {
    background-color: #004225; /* Dunkelgrün */
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

/* Links innerhalb des Containers */
.eeb-container a:not(.eeb-btn-primary):not(.eeb-btn-secondary) {
    color: #1A1A44; /* Dunkelblau */
    text-decoration: underline;
}

.eeb-container a:hover {
    color: #A57C42; /* Gold bei Hover */
}

/* 6. Footer-Bereich */
footer {
    background-color: #1C1C1C;
    color: #F7E7CE; /* Champagner Text auf dunklem Grund */
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
    margin-top: 40px;
}

footer a {
    color: #D4AF37;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}