/* ============================= */
/* ✅ GLOBAL STYLES – WOLF SILVER REFINED */
/* ============================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.hidden {
    display: none;
}

body, main, footer {
    max-width: 100vw; /* Breite des Viewports */
    width: 100%;
    align-self: stretch; /* Dehnt den Footer auf volle Breite */
}

body {
    height: 100%; /* Gesamte Höhe nutzen */
    max-width: 100vw;
    width: 100%;
    align-self: stretch;
    background-color: #121212; /* Dunkler Hintergrund */
    color: #C0C0C0; /* Dezentes Silber-Grau */
    font-family: 'Roboto', sans-serif;
    font-weight: 300; /* Leichterer Look für bessere Lesbarkeit */
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(18, 18, 18, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    transition: all 0.4s ease;
}

/* Einheitliche Überschriften (leichter, dezent mit Rot wie bei FAQ) */
h1, h2, h3 {
    text-align: center;
    color: #C0C0C0; /* Silber-Grau */
    font-weight: 400; /* Etwas dünner für edleren Look */
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.4); /* Dezentes Rot-Highlight */
}

/* Dezente Unterstreichung */
h1::after, h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8B0000, #C0C0C0);
    margin: 8px auto;
    border-radius: 2px;
}

a {
    color: #C0C0C0;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #FFFFFF;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}
/* ============================= */
/* ✅ BUTTONS & LINKS – WOLF DYNAMICS */
/* ============================= */

button, .btn {
    background: linear-gradient(135deg, #222, #444);
    color: #C0C0C0;
    border: 2px solid #505050;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

button:hover, .btn:hover {
    background: linear-gradient(135deg, #444, #666);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

a {
    color: #C0C0C0;
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
}

a:hover {
    color: white;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
}
/* ============================= */
/* ✅ ACCORDION – WOLF SHADOW EFFECT */
/* ============================= */

.accordion-item {
    background: linear-gradient(145deg, #1e1e1e, #292929);
    border: 2px solid #505050;
    border-bottom: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    margin: 15px 0;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

/* Aktives Element hebt sich optisch ab */
.accordion-item.active {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

/* Header */
.accordion-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    color: #FF3B3B;
    font-weight: bold;
    font-weight: 400;
    user-select: none;
    position: relative;
    transition: all 0.3s;
}

/* Hover- und Aktiv-Effekte */
.accordion-header:hover {
    background: linear-gradient(135deg, #3a3a3a, #505050);
    transform: scale(1.02);
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.4);
}

.accordion-header::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #8B0000, transparent);
    opacity: 0.6;
}

.accordion-item.open .accordion-content {
    display: block;
}

/* Inhalt */
.accordion-content {
    background: rgba(46, 46, 46, 0.95);
    display: none;
    color: #E0E0E0;
    padding: 10px;
    max-height: 0;
    overflow: hidden;
    transform-origin: top;
    transition: max-height 0.5s ease, transform 0.5s ease;
    opacity: 0;
    border-radius: 5px;
}

/* Animation beim Öffnen */
.accordion-item.active .accordion-content {
    max-height: 500px;
    animation: subtle-glow 0.8s ease-in-out;
    opacity: 1;
}

@keyframes subtle-glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    }
}
/* ============================= */
/* ✅ TIMELINE – WOLF GLOW EFFECT */
/* ============================= */

.timeline-step {
    position: relative;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
}


.timeline-step:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

/* Fortschritts-Animation */
.timeline-step:hover::before {
    content: attr(data-title);
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    background: rgba(255, 0, 0, 0.5);
    animation: glitch 0.2s infinite alternate;
}

#timeline-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #222;
    color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    text-align: center;
    z-index: 1000;
}

#timeline-popup.visible {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes glitch {
    0% { transform: skew(0deg); }
    25% { transform: skew(-5deg); }
    50% { transform: skew(5deg); }
    75% { transform: skew(-3deg); }
    100% { transform: skew(0deg); }
}

/* ✅ Schließen-Button */
.close-btn {
    background: red;
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

/* ============================= */
/* ✅ SECTIONS & TITLES IM FAQ-STYLE */
/* ============================= */

.section-title {
    background: linear-gradient(145deg, #292929, #1e1e1e); /* Gleicher dunkler Verlauf */
    padding: 20px;
    margin: 20px 0;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.4s ease;
    font-weight: bold;
    color: #C0C0C0;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
    font-size: 1.2em;
    text-align: center;
}

/* ✅ Kleiner roter Balken für extra Detail */
.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8B0000, transparent);
    margin: 8px auto;
    border-radius: 2px;
    opacity: 0.8;
}


/* ✨ Hover-Effekt */
.section-title:hover {
    background: rgba(139, 0, 0, 0.9); /* Rotes Highlight */
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(192, 192, 192, 0.8);
}

/* ============================= */
/* ✅ STYLE GALLERY – WOLF EDITION */
/* ============================= */

#style-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

/* ✅ Karten-Stil */
.style-card {
    border: 2px solid #505050; /* Metallischer Rand */
    padding: 15px;
    text-align: center;
    background: linear-gradient(145deg, #1e1e1e, #292929); /* Dunkler Hintergrund */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* ✅ Hover-Effekt */
.style-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8); /* Starker roter Glow */
}

/* ✅ Blutspritzer beim Hover */
.style-card::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.7) 20%, transparent 70%);
    transform: scale(0);
    transition: transform 0.4s ease-out;
    pointer-events: none;
    z-index: 0;
}

.style-card:hover::before {
    transform: scale(1.5);
}

/* ✅ Bilder */
.style-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s;
    z-index: 1;
    position: relative;
}

.style-card:hover .style-image {
    transform: scale(1.1);
}
/* ============================= */
/* ✅ LIGHTBOX – WOLF SHADOW */
/* ============================= */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.5s ease-in-out;
}

/* ✅ Lightbox-Content */
.lightbox-content {
    background: #1E1E1E;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.7);
    animation: zoomIn 0.4s ease-out;
}

/* ✅ Lightbox-Bild */
.style-image-large {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

/* ✅ Close-Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
    background: #8B0000;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
}

.close-btn:hover {
    background: #FF3D00;
    transform: scale(1.1);
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0.5;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.toast {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
    transition: opacity 0.5s ease-in-out;
}

.toast.success {
    background-color: #28a745;
}

.toast.error {
    background-color: #dc3545;
}

.toast.warning {
    background-color: #ffc107;
}

.toast.info {
    background-color: #17a2b8;
}


