/* --- DEINE ORIGINALEN FARBVARIABLEN --- */
:root {
    --color-primary: #2e531a;   /* Dunkelgrün */
    --color-secondary: #4A554A;  /* Salbeigrün */
    --color-accent: #9a3725;    /* Terrakotta-Rot */
    --color-dark: #222222;
    --color-light: #f9f9f9;
    --color-background: #E6ECE6;
    --color-paper: #fbf9f4;      /* Mattes Zeitungsweiß */
}

/* --- RESET & GLOBALE STYLES --- */
* {
    margin: 0; padding: 0; box-sizing: border-box;
}

html, body {
    width: 100%; max-width: 100%; overflow-x: hidden; position: relative;
}

body {
    background-color: var(--color-background);
    color: #333; line-height: 1.6;
}

/* --- DEIN ORIGINAL-RAUSCHFILTER OVERLAY --- */
.vintage-border, .blog-card {
    position: relative;
}
.vintage-border::after, .blog-card::after {
    content: "";
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    pointer-events: none;
    border: 1px solid transparent;
    border-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://w3.org' id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3Cfilter id='noise'%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E") 1 round;
    z-index: 3;
}

/* --- LOGO STRUKTUR --- */
.logo-container { position: absolute; top: 40px; left: 40px; z-index: 10; }
.site-logo { height: 120px; width: auto; display: block; }

/* --- HERO & BACKGROUND SLIDESHOW --- */
.hero-section-diagonal {
    height: 90vh; position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    display: flex; align-items: flex-end; padding-bottom: 10vh;
}
.hero-slideshow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; }
.slide.active { opacity: 1; }
.hero-container { max-width: 1400px; width: 100%; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: flex-end; }
.hero-text { max-width: 500px; margin-bottom: 40px; color: #ffffff; }
.hero-text h1 { font-size: 5.7rem; text-transform: uppercase; line-height: 1.1; margin-bottom: 10px; }

/* --- DIAGONALE NAVIGATION (PC ANSICHT) --- */
.nav-toggle-checkbox, .hamburger-btn { display: none; }
.diagonal-nav {
    position: absolute; right: 40px; top: calc(90vh - 14vh);
    display: flex; gap: 8px; align-items: flex-end;
    transform: rotate(-4.5deg); transform-origin: right bottom;
    z-index: 100; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav-item {
    display: inline-block; padding: 16px 38px; color: #ffffff !important; text-decoration: none;
    font-family: 'Special Elite', monospace; font-size: 0.95rem; font-weight: normal; text-transform: uppercase;
    letter-spacing: 1px; position: relative; transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.3);
}
.item-1 { background-color: var(--color-primary); clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%); padding-right: 45px; }
.item-2 { background-color: #557543; clip-path: polygon(4% 0%, 96% 0%, 100% 100%, 8% 100%); }
.item-3 { background-color: var(--color-secondary); clip-path: polygon(0% 0%, 88% 0%, 100% 100%, 12% 100%); padding-left: 45px; }
.item-5 { background-color: var(--color-accent); clip-path: polygon(0% 0%, 88% 0%, 100% 100%, 12% 100%); padding-left: 45px; }
.item-6 {background-color: #4e1c13;clip-path: polygon(0% 0%, 88% 0%, 100% 100%, 12% 100%); padding-left: 45px; }
.item-instagram { background-color: #3c120a; clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%); padding: 16px 24px; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; }

.nav-item:hover { transform: translateY(-4px); filter: brightness(1.15); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); }
.nav-item::after {
    content: ""; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px; pointer-events: none; border: 1px solid transparent;
    border-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://w3.org'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3Cfilter id='noise'%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E") 1 round; z-index: 2;
}

/* Dropdowns Desktop */
.nav-dropdown-wrapper { position: relative; display: inline-block; }
.nav-dropdown-wrapper > .nav-item { cursor: pointer; }
.dropdown-menu { position: absolute; top: 100%; left: 0; width: 100%; background-color: #ffffff; border: 1px solid rgba(34, 34, 34, 0.2); display: none; flex-direction: column; z-index: 105; box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.nav-dropdown-wrapper:hover .dropdown-menu { display: flex; }
.dropdown-item { display: block; padding: 12px 20px; color: var(--color-dark); text-decoration: none; font-family: 'Special Elite', monospace; font-size: 0.8rem; text-transform: uppercase; border-bottom: 1px solid rgba(34, 34, 34, 0.1); transition: background 0.2s ease, color 0.2s ease; }
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background-color: var(--color-background); color: var(--color-primary); }

/* --- STICKY NAVI (PC SCROLLEN) --- */
.diagonal-nav.sticky {
    position: fixed; top: 0; right: 0; left: 0; width: 100%; justify-content: flex-end; padding: 15px 40px;
    background-color: rgba(230, 236, 230, 0.9); backdrop-filter: blur(8px); transform: rotate(0deg); border-bottom: 1px solid rgba(34, 34, 34, 0.15); gap: 4px;
}

/* ==========================================================================
   NEUE RECHTS- UND ZEITUNGS-DESIGN ELEMENTE (FÜR DAS IMPRESSUM)
   ========================================================================== */
.page-container {
    max-width: 900px; margin: 60px auto; padding: 0 20px;
}

.newspaper-header { text-align: center; margin-bottom: 40px; }
.newspaper-meta { display: flex; justify-content: space-between; font-family: 'Special Elite', monospace; font-size: 0.85rem; text-transform: uppercase; border-bottom: 2px solid var(--color-secondary); padding-bottom: 5px; color: var(--color-secondary); }
.newspaper-title { font-size: 3.5rem; font-family: 'Old Standard TT', Georgia, serif; font-weight: 700; margin: 15px 0; color: var(--color-dark); letter-spacing: -1px; text-transform: uppercase; }
.newspaper-divider { border-top: 1px solid rgba(34, 34, 34, 0.2); margin: 5px 0; }
.newspaper-divider.double { border-top: 4px double var(--color-dark); margin-top: 5px; }

/* Die schöne Spalten-Karte */
.blog-card {
    background-color: var(--color-paper); padding: 45px 35px;
}
.standard-border {
    border-top: 3px solid var(--color-secondary); border-bottom: 4px double var(--color-dark); border-left: 1px dashed rgba(74, 85, 74, 0.3); border-right: 1px dashed rgba(74, 85, 74, 0.3);
}

.card-meta {
    font-family: 'Special Elite', monospace; font-size: 0.75rem; text-transform: uppercase; color: var(--color-accent); border: 1px solid var(--color-accent); padding: 2px 8px; display: inline-block; margin-bottom: 20px;
}

/* Rechtstext Typografie */
.legal-content h2 { font-family: 'Special Elite', monospace; font-size: 0.95rem; color: var(--color-dark); margin: 30px 0 12px 0; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid rgba(34, 34, 34, 0.15); padding-bottom: 4px; }
.legal-paragraph { font-family: 'Old Standard TT', Georgia, serif; font-size: 1.1rem; color: #222; margin-bottom: 15px; text-align: justify; line-height: 1.5; }
.legal-link { color: var(--color-primary); text-decoration: none; border-bottom: 1px solid var(--color-primary); transition: color 0.2s ease; }
.legal-link:hover { color: var(--color-accent); border-color: var(--color-accent); }
.typewriter-text { font-family: 'Special Elite', monospace; font-size: 0.95rem; }
.font-italic { font-style: italic; color: #555; }

/* --- MODERN FOOTER DESIGN (FEIN & KLASSISCH) --- */
.modern-footer { background-color: #3232308f; color: #ffffff; padding: 60px 0; margin-top: 80px; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; padding: 0 20px; }
.footer-brand h3 { font-family: 'Special Elite', monospace; font-size: 1.5rem; margin-bottom: 10px; color: #fff; }
.footer-brand p { font-size: 0.85rem; color: #cccccc; }
.footer-links h4, .footer-contact h4 { font-family: 'Special Elite', monospace; color: #ffffff; margin-bottom: 18px; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.footer-links a, .footer-contact a { display: block; color: #cccccc !important; text-decoration: none !important; font-family: 'Special Elite', monospace; font-size: 0.85rem; margin-bottom: 10px; transition: all 0.2s ease; }
.footer-links a:hover, .footer-contact a:hover { color: var(--color-accent) !important; transform: translateX(3px); }
.footer-location { color: #cccccc; font-family: 'Special Elite', monospace; font-size: 0.85rem; margin-top: 12px; }

/* ==========================================================================
   ISOLIERTE HANDY-WEICHE (SMARTPHONES)
   ========================================================================== */
@media (max-width: 900px) {
    .hero-text h1 { font-size: 2.5rem !important; }
    .hero-container {
        padding: 0 20px; 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
    }
    .hero-section-diagonal { 
        height: 85vh; clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); }.page-container { margin: 30px auto; }.newspaper-title { font-size: 2.2rem !important; }
    /* Burger Striche */
    .hamburger-btn { 
        display: flex; 
        flex-direction: column; 
        justify-content: space-between; 
        position: fixed !important; 
        top: 25px; right: 25px; 
        width: 30px; height: 22px; 
        z-index: 100000 !important; 
        cursor: pointer; 
    }
    .hamburger-btn span { 
        display: block; 
        width: 100%; 
        height: 3px; 
        background-color: #ffffff; transition: all 0.25s ease-in-out; box-shadow: 0 2px 4px rgba(0,0,0,0.3); }

    /* Side-Panel Schublade */.diagonal-nav, .diagonal-nav.sticky {position: fixed !important; top: 0 !important; left: auto !important; right: -100% !important;width: 280px !important; height: 100vh !important; background-color: rgba(26, 26, 26, 0.98) !important;backdrop-filter: blur(10px) !important; display: flex !important; flex-direction: column !important;justify-content: flex-start !important; align-items: stretch !important; gap: 0 !important;transform: rotate(0deg) !important; transition: right 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;padding: 80px 0 40px 0 !important; overflow-y: auto; z-index: 9999 !important; box-shadow: -5px 0 25px rgba(0,0,0,0.5) !important;}

    .nav-toggle-checkbox:checked ~ .diagonal-nav,.nav-toggle-checkbox:checked ~ .diagonal-nav.sticky { right: 0 !important; }.nav-dropdown-wrapper { width: 100%; display: block; }.nav-item { display: block !important; width: 100% !important; text-align: left !important; padding: 16px 30px !important; clip-path: none !important; font-size: 1rem !important; font-weight: normal !important; border: none !important; border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important; }.item-instagram { width: auto !important; display: flex !important; justify-content: center !important; padding: 20px !important; }/* Akkordeon Dropdown */.dropdown-menu { position: static !important; width: 100% !important; background-color: rgba(0, 0, 0, 0.2) !important; box-shadow: none !important; border: none !important; display: none; flex-direction: column; padding-left: 20px; }.nav-dropdown-wrapper.mobile-open .dropdown-menu { display: flex !important; }.nav-dropdown-wrapper > .nav-item::after { content: " ▾"; float: right; font-size: 0.8rem; opacity: 0.7; }.nav-toggle-checkbox:checked ~ .hamburger-btn span:nth-child(1) { transform: translateY(8px) rotate(45deg); }.nav-toggle-checkbox:checked ~ .hamburger-btn span:nth-child(2) { opacity: 0; }.nav-toggle-checkbox:checked ~ .hamburger-btn span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }.logo-container { top: 20px; left: 20px; }.site-logo { height: 65px; }}

