/* ============================================
   KISSING GEGEN RECHTS - ANTIFA DESIGN
   Schwarz | Rot | Weiß
   ============================================ */

:root {
    --color-black: #000000;
    --color-red: #dc143c;
    --color-white: #ffffff;
    --color-gray-light: #f5f5f5;
    --color-gray-dark: #222222;
    --color-text: #f7f5f5;
    --color-text-black:var(--color-black)
    --color-border: #e0e0e0;
    
    --font-display: 'Roboto Condensed', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 8px 24px rgba(0, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */

#mainNav {
    background: var(--color-black);
    border-bottom: 3px solid var(--color-red);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#mainNav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: brightness(1.1);
    transition: var(--transition);
}

.brand-logo:hover .logo-img {
    transform: scale(1.05);
    filter: brightness(1.3);
}

.brand-text {
    color: var(--color-red);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: none;
}

@media (min-width: 768px) {
    .brand-text {
        display: inline;
    }
}

.navbar-nav .nav-link {
    color: var(--color-white) !important;
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    margin-left: 20px;
    transition: var(--transition);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::before {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-banner {
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
    color: var(--color-white);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--color-red);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(220, 20, 60, 0.05) 2px,
        rgba(220, 20, 60, 0.05) 4px
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 8vw, 72px);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-logo {
    max-width: 100%;
    height: auto;
    width: clamp(200px, 50vw, 500px);
    margin: 0 auto 24px auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    transition: var(--transition);
}

.hero-logo:hover {
    transform: scale(1.03);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--color-red);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-divider {
    width: 100px;
    height: 4px;
    background: var(--color-red);
    margin: 0 auto;
}

@media (max-width: 576px) {
    .hero-banner {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.animate-in {
    animation: slideInUp 0.7s cubic-bezier(.2,.8,.2,1) forwards;
}

/* Stagger for print cards specifically */
#printables .print-card.animate-in:nth-of-type(1) { animation-delay: 0.08s; }
#printables .print-card.animate-in:nth-of-type(2) { animation-delay: 0.16s; }
#printables .print-card.animate-in:nth-of-type(3) { animation-delay: 0.24s; }
#printables .print-card.animate-in:nth-of-type(4) { animation-delay: 0.32s; }
#printables .print-card.animate-in:nth-of-type(5) { animation-delay: 0.40s; }
#printables .print-card.animate-in:nth-of-type(6) { animation-delay: 0.48s; }

/* ============================================
   SECTION STYLING
   ============================================ */

main section {
    padding: 80px 20px;
    position: relative;
}

@media (max-width: 768px) {
    main section {
        padding: 50px 20px;
    }
}

h2#share {
  scroll-margin-top: 10vh; /* Reagiert dynamisch auf die Bildschirmhöhe */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--color-black);
}

.section-header.light h2 {
    color: var(--color-white);
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-black);
    margin-top: 12px;
    font-weight: 500;
}

.header-line {
    width: 80px;
    height: 3px;
    background: var(--color-red);
    margin: 16px auto;
}

/* ============================================
   FEATURED NEWS SECTION
   ============================================ */

.featured-section {
    background: var(--color-gray-light);
    border-top: 3px solid var(--color-red);
    border-bottom: 3px solid var(--color-red);
}

.featured-news-container {
    max-width: 900px;
    margin: 0 auto;
}

.featured-article {
    background: var(--color-white);
    border-left: 8px solid var(--color-red);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: slideInUp 0.8s ease;
}

.featured-article:hover {
    box-shadow: var(--shadow-strong);
    transform: translateY(-4px);
}

.featured-article .article-date {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-red);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.featured-article h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.featured-article .article-excerpt {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.5;
}

.featured-article .article-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

/* ============================================
   NEWS ARCHIVE SECTION
   ============================================ */

.archive-section {
    background: var(--color-white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.news-card {
    border-color: var(--color-red);
    color: var(--color-white);
    background: var(--color-gray-light);
    border: 2px solid var(--color-border);
    border-left: 4px solid #dc143c;
    border-top: 4px solid var(--color-red);
    padding: 24px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.news-card:hover {
    border-color: var(--color-red);
    box-shadow: var(--shadow-strong);
    transform: translateY(-6px);
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(220, 20, 60, 0.03);
    transition: var(--transition);
}

.news-card:hover::before {
    left: 0;
}

.news-card-content {
    position: relative;
    z-index: 1;
}

.news-card .article-date {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--color-red);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.news-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-card p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
}

/* ============================================
   SHOP SECTION
   ============================================ */

.shop-section {
    background: var(--color-gray-light);
    border-top: 3px solid var(--color-red);
}

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--color-gray-dark);
    border: 2px solid var(--color-text);
    color: var(--color-text);
    padding: 10px 24px;
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
}

.filter-btn.active {
    box-shadow: 0 0 0 2px var(--color-red);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
}

.product-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--color-red);
    box-shadow: var(--shadow-strong);
    transform: translateY(-8px);
}

.product-image {
    width: 100%;
    height: 200px;
    background: var(--color-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: var(--color-red);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--color-red);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-description {
    font-size: 13px;
    color: var(--color-text);
    margin-bottom: 16px;
    flex-grow: 1;
    line-height: 1.5;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-red);
    margin-bottom: 12px;
}

.product-btn {
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    padding: 12px 20px;
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.product-btn:hover {
    background: var(--color-red);
    transform: translateX(0);
}

/* ============================================
   ORDER MODAL
   ============================================ */

.order-modal {
    border: 2px solid var(--color-red);
}

.order-modal .modal-header {
    border-bottom: 2px solid var(--color-red);
    background: var(--color-black);
    color: var(--color-white);
}

.order-modal .modal-title {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
}

.order-modal .form-control {
    border: 1px solid var(--color-border);
    border-radius: 0;
    padding: 10px 12px;
    font-size: 14px;
}

.order-modal .form-control:focus {
    border-color: var(--color-red);
    box-shadow: 0 0 0 0.2rem rgba(220, 20, 60, 0.25);
}

.order-modal .form-label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
    color: #000000;
}

#submitOrderBtn {
    background: var(--color-red);
    color: var(--color-white);
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

#submitOrderBtn:hover {
    background: var(--color-black);
    transform: scale(1.02);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
    color: var(--color-white);
    text-align: center;
    padding: 80px 20px;
    border-top: 4px solid var(--color-red);
    border-bottom: 4px solid var(--color-red);
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 52px);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    background: var(--color-red);
    color: var(--color-white);
    padding: 14px 32px;
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--color-red);
}

.social-link:hover {
    background: var(--color-white);
    color: var(--color-red);
    transform: scale(1.05);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 60px 20px 30px;
    border-top: 3px solid var(--color-red);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    text-align: left;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--color-red);
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer-section a {
    list-style: none;
    margin-bottom: 10px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--color-red);
    padding-left: 6px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--color-gray-dark);
    color: #999;
    font-size: 13px;
}

/* ============================================
   PLACEHOLDER STATES
   ============================================ */

.placeholder-loading {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 14px;
    animation: pulse 2s infinite;
}

/* ============================================
   ACCESSIBILITY & UTILITIES
   ============================================ */

.btn-action {
    background: var(--color-red);
    color: var(--color-white);
    border: none;
}

.btn-action:hover {
    background: var(--color-black);
}

a {
    color: var(--color-red);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-black);
}

/* Active nav link styling */
.navbar-nav .nav-link.active {
    color: var(--color-red) !important;
    font-weight: 700;
    border-bottom: 3px solid var(--color-red);
    padding-bottom: 6px;
}

/* Smooth Scrolling für bessere UX */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: more) {
    :root {
        --color-border: #000000;
    }
    
    .news-card,
    .product-card {
        border-width: 3px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --color-gray-light: #1a1a1a;
        --color-gray-dark: #444;
    }

    body {
        background: var(--color-black);
        color: var(--color-white);
    }

    .featured-article,
    .product-card {
        background: var(--color-gray-dark);
        border-color: var(--color-red);
        color: var(--color-white);
    }
}

/* ============================================
   VERSION 4 STYLES - Progressive Disclosure
   ============================================ */

/* Kleinere Hero Section */
.hero-banner {
    padding: 50px 20px !important;
}

.hero-logo {
    width: clamp(150px, 35vw, 350px) !important;
}

@media (max-width: 576px) {
    .hero-banner {
        padding: 40px 20px !important;
    }
}

/* Gedämpfte Hintergründe statt grellem Weiß */
body {
    background: #f0f0f0 !important;
}

/* Intro Box Section */
.intro-box {
    background: #e8e8e8;
    padding: 60px 20px;
    border-bottom: 3px solid var(--color-red);
}

.intro-content {
    margin: 0 auto;
    padding: 40px;
    background: #f5f5f5;
    border-left: 8px solid var(--color-red);
    box-shadow: var(--shadow);
    color: #222222;
}

.intro-content * {
    color: #222222;
}

.intro-tagline {
    font-family: var(--font-display);
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-text {
    font-size: 16px;
    line-height: 1.7;
    color: #222222;
    margin-bottom: 15px;
}

/* CTA Quick Section */
.quick-cta {
    background: var(--color-black);
    color: var(--color-white);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 5px solid var(--color-red);
}

.quick-cta h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    background: var(--color-red);
    color: var(--color-white);
    padding: 15px 35px;
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--color-red);
    display: inline-block;
}

.cta-btn:hover {
    background: var(--color-white);
    color: var(--color-red);
    transform: scale(1.05);
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.cta-btn.secondary:hover {
    background: var(--color-white);
    color: var(--color-black);
}

/* Values Footer Area */
.values-footer {
    background: #e0e0e0;
    padding: 80px 20px;
    border-top: 3px solid var(--color-red);
}

/* News Archive mit gedämpftem Hintergrund */
.archive-section {
    background: var(--color-gray-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-box {
    background: #f5f5f5;
    padding: 30px;
    border-top: 4px solid var(--color-red);
    text-align: center;
    transition: var(--transition);
}

.value-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.value-emoji {
    font-size: 48px;
    margin-bottom: 15px;
}

.value-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 10px;
}

.value-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #222222;
}

/* Dunkle Schrift in Value Boxen */
.value-box * {
    color: #222222;
}

/* ============================================
   COLLAPSIBLE SECTIONS
   ============================================ */

.collapse-header {
    width: 100%;
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    padding: 20px 30px;
    font-family: var(--font-display);
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    border-left: 6px solid var(--color-red);
}

.collapse-header:hover {
    background: var(--color-gray-dark);
    border-left-width: 10px;
}

.collapse-title {
    flex: 1;
    text-align: left;
}

.collapse-icon {
    font-size: 24px;
    color: var(--color-red);
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.collapse-icon.rotated {
    transform: rotate(180deg);
}

.collapse-content {
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease;
    opacity: 0;
    max-height: 0;
}

.collapse-content.expanded {
    opacity: 1;
    max-height: 5000px;
}

/* Intro Box als collapsible */
.intro-box {
    padding: 0;
}

.intro-box .intro-content {
    margin-top: 0;
    border-left: none;
}

.intro-box .collapse-content {
    padding: 40px 20px;
}

/* Archive Section als collapsible */
.archive-section .collapse-content {
    padding: 0 0 20px 0;
}