/* style.css – Minimal & effektiv */

:root {
    --bg-dark: #434342;
    --card-mocha: #5e4b3a;
    --accent-gold: #b59455;
    --text-light: #ffffff;
}

body {
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: sans-serif;
    margin: 0;
}

/* Header */
.main-header {
    background: var(--card-mocha);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 3px solid var(--accent-gold);
}

.site-title {
    font-size: 4rem;
    -webkit-text-stroke: 1px var(--accent-gold);
    margin: 0;
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 20px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--accent-gold);
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin: 20px 0;
}

/* Section Title – MIT ABSTAND */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin: 60px 0 40px 0;  /* Mehr Abstand oben und unten */
}

/* Modul-Grid – EINFACH & ZENTRIERT */
.module-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
}

.module-card {
    background: var(--card-mocha);
    border: 2px solid #222;
    border-radius: 12px;
    padding: 30px 20px;
    width: 300px;
    text-decoration: none;
    color: var(--text-light);
}

.module-card h2 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
}

.module-card p {
    margin: 0 0 15px 0;
    opacity: 0.8;
}

/* Badges entfernt */
.module-status {
    display: none;
}

/* Modul-Nummern entfernt */
.module-number {
    display: none;
}

/* Campfire */
.campfire-entrance {
    background: #7b6b5a;
    max-width: 1200px;
    margin: 40px auto;
    padding: 60px 20px;
    border-radius: 20px;
    text-align: center;
}

/* Features ausgeblendet */
.features {
    display: none;
}

/* Footer */
footer {
    background: #222;
    padding: 40px;
    text-align: center;
    border-top: 2px solid var(--accent-gold);
}

/* Sprachumschalter */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.lang-btn {
    background: var(--card-mocha);
    color: var(--text-light);
    border: 2px solid #222;
    padding: 8px 15px;
    border-radius: 30px;
    cursor: pointer;
}

.lang-btn.active {
    background: var(--accent-gold);
    color: #000;
}

.lang-btn img {
    width: 20px;
    height: 15px;
}

/* Responsive */
@media (max-width: 900px) {
    .module-card {
        width: 280px;
    }
}

@media (max-width: 600px) {
    .module-card {
        width: 100%;
    }
    .site-title {
        font-size: 2.5rem;
    }
    .section-title {
        margin: 40px 0 30px 0;
    }
}
/* ====================
   RESTPROBLEME-SAMMLER
   ==================== */

/* 1. HOVER-EFFEKT für Boxen (zeigen dass klickbar) */
.module-card {
    transition: all 0.2s ease;
    cursor: pointer;
}

.module-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
    background: #6b5a4a;  /* Etwas heller */
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* 2. CAMPFIRE BUTTON – reparieren */
.campfire-button {
    display: inline-block !important;
    background: var(--accent-gold) !important;
    color: #000 !important;
    padding: 15px 40px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    margin-top: 30px !important;
    border: 2px solid var(--accent-gold) !important;
    transition: all 0.2s ease;
}

.campfire-button:hover {
    background: #8b7a4d !important;
    color: #fff !important;
    border-color: #fff !important;
    transform: scale(1.05);
}

/* 3. LET'S GO BUTTON – dicker machen */
.cta-button {
    padding: 15px 50px !important;  /* Breiter */
    font-size: 1.3rem !important;
    border: 3px solid var(--accent-gold) !important;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #8b7a4d !important;
    color: #fff !important;
    border-color: #fff !important;
    transform: scale(1.05);
}

/* 4. ABSTAND für "Dein Weg zu Bazzite" */
.section-title {
    margin-bottom: 50px !important;  /* Mehr Abstand nach unten */
    padding-top: 20px !important;
}

/* 5. CAMPFIRE-FEATURES – mehr Platz */
.campfire-features {
    display: flex !important;
    justify-content: center !important;
    gap: 40px !important;
    flex-wrap: wrap !important;
    margin: 30px 0 !important;
}

.feature {
    padding: 12px 30px !important;
    background: var(--card-mocha) !important;
    border-radius: 40px !important;
    border: 1px solid var(--accent-gold) !important;
    font-size: 1.1rem !important;
    white-space: nowrap !important;
}

/* 6. ALLE LINKS klickbar anzeigen */
a {
    cursor: pointer;
}

/* 7. FALLBACK für mobile */
@media (max-width: 600px) {
    .feature {
        white-space: normal !important;
        width: 100% !important;
        text-align: center !important;
    }
    .section-title {
        margin-bottom: 30px !important;
    }
}
/* ====================
   FINALER COMMIT – VERSprochen!
   ==================== */

/* 1. VISIT CAMPFIRE IM HEADER ENTFERNEN */
.campfire-mini-link {
    display: none !important;
}

/* 2. NUR 2 FEATURES – Terminal + Bazzi */
.campfire-features {
    display: flex !important;
    justify-content: center !important;
    gap: 60px !important;  /* Mehr Platz für 2 Elemente */
    margin: 40px 0 !important;
}

/* 3D-Campfire Feature ausblenden */
.campfire-features .feature:nth-child(2) {
    display: none !important;
}

/* Die beiden verbleibenden Features schöner machen */
.feature {
    padding: 15px 40px !important;
    font-size: 1.2rem !important;
    background: var(--card-mocha) !important;
    border: 2px solid var(--accent-gold) !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
}

/* 3. LET'S GO BUTTON – Weißer Balken-FIX */
.cta-button {
    display: inline-block !important;
    background: var(--accent-gold) !important;
    color: #000 !important;
    padding: 18px 60px !important;  /* Größer */
    font-size: 1.4rem !important;
    font-weight: bold !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    border: 3px solid var(--accent-gold) !important;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4) !important;
    margin: 30px 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #8b7a4d !important;
    color: #fff !important;
    border-color: #fff !important;
    transform: scale(1.05);
}

/* Alle Zustände sichtbar halten */
.cta-button:link,
.cta-button:visited,
.cta-button:active,
.cta-button:focus {
    background: var(--accent-gold) !important;
    color: #000 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* 4. THE BAZZITE GUIDE – größer */
.site-subtitle {
    font-size: 1.8rem !important;
    margin-top: 10px !important;
}

/* 5. Responsive Anpassungen */
@media (max-width: 600px) {
    .feature {
        width: 100% !important;
        text-align: center !important;
    }
    .campfire-features {
        gap: 20px !important;
        flex-direction: column !important;
    }
    .cta-button {
        padding: 15px 40px !important;
        font-size: 1.2rem !important;
    }
}
