/*
Theme Name: Franks Bushcrafting
Theme URI: https://deine-website.de
Author: Frank
Description: Benutzerdefiniertes Theme für Franks Bushcrafting.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-layout, dark-style
Text Domain: franksbushcrafting
*/

/* --- HIER BEGINNT DEIN ORIGINAL CSS-CODE --- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* NEU: CSS-Variablen für konsistente Wikinger-Farben */
:root {
    --viking-gold: #e3b23e; 
    /* ... füge hier den REST DEINES CSS ein ... */
    --viking-dark-wood: #362a22; 
            --viking-deep-dark: #201915; 
            --viking-text: #4e4b44;
        }

        body {
            /* NEU: Kräftigere Schriftart für den Wikinger-Stil */
            font-family: 'IM Fell Great Primer', serif;
            line-height: 1.6;
            /* NEU: Dunkles, erdiges Braun */
            color: var(--viking-text); /* War: #2c3e50 */
            overflow-x: hidden;
margin-bottom:50;

        }

        /* Navigation */
        nav {
            /* NEU: Dunkles, holzähnliches Gradient */
            background: linear-gradient(135deg, var(--viking-deep-dark) 0%, var(--viking-dark-wood) 100%); /* War: #0f2537, #1a3a52 */
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0,0,0,0.6); /* Stärkerer Schatten */
        }

        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            font-size: 1.5em;
            font-weight: bold;
            /* NEU: Wikinger-Gold */
            color: var(--viking-gold); /* War: #d4af37 */
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links li {
            margin-left: 40px;
        }

        .nav-links a {
            color: #f0f0f0; /* Helle Textfarbe */
            text-decoration: none;
            font-weight: 500;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            /* NEU: Wikinger-Gold */
            color: var(--viking-gold); /* War: #d4af37 */
            border-bottom-color: var(--viking-gold); /* War: #d4af37 */
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            color: #f0f0f0;
            font-size: 1.5em;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            /* NEU: Dunkles, holzähnliches Gradient */
            background: linear-gradient(135deg, var(--viking-dark-wood) 0%, #4f3b33 100%); /* War: #1a3a52, #2c5f7c */
            color: white;
            padding: 100px 20px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
margin-bottom: 100px;
        }

        /* NEU: Hintergrund-Rune für den Hero-Bereich */
        .hero::before {
            content: 'ᛟ'; /* Rune für 'Heimat/Erbe' */
            position: absolute;
            font-family: Arial, sans-serif; /* Für die Rune */
            font-size: 25em; 
            opacity: 0.08; 
            color: var(--viking-gold); 
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-15deg);
            pointer-events: none;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        /* NEU: Akzent-Schrift für Titel */
        .hero h1 {
            font-size: 3.8em;
            font-weight: bold;
            margin-bottom: 25px;
            text-shadow: 4px 4px 8px var(--viking-deep-dark); 
            letter-spacing: 2px;
            font-family: 'Uncial Antiqua', cursive; /* Wikinger-Runen-Stil */
        }

        .hero p {
            font-size: 1.4em;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        }

        .btn-secondary {
            display: inline-block;
            background: none;
            border: 2px solid white;
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            /* NEU: Wikinger-Gold */
            border-color: var(--viking-gold);
            color: var(--viking-gold);
        }

        /* Features Section */
        .features {
            padding: 80px 20px;
            text-align: center;
            /* NEU: Dunkler, holzähnlicher Hintergrund */
            background: #2a221f; 
        }

        .features h2 {
            font-size: 2.5em;
            /* NEU: Wikinger-Gold */
            color: var(--viking-gold); 
            margin-bottom: 60px;
        }

        .feature-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .feature-card {
            /* NEU: Hintergrundfarbe des Holzes angleichen */
            background: rgba(54, 42, 34, 0.4); 
            backdrop-filter: blur(3px); 
            padding: 35px;
            border-radius: 5px; 
            border: 2px solid rgba(227, 178, 62, 0.5); /* Bronze-Rand */
            color: #f0f0f0;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        }

        .feature-card:hover {
            background: rgba(54, 42, 34, 0.7);
            /* NEU: Tieferer Schatten */
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.7);
        }

        .feature-icon {
            font-size: 3em;
            /* NEU: Wikinger-Gold */
            color: var(--viking-gold); 
            margin-bottom: 15px;
            display: block;
        }

        .feature-card h3 {
            /* NEU: Wikinger-Gold */
            color: var(--viking-gold); 
            font-size: 1.6em;
            margin-bottom: 15px;
            font-family: 'Uncial Antiqua', cursive; 
        }

        .feature-card p {
            color: #ccc;
        }

        /* About Section */
        .about {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-content {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .about-text, .about-image {
            flex: 1;
        }

        .about-text h2 {
            font-size: 3em;
            /* NEU: Primärfarbe anpassen */
            color: var(--viking-dark-wood); 
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 10px;
        }

        .about-text h2::after {
            content: '';
            width: 80px;
            height: 3px;
            position: absolute;
            bottom: 0;
            left: 0;
            /* NEU: Wikinger-Gold */
            background: var(--viking-gold); 
        }

        .about-text p {
            font-size: 1.1em;
            margin-bottom: 20px;
            color: var(--viking-text);
        }

        .about-image {
            height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 10px;
            /* NEU: Hintergrund dem Hero anpassen */
            background: linear-gradient(135deg, var(--viking-dark-wood) 0%, #4f3b33 100%);
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
            color: #f0f0f0;
        }

        .about-image {
            /* NEU: Die Axt deutlicher machen */
            font-size: 12em; 
            text-shadow: 0 0 30px var(--viking-gold); 
        }

        /* Core Values */
        .values {
            /* NEU: Heller Holzboden/Sand-Textur */
            background: linear-gradient(135deg, #f5f0e3 0%, #e3dacd 100%); 
            padding: 80px 20px;
        }

        .values-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .value-card {
            background: #fffdf8; 
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            /* NEU: Akzentstreifen in Gold */
            border-top: 5px solid var(--viking-gold); 
            transition: transform 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .value-icon {
            font-size: 2.5em;
            color: var(--viking-dark-wood);
            margin-bottom: 15px;
            display: block;
        }

        .value-card h3 {
            font-size: 1.4em;
            color: var(--viking-dark-wood);
            margin-bottom: 10px;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 80px 20px;
            color: white;
            /* NEU: Dunkles Holz/Leder */
            background: linear-gradient(135deg, var(--viking-dark-wood) 0%, var(--viking-deep-dark) 100%); 
        }

        .cta-section h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
            /* NEU: Wikinger-Gold */
            color: var(--viking-gold);
            font-family: 'Uncial Antiqua', cursive; 
        }

        .cta-section p {
            font-size: 1.2em;
            margin-bottom: 40px;
        }

        .btn-primary {
            display: inline-block;
            /* NEU: Wikinger-Gold */
            background: var(--viking-gold); 
            /* NEU: Dunkle Textfarbe */
            color: var(--viking-dark-wood); 
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(227, 178, 62, 0.4); 
        }

        .btn-primary:hover {
            background: #f7d26b; /* Helleres Gold */
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(227, 178, 62, 0.6);
        }

        /* Shop Support */
        .shop-support {
            max-width: 1200px;
            margin: 40px auto;
            padding: 30px;
            border-radius: 10px;
            /* NEU: Hintergrundfarbe anpassen */
            background: #fdfae7; 
            text-align: left;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            /* NEU: Goldener Rand */
            border-left: 6px solid var(--viking-gold); 
        }

        .shop-support h3 {
            color: var(--viking-dark-wood);
            margin-bottom: 10px;
            font-size: 1.5em;
        }

        .shop-support p {
            color: var(--viking-text);
        }

        /* Footer */
        footer {
            /* NEU: Sehr dunkles Holz */
            background: var(--viking-deep-dark); 
            color: white;
            padding: 50px 20px 20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            padding-bottom: 30px;
        }

        .footer-section h4 {
            font-size: 1.2em;
            margin-bottom: 20px;
            /* NEU: Wikinger-Gold */
            color: var(--viking-gold); 
            font-family: 'Uncial Antiqua', cursive; 
        }

        .footer-section p, .footer-section a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
        }

        .footer-section a:hover {
            /* NEU: Wikinger-Gold */
            color: var(--viking-gold); 
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            border-top: 1px solid #444;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9em;
            color: #aaa;
        }

        /* Utility Classes (For scroll animations) */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsiveness */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
                background: var(--viking-dark-wood);
                position: absolute;
                top: 60px; /* Adjust based on nav height */
                left: 0;
                padding: 10px 0;
            }

            .nav-links.visible {
                display: flex;
            }

            .nav-links li {
                margin: 10px 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2.8em;
            }

            .about-content {
                flex-direction: column;
            }

            .about-image {
                font-size: 8em;
                height: 300px;
                order: -1;
            }
            
            .hero::before {
                font-size: 15em;
            }
        }
