/* ==========================================================================
   1. CORE- & BASE-STYLING (Für alle Seiten gültig)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: '-apple-system', BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #000000;
    overflow-x: hidden;
}

/* --- REPARIERTES SCROLL SNAPPING (NUR STARTSEITE) --- */
.index-page {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.index-page body {
    height: 100vh;
}

/* --- GEMEINSAME NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0));
    backdrop-filter: blur(5px);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo a {
    text-decoration: none;
    color: #000000;
}

nav a {
    position: relative;
    text-decoration: none;
    color: #000000;
    margin-left: 20px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 4px;
}

nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

nav a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* --- GEMEINSAMER BANNER / SUB-HERO (Für die Unterseiten) --- */
.sub-hero {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.jesus-lebt-page .sub-hero { height: 60vh; }
.ueber-uns-page .sub-hero { height: 40vh; }

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    padding: 0 20px;
}

/* --- GEMEINSAMER INFOBOX- & FOOTER-BEREICH --- */
.info-section {
    background-color: #0b0b0b;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.info-wrapper {
    max-width: 500px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.brand-area {
    margin-bottom: 40px;
}

.brand-text {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.brand-slogan {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888888;
    margin-top: 5px;
}

.info-box {
    background-color: #141414;
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid #222222;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.info-box h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-box p {
    font-size: 0.95rem;
    color: #cccccc;
    font-weight: 300;
    line-height: 1.6;
}

.shop-now-button {
    display: inline-block;
    width: 100%;
    max-width: 320px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 18px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
    margin-bottom: 40px;
}

.shop-now-button:hover {
    background-color: #e5e5e5;
    transform: translateY(-2px);
}

.main-footer {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    font-size: 0.75rem;
    color: #555555;
    letter-spacing: 1px;
}

.main-footer a, .impressum-link {
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.main-footer a:hover, .impressum-link:hover {
    color: #007aff;
    text-shadow: 0 0 10px rgba(0, 122, 255, 0.6);
}


/* ==========================================================================
   2. SPEZIFISCHES STYLING FÜR INDEX.PHP (STARTSEITE)
   ========================================================================== */
.index-page .fashion-section, 
.index-page .info-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.index-page .info-section {
    height: 100vh;
    padding: 40px 20px;
}

.fashion-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.fashion-section .overlay {
    background: rgba(0, 0, 0, 0.3);
}

.content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    padding: 0 20px;
}

.content h1 {
    font-size: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.8), 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8);
}

.cta-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
}

.btn-primary:hover {
    background-color: transparent;
    color: #ffffff;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8);
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
}


/* ==========================================================================
   3. SPEZIFISCHES STYLING FÜR JESUS-LEBT ORDER
   ========================================================================== */
.jesus-lebt-page .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.6);
}

.seo-section {
    background-color: #ffffff;
    color: #000000;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.article-container {
    max-width: 700px;
    width: 100%;
    line-height: 1.8;
}

.article-container h2 {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    margin-top: 40px;
    border-left: 4px solid #000000;
    padding-left: 15px;
}

.article-container h2:first-of-type {
    margin-top: 0;
}

.article-container p {
    font-size: 1.05rem;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 300;
}

blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: #262626;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
    margin: 30px 0;
    text-align: center;
    border: 1px dashed #e0e0e0;
}

.product-section {
    background-color: #0b0b0b;
    color: #ffffff;
    padding: 80px 20px 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.product-wrapper {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.product-wrapper h2 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.product-subtitle {
    color: #888888;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.grid-box {
    background-color: #141414;
    border-radius: 12px;
    border: 1px solid #222222;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.grid-box:hover {
    transform: translateY(-5px);
}

.grid-product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #222222;
}

.grid-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.grid-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.grid-box p {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.5;
}

.shop-btn {
    display: inline-block;
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.shop-btn:hover {
    background-color: #e5e5e5;
}

.jesus-lebt-page .info-section {
    padding: 40px 20px 80px 20px;
}


/* ==========================================================================
   4. SPEZIFISCHES STYLING FÜR UEBER-UNS ORDNER & WERTE-BASIS
   ========================================================================== */
.ueber-uns-page .hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.story-section {
    background-color: #ffffff;
    color: #000000;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.story-container {
    max-width: 680px;
    width: 100%;
    line-height: 1.7;
}

.story-container h2 {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    margin-top: 40px;
}

.story-container h2:first-of-type {
    margin-top: 0;
}

.story-container p {
    font-size: 1.05rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 400;
}

.motto-box {
    font-style: italic;
    font-size: 1.15rem;
    color: #000000;
    padding: 20px;
    background-color: #f7f7f7;
    border-top: 3px solid #000000;
    border-bottom: 3px solid #000000;
    margin: 30px 0;
    font-weight: 500;
    text-align: center;
}

.shipping-notice {
    font-size: 0.9rem;
    color: #666666;
    border-top: 1px solid #eeeeee;
    padding-top: 20px;
    margin-top: 40px;
    line-height: 1.5;
}

.ueber-uns-page .info-section {
    padding: 60px 20px;
}

.ueber-uns-page .brand-area {
    margin-bottom: 30px;
}

.ueber-uns-page .brand-text {
    font-size: 2.2rem;
}

.ueber-uns-page .brand-slogan {
    font-size: 0.85rem;
}

.ueber-uns-page .shop-now-button {
    max-width: 280px;
    padding: 15px 25px;
    font-size: 1rem;
    margin-bottom: 30px;
}

.ueber-uns-page .impressum-link {
    display: inline-block;
    margin-top: 8px;
}


/* ==========================================================================
   5. SPEZIFISCHES STYLING FÜR DIE WERTE-SEITE (TITEL ÜBER VERS)
   ========================================================================== */
.values-page .sub-hero {
    height: 40vh;
}

.story-container h2.block-title {
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 70px;
    margin-bottom: 10px;
    color: #000000;
    border-left: 4px solid #000000;
    padding-left: 15px;
}

.block-intro {
    font-size: 1rem;
    color: #555555;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.5;
}

.werte-liste {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
}

.wert-item {
    padding: 30px 0;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.werte-liste .wert-item:first-of-type {
    border-top: 1px solid #eaeaea;
}

.wert-heading {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #000000;
    margin: 0;
}

.wert-text {
    font-size: 1.15rem !important;
    color: #2c2c2c;
    line-height: 1.7;
    font-style: italic;
    font-weight: 400;
    margin: 0 !important;
}

.wert-bibelstelle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999999;
    font-weight: 600;
    margin-top: 2px;
}


/* ==========================================================================
   6. GLOBALE RESPONSIVE MEDIA QUERIES (VOLLES MOBILE-REDO)
   ========================================================================== */
@media (max-width: 768px) {
    
    /* --- ZWANGSWEISE LUFT RECHTS & LINKS FÜR JEDEN BLOCK --- */
    .seo-section, 
    .product-section, 
    .story-section, 
    .index-page .info-section, 
    .ueber-uns-page .info-section,
    .jesus-lebt-page .info-section {
        padding: 40px 20px !important; /* Verhindert das "Kleben" am Bildschirmrand */
    }

    .story-container,
    .article-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important; /* Verhindert unschöne Doppel-Stauchung */
    }

    /* --- NAVIGATION MOBILE --- */
    header { 
        padding: 15px 20px; 
    }
    
    .logo, .logo a { 
        font-size: 20px; 
    }
    
    nav a {
        margin-left: 12px;
        font-size: 12px;
    }

    /* --- STARTSEITE (INDEX) MOBILE --- */
    .content h1 { 
        font-size: 2rem; 
    }
    
    .content p { 
        font-size: 1rem; 
    }
    
    .btn { 
        padding: 14px 25px; 
        font-size: 11px; 
        width: 100%; 
        max-width: 280px; 
    }
    
    .cta-container { 
        flex-direction: column; 
        align-items: center; 
        gap: 12px; 
    }

    /* --- BANNER / HERO GRÖSSEN MOBILE --- */
    .jesus-lebt-page .sub-hero { height: 45vh; }
    .jesus-lebt-page .hero-content h1 { font-size: 2.2rem; letter-spacing: 3px; }
    
    .ueber-uns-page .sub-hero,
    .values-page .sub-hero { 
        height: 35vh; 
    }
    
    .ueber-uns-page .hero-content h1 { 
        font-size: 1.8rem; 
    }

    /* --- PRODUKT-GRIDS (EINSPALTIG) MOBILE --- */
    .grid-container { 
        grid-template-columns: 1fr; 
        gap: 25px; 
    }
    
    .grid-product-img { 
        height: 200px; 
    }
    
    .product-wrapper h2 {
        font-size: 1.6rem;
    }
    
    .product-subtitle {
        margin-bottom: 35px;
    }

    /* --- TEXT-STYLING & BLOG (JESUS LEBT) MOBILE --- */
    .article-container h2 {
        font-size: 1.45rem;
        margin-top: 30px;
    }
    
    blockquote {
        font-size: 1.05rem;
        padding: 15px;
        margin: 25px 0;
    }

    /* --- WERTE-SEITE DETAILS MOBILE --- */
    .story-container h2.block-title {
        font-size: 1.3rem;
        margin-top: 50px;
        margin-bottom: 12px;
        padding-left: 12px;
    }

    .block-intro {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .wert-item {
        padding: 24px 0;
        gap: 10px;
    }

    .wert-heading {
        font-size: 0.95rem;
        letter-spacing: 1.2px;
    }

    .wert-text {
        font-size: 1.05rem !important;
        line-height: 1.65;
    }

    .wert-bibelstelle {
        font-size: 0.7rem;
        letter-spacing: 0.8px;
        margin-top: 4px;
    }

    /* --- FOOTER & INFOBOX MOBILE --- */
    .brand-text { 
        font-size: 2rem; 
    }
    
    .info-box {
        padding: 25px 20px;
    }
    
    .shop-now-button {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    /* Copyright-Hinweis vor Quetschung schützen */
    .info-section div[style*="font-size: 11px"] {
        padding: 0 15px !important;
    }
}