﻿/* =========================================
   1. VARIABLEN & GRUND-SETUP
   ========================================= */
:root {
    --bollenhut-rot: #e60000;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* GLOBALER LINK-FIX: Erzwingt Weiß für alle Zustände */
a, a:visited, a:active, a:link {
    color: var(--text-white) !important;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--bollenhut-rot) !important;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), 
                url('img/tannen.jpg') no-repeat center center;
    background-size: cover;
    
    /* NEU: Der Parallax-Effekt & Farbmischung */
    background-attachment: fixed; 
    background-blend-mode: multiply;
    
    color: var(--text-white);
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* =========================================
   2. LAYOUT-CONTAINER (VEREINHEITLICHT)
   ========================================= */
.container {
    width: 100%;
    max-width: 800px; /* Dieser Wert gilt nun für ALLE Seiten */
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    margin: 0 auto;
}


header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 70vh; 
    border-radius: 12px;
    border: 2px solid var(--bollenhut-rot);
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
}

/* Spezielle Anpassung für den Container, damit das Bild breiter werden darf */
.container {
    width: 100%;
    max-width: 800px; /* Von 480px auf 800px erhöht */
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}
h1 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    margin-top: 0;
    color: var(--text-white);
}

/* =========================================
   3. BUTTONS (Spotify, Merch, Songs etc.)
   ========================================= */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 18px;
    text-align: center;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.btn:hover {
    background-color: var(--bollenhut-rot);
    border-color: var(--bollenhut-rot);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 0, 0, 0.3);
    color: white !important;
}

/* Spezial-Button Animation */
.btn-highlight {
    background-color: var(--bollenhut-rot);
    border-color: var(--bollenhut-rot);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* =========================================
   4. CONTENT & TERMINE
   ========================================= */
.content-box {
    width: 100%;
    background: rgba(26, 26, 26, 0.6); /* Transparenter */
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid rgba(230, 0, 0, 0.2); /* Dezent roter Rand */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    transition: var(--transition);
}

.content-box:hover {
    border-color: var(--bollenhut-rot);
    box-shadow: 0 0 20px rgba(230, 0, 0, 0.2);
}
.termin-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    gap: 10px;
}

.termin-item:last-child { border-bottom: none; }

.date { color: var(--bollenhut-rot); font-weight: bold; }

.btn-small {
    background: transparent;
    border: 1px solid var(--bollenhut-rot);
    color: var(--bollenhut-rot) !important;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.btn-small:hover {
    background: var(--bollenhut-rot);
    color: white !important;
}

/* =========================================
   5. FOOTER & SOCIALS
   ========================================= */
footer {
    margin-top: 40px;
    width: 100%;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.social-icons a {
    font-size: 1.5rem;
}

.legal-footer {
    font-size: 0.85rem;
    color: var(--text-gray); /* Farbe für das Trennzeichen | */
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
}
/* =========================================
   6. SHOP-SYSTEM (NEU)
   ========================================= */
.shop-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px !important;
}

.product-img-placeholder {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--bollenhut-rot);
    border: 1px dashed var(--bollenhut-rot);
}

.product-info {
    text-align: left;
    flex-grow: 1;
}

.product-info h3 {
    margin: 0;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: normal;
}

.price {
    color: var(--bollenhut-rot);
    font-weight: bold;
    margin: 3px 0;
}

.stock-info {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 8px;
}
/* =========================================
   SHOP-DESIGN & FORMULARE
   ========================================= */
.shop-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px !important;
}

.product-img-placeholder {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--bollenhut-rot);
    border: 1px dashed var(--bollenhut-rot);
}

.product-info h3 {
    margin: 0;
    font-size: 1rem;
    color: white;
}

.price {
    color: var(--bollenhut-rot);
    font-weight: bold;
    margin: 3px 0;
}

.stock-info {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.termin-item:hover {
    background: rgba(230, 0, 0, 0.05);
    border-left: 3px solid var(--bollenhut-rot);
    padding-left: 10px;
    transition: all 0.3s ease;
}


/* Kontaktformular Styling */
.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    box-sizing: border-box;
    font-family: inherit;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--bollenhut-rot);
}
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    margin: 15% auto;
    padding: 15px;
    width: 90%;
    max-width: 500px;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--bollenhut-rot);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(230, 0, 0, 0.5);
}

.close-btn {
    position: absolute;
    top: -40px; right: 0;
    color: white; font-size: 35px; cursor: pointer;
}
/* =========================================
   7. BIOGRAFIE BILDER FIX
   ========================================= */
.bio-image-large {
    width: 100%;             /* Nutzt die volle Breite bis zum Max-Wert */
    max-width: 450px;        /* Verhindert, dass das Bild zu riesig wird */
    height: auto;            /* Verhindert Verzerrungen */
    display: block;
    margin: 0 auto 20px auto; /* Zentriert das Bild und gibt Abstand zum Text */
    border-radius: 12px;
    border: 1px solid rgba(230, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Optional: Für Tablets/Desktops nebeneinander */
@media (min-width: 768px) {
    .bio-text-block {
        display: flex;
        align-items: flex-start;
        gap: 30px;
        margin-bottom: 50px;
    }

    .bio-image-large {
        width: 300px; /* Kleinere, feste Breite im Desktop-Layout */
        margin: 0;    /* Entfernt die Zentrierung für Links-Bündigkeit */
        flex-shrink: 0;
    }
}footer {
    margin-top: 30px; /* Erzeugt den Abstand (Leerzeile) nach oben */
    padding-top: 10px;
    text-align: center;
}

.legal-footer, .legal-links {
    margin-top: 15px; /* Zusätzlicher Abstand direkt vor Impressum/Datenschutz */
    font-size: 0.8rem;
}