/* =============================================================================
   DARK SWAN EVENT - Main Stylesheet
   Design: Modern, Dark, High-Impact
   ============================================================================= */

/* === VARIABLES & RESET === */
:root {
    --color-primary: #1a1a1a;
    --color-secondary: #2a2a2a;
    --color-accent: #4a9b8e;
    --color-accent-dark: #3a7b6e;
    --color-text: #e0e0e0;
    --color-text-dim: #a0a0a0;
    --color-danger: #d32f2f;
    --color-warning: #f57c00;
    --color-success: #388e3c;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* SHARE BUTTONS - Global Styles */
.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-share {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: white;
}

.btn-share:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-share.copy-link { background-color: #333; }
.btn-share.facebook { background-color: #1877f2; }
.btn-share.email { background-color: #ea4335; }
.btn-share.whatsapp { background-color: #25d366; }

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: #fff;
}

.highlight {
    color: #f4b942;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

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

a:hover {
    color: var(--color-accent-dark);
}

/* === LAYOUT === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
}

/* KRITISCH: Alle Elemente box-sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(74, 155, 142, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    transition: var(--transition);
}

.nav-logo:hover {
    opacity: 0.9;
}

.nav-logo img {
    height: 65px;
    width: auto;
    filter: invert(1) brightness(1.1);
    transition: var(--transition);
}

.nav-logo img:hover {
    filter: invert(1) brightness(1.2);
    transform: scale(1.05);
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-logo:hover .nav-logo-text {
    color: var(--color-accent);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu a {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
    background: rgba(74, 155, 142, 0.2);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* === HERO SECTION REDESIGN === */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: #000;
}

.hero::before {
    display: none; /* Remove old overlay */
}

.hero-container-full {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Background behind text but above base */
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Text on top */
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    max-width: 1600px;
    margin: 0 auto;
    right: 0;
}

.hero-intro {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    color: #e0e0e0;
    margin-bottom: -1rem;
    padding-left: 5px;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-family: 'Times New Roman', serif;
    font-style: italic;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 700;
    line-height: 0.9;
    margin: 0;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 2rem;
    padding-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-description {
    max-width: 500px;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.btn-hero-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-arrow:hover {
    background: #fff;
    color: #000;
}

.hero-nav-items {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-nav-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hero-nav-item:hover {
    color: #fff;
}

.nav-num {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .hero-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-nav-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        gap: 1.5rem;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 18vw; /* Massive on mobile too */
    }
    
    .hero-intro {
        font-size: 1.2rem;
    }
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(74, 155, 142, 0.3);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 155, 142, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: #fff;
}

/* === CARDS === */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.card {
    background: var(--color-secondary);
    border-radius: var(--radius);
    padding: var(--spacing-md);
    border: 1px solid rgba(74, 155, 142, 0.1);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
}

.card h3 {
    margin-bottom: var(--spacing-sm);
}

.card p {
    color: var(--color-text-dim);
}

/* === CONTENT SECTIONS === */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    color: var(--color-accent);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-xs);
}

.highlight-box {
    background: var(--color-secondary);
    border-left: 4px solid var(--color-accent);
    padding: var(--spacing-md);
    border-radius: var(--radius);
    margin: var(--spacing-md) 0;
}

.highlight-box.warning {
    border-left-color: var(--color-warning);
}

.highlight-box.danger {
    border-left-color: var(--color-danger);
}

.highlight-box.success {
    border-left-color: var(--color-success);
}

/* === ARTICLE CONTENT STYLES === */
.styled-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--color-secondary);
    color: var(--color-text);
    line-height: 1.8;
}

.styled-container section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #333;
}

.styled-container section:last-of-type {
    border-bottom: none;
}

.styled-container h1, 
.styled-container h2, 
.styled-container h3, 
.styled-container h4 {
    color: #fff;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.styled-container h1 {
    font-size: 2.8rem;
    border-bottom: 4px solid var(--color-accent);
    padding-bottom: 1.2rem;
    margin-bottom: 2rem;
}

.styled-container h2 {
    font-size: 2.2rem;
    color: var(--color-accent);
    border-left: 5px solid var(--color-accent);
    padding-left: 1rem;
}

.styled-container h3 {
    font-size: 1.7rem;
    color: #f4b942;
}

.styled-container h4 {
    font-size: 1.3rem;
    color: var(--color-text);
}

.styled-container p {
    margin-bottom: 1.3rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.styled-container ul,
.styled-container ol {
    margin: 1.8rem 0 1.8rem 2.5rem;
}

.styled-container li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.styled-container strong {
    color: var(--color-accent);
    font-weight: 700;
}

/* Better emoji/icon spacing */
.styled-container h2::before,
.styled-container h3::before {
    margin-right: 0.5rem;
}

/* Star ratings - make them yellow */
.styled-container td {
    white-space: normal;
    word-wrap: break-word;
}

/* Icon colors */
.styled-container .info-box h3,
.styled-container .info-box h4,
.styled-container .warning-box h3,
.styled-container .warning-box h4 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.styled-container table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    background-color: #1e1e1e;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid #333;
}

.styled-container thead {
    background-color: var(--color-accent);
    color: #fff;
    font-weight: 700;
}

.styled-container th,
.styled-container td {
    padding: 1.2rem 1rem;
    text-align: left;
    border-right: 1px solid #444;
    border-bottom: 1px solid #444;
    vertical-align: top;
}

.styled-container th:last-child,
.styled-container td:last-child {
    border-right: none;
}

.styled-container tr:last-child td {
    border-bottom: none;
}

.styled-container tbody tr:hover {
    background-color: #252525;
    transition: background-color 0.2s ease;
}

/* PREMIUM HEADER */
.premium-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-left: 5px solid #f4b942;
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: var(--radius);
    position: relative;
}

.premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f4b942 0%, #ff9800 100%);
    color: #000;
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.premium-header .subtitle {
    font-size: 1.2rem;
    color: var(--color-text-dim);
    margin: 1rem 0;
}

.meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text-dim);
}

.meta-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* INFO BOXES */
.info-box,
.warning-box {
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: var(--radius);
    border-left: 6px solid;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.info-box {
    background-color: rgba(74, 155, 142, 0.15);
    border-left-color: var(--color-accent);
    border: 2px solid var(--color-accent);
    border-left-width: 6px;
}

.info-box.blue {
    background-color: rgba(33, 150, 243, 0.15);
    border-color: #2196f3;
    border-left-color: #2196f3;
}

.info-box.green {
    background-color: rgba(76, 175, 80, 0.15);
    border-color: #4caf50;
    border-left-color: #4caf50;
}

.info-box.yellow {
    background-color: rgba(255, 193, 7, 0.15);
    border-color: #ffc107;
    border-left-color: #ffc107;
}

.warning-box {
    background-color: rgba(211, 47, 47, 0.15);
    border-color: var(--color-danger);
    border-left-color: var(--color-danger);
    border: 2px solid var(--color-danger);
    border-left-width: 6px;
}

.info-box h3,
.warning-box h3,
.info-box h4,
.warning-box h4 {
    margin-top: 0;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
}

.info-box p,
.warning-box p {
    line-height: 1.8;
}

.info-box ul,
.warning-box ul,
.info-box ol,
.warning-box ol {
    margin-left: 1.5rem;
    line-height: 1.8;
}

/* TABLE OF CONTENTS */
.table-of-contents {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    border: 2px solid var(--color-accent);
}

.table-of-contents h2 {
    margin-top: 0;
    color: var(--color-accent);
}

.table-of-contents ul {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.table-of-contents li {
    margin: 0.8rem 0;
}

.table-of-contents a {
    color: var(--color-text);
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 5px;
    transition: var(--transition);
}

.table-of-contents a:hover {
    background-color: #252525;
    color: var(--color-accent);
    padding-left: 1rem;
}

/* CHECKLIST GRID */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2rem;
    margin: 2rem 0;
}

.checklist-item {
    background-color: #1e1e1e;
    padding: 1.3rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--color-accent);
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.6;
    border: 2px solid #333;
}

.checklist-item:hover {
    background-color: #252525;
    border-left-color: #f4b942;
    border-color: var(--color-accent);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(74, 155, 142, 0.3);
}

/* FAQ SECTION */
.faq-item {
    background-color: #1e1e1e;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: var(--radius);
    border-left: 5px solid var(--color-accent);
    border: 2px solid #333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.faq-item h3 {
    color: #f4b942;
    margin-top: 0;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.faq-item p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.faq-item ul,
.faq-item ol {
    margin-left: 1.5rem;
    line-height: 1.8;
}

.faq-item strong {
    color: var(--color-accent);
}

/* CTA BOX */
.cta-box {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    padding: 3rem;
    border-radius: var(--radius);
    text-align: center;
    margin: 3rem 0;
    color: #fff;
}

.cta-box h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: var(--color-accent);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: bold;
    margin: 0.5rem;
    transition: var(--transition);
    border: 2px solid #fff;
}

.cta-button:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* RELATED ARTICLES */
.related-articles {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: var(--radius);
    margin: 3rem 0;
}

.related-articles h2 {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.related-articles ul {
    list-style: none;
    padding: 0;
}

.related-articles li {
    margin: 1rem 0;
    padding: 1rem;
    background-color: #252525;
    border-radius: 5px;
    transition: var(--transition);
}

.related-articles li:hover {
    background-color: #2a2a2a;
    transform: translateX(10px);
}

.related-articles a {
    color: var(--color-text);
    font-weight: 500;
}

.related-articles a:hover {
    color: var(--color-accent);
}

/* RESPONSIVE TABLES */
@media (max-width: 768px) {
    .styled-container table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .styled-container th,
    .styled-container td {
        padding: 0.9rem 0.7rem;
        min-width: 120px;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .meta-info {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .premium-header {
        padding: 1.5rem;
    }
    
    .styled-container h1 {
        font-size: 2.2rem;
    }
    
    .styled-container h2 {
        font-size: 1.8rem;
    }
    
    .styled-container h3 {
        font-size: 1.4rem;
    }
}

/* === MODERN FOOTER REDESIGN === */
.footer {
    background-color: #0f1419;
    color: #b0b0b0;
    padding: 0;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 0;
}

.footer-top {
    padding: 5rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Column 1: Brand */
.footer-brand p {
    margin: 1.5rem 0;
    line-height: 1.6;
    color: #999;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact-item i {
    color: var(--color-accent);
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

/* Headings */
.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

/* Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

/* Newsletter */
.footer-newsletter p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    margin-bottom: 2rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-family: var(--font-primary);
}

.newsletter-input::placeholder {
    color: #777;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 0.8rem 1.2rem;
    background: var(--color-accent);
    border: none;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--color-accent-dark);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
    background-color: #080c11;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: #666;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        padding: 3rem 0;
    }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    /* NUKLEAR: Alles auf 100% zwingen */
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .nav-logo img {
        height: 55px;
    }
    
    .nav-logo-text {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        padding: var(--spacing-md);
        transition: var(--transition);
        border-top: 1px solid rgba(74, 155, 142, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero {
        padding: var(--spacing-xl) 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0;
        width: 100%;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-image {
        order: -1;
        max-height: 60vh;
        width: 100%;
    }
    
    .hero-image img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .card-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* KRITISCHER FIX: Container MÜSSEN 100% bleiben */
    .container,
    .container-wide {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 1rem !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
    }
    
    section {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Tabellen horizontal scrollbar mit Container */
    table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        max-width: calc(100vw - 2rem);
    }
    
    /* Blog-spezifische Fixes */
    .blog-header,
    .blog-content {
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    /* Alle Bilder */
    img {
        max-width: 100% !important;
        height: auto;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .nav-logo img {
        height: 40px;
    }
    
    .nav-logo-text {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 0.8rem;
        width: 100%;
    }
    
    section {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }
    
    /* Tabellen NOCH kompakter */
    table {
        max-width: calc(100vw - 1.6rem);
    }
    
    /* Padding kompakt, aber Font-Size aus artikel-goldstandard.css verwenden */
    table th,
    table td {
        padding: 0.5rem 0.3rem !important;
    }
}
