/**
 * Mindful Together - Main Stylesheet
 * Design: "Erdige Ruhe" (Earth & Calm)
 * Warme, natürliche Farben mit organischen Formen
 */

/* ========================================
   CSS Variables - Farbpalette
   ======================================== */
:root {
    /* Hauptfarben - Minimalistisch & Traumhaft */
    --primary: #7B6B8F;        /* Dunkleres Lavender - besserer Kontrast */
    --secondary: #5FA888;      /* Dunkleres Mint Green - besserer Kontrast */
    --accent: #6B5A7D;         /* Noch dunkleres Lavender für starken Kontrast */
    --background: #F9F7F3;     /* Creamy White */
    --text: #4A4A4A;           /* Dunkleres Grau - bessere Lesbarkeit */
    --light: #E8E4E0;          /* Helles Neutral */
    --white: #FFFFFF;
    
    /* Schatten */
    --shadow-sm: 0 2px 8px rgba(44, 62, 63, 0.08);
    --shadow-md: 0 4px 20px rgba(44, 62, 63, 0.1);
    --shadow-lg: 0 8px 30px rgba(44, 62, 63, 0.12);
    
    /* Abstände */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 60px;
    
    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --primary: #C5B3D8;        /* Helleres Lavender mit gutem Kontrast */
        --secondary: #7FC7A7;      /* Helleres Mint Green mit gutem Kontrast */
        --accent: #D4C5E0;         /* Hellstes Lavender für Akzent */
        --background: #1F1F1F;     /* Dunkles Grau */
        --text: #E5E5E5;           /* Helleres Grau für bessere Lesbarkeit */
        --light: #2F2F2F;          /* Mittel-Dunkles Grau */
        --white: #252525;          /* Dunkles Weiß */
        
        /* Schatten für Dark Mode */
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
        --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
    }
}

/* ========================================
   Accessibility - Skip Link
   ======================================== */
/* Skip Link für Accessibility - nur bei Fokus sichtbar */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: var(--dark);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 0 0 var(--radius-sm) 0;
    z-index: 9999;
    transition: top 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

/* ========================================
   Basis-Reset
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
    background-color: var(--secondary);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--secondary);
    color: var(--white);
}

/* ========================================
   Body & Layout
   ======================================== */
body {
    font-family: 'Poppins', 'Josefin Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text);
    background: var(--background);
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-md);
    letter-spacing: 0.3px;
}

/* ========================================
   Header
   ======================================== */
header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: var(--space-xl) var(--space-lg);
    margin: calc(var(--space-md) * -1) calc(var(--space-md) * -1) var(--space-xl) calc(var(--space-md) * -1);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 4px 20px rgba(181, 167, 197, 0.2);
    position: relative;
    overflow: hidden;
}

.header-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.site-logo {
    width: 80px;
    height: auto;
    background: var(--white);
    padding: 12px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-normal);
}

.site-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.header-text {
    flex: 1;
}

.header-text h1 {
    margin-bottom: var(--space-xs);
    color: var(--white);
}

.header-text p {
    margin-bottom: 0;
    color: var(--white);
    opacity: 0.95;
}

/* Organischer Hintergrund-Akzent */
header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

/* ========================================
   Navigation
   ======================================== */
nav {
    margin-top: var(--space-lg);
    position: relative;
    z-index: 1;
}

nav a {
    color: var(--white);
    text-decoration: none;
    margin-right: var(--space-md);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

/* Hover-Effekt mit Slide-In */
nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left var(--transition-normal);
    z-index: -1;
}

nav a:hover::before {
    left: 0;
}

nav a:hover {
    transform: translateY(-2px);
}

nav a.active {
    background: rgba(255, 255, 255, 0.25);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav a.active::before {
    display: none;
}

/* ========================================
   Main Content Area
   ======================================== */
main {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
    animation: fadeIn var(--transition-slow) ease-in;
}

/* Fade-In Animation für Main Content */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Überschriften
   ======================================== */
h1 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    font-size: 2.8em;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    margin: var(--space-xl) 0 var(--space-md) 0;
    font-size: 2em;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--accent);
    margin: var(--space-lg) 0 var(--space-sm) 0;
    font-size: 1.5em;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

h4 {
    color: var(--accent);
    margin: var(--space-md) 0 var(--space-sm) 0;
    font-size: 1.2em;
    font-weight: 600;
}

/* ========================================
   Text & Absätze
   ======================================== */
p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
    color: var(--text);
    font-size: 1.05em;
}

/* ========================================
   Listen
   ======================================== */
ul, ol {
    margin: var(--space-md) 0 var(--space-md) var(--space-lg);
}

li {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-xs);
}

/* ========================================
   Links
   ======================================== */
a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-normal);
    font-weight: 500;
    position: relative;
}

/* Animierter Underline-Effekt */
a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-normal);
}

a:hover::after {
    width: 100%;
}

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

/* Navigation Links ohne Underline-Animation */
nav a::after,
.cta::after {
    display: none;
}

/* ========================================
   Footer
   ======================================== */
footer {
    margin-top: var(--space-xl);
    padding: var(--space-lg) var(--space-md);
    border-top: 3px solid var(--light);
    text-align: center;
    color: var(--primary);
    font-size: 0.95em;
    background: rgba(232, 228, 222, 0.3);
    border-radius: var(--radius-md);
}

footer p {
    margin-bottom: var(--space-sm);
}

/* ========================================
   Spezielle Elemente
   ======================================== */
.emoji {
    font-size: 1.3em;
    display: inline-block;
    animation: pulse 3s ease-in-out infinite;
}

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

hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--light), transparent);
    margin: var(--space-xl) 0;
}

strong {
    color: var(--accent);
    font-weight: 600;
}

blockquote {
    border-left: 5px solid var(--secondary);
    padding-left: var(--space-lg);
    margin: var(--space-lg) 0;
    font-family: 'Crimson Text', Georgia, serif;
    font-style: italic;
    color: var(--primary);
    font-size: 1.15em;
}

time {
    color: var(--secondary);
    font-size: 0.9em;
    font-weight: 500;
}

/* ========================================
   Images in Content
   ======================================== */
main img {
    max-width: 100%;
    height: auto;
    display: block;
}

main p img {
    margin: var(--space-lg) auto;
}

/* ========================================
   Content Sections
   ========================================== */
.featured-section {
    margin: var(--space-xl) 0;
    padding: var(--space-lg) 0;
}

.contact-section {
    text-align: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--light) 0%, rgba(232, 228, 222, 0.5) 100%);
    border-radius: var(--radius-md);
    border: 2px solid var(--secondary);
    margin-top: var(--space-xl);
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

/* ========================================
   Project Cards
   ======================================== */
.project-card {
    background: var(--white);
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.project-card h2 {
    color: var(--primary);
    margin: 0;
    font-size: 2em;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.project-card h2 a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.project-card h2 a:hover {
    color: var(--accent);
}

.project-card h2 a::after {
    display: none;
}

.project-description {
    font-size: 0.92em;
    line-height: 1.7;
    color: var(--text);
    max-width: 40ch;
    margin: 0;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transition: width var(--transition-fast);
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(181, 167, 197, 0.05), transparent);
    transition: left var(--transition-slow);
}

.project-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.project-card:hover::before {
    width: 8px;
}

.project-card:hover::after {
    left: 100%;
}

/* ========================================
   Blog Posts
   ======================================== */
.blog-posts {
    max-width: 100%;
}

.post-summary {
    border-bottom: 2px solid var(--light);
    padding: var(--space-lg) 0;
    transition: all var(--transition-normal);
    position: relative;
}

.post-summary::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--light), transparent);
    transition: width var(--transition-normal);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.post-summary:hover::before {
    width: 8px;
}

.post-summary:hover {
    padding-left: var(--space-md);
    background: rgba(232, 228, 222, 0.2);
    border-radius: var(--radius-sm);
}

.post-summary:last-child {
    border-bottom: none;
}

.post-preview {
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--light);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent);
}

.post-preview h3 {
    margin-top: 0;
    margin-bottom: var(--space-xs);
}

.post-preview time {
    display: block;
    margin-bottom: var(--space-sm);
}

/* ========================================
   Meta Information
   ======================================== */
.meta {
    color: var(--secondary);
    font-size: 0.95em;
    margin: var(--space-md) 0 var(--space-lg) 0;
    padding: var(--space-md);
    background: var(--light);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--secondary);
}

.meta time {
    margin-right: var(--space-md);
}

.meta .author {
    font-style: italic;
    color: var(--primary);
}

/* ========================================
   Tags
   ======================================== */
.tag {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    margin-right: var(--space-xs);
    margin-top: var(--space-xs);
    border: 1px solid var(--secondary);
    font-weight: 500;
    transition: all var(--transition-fast);
    cursor: default;
    position: relative;
}

.tag::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.tag:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-sm);
}

.tag:hover::before {
    opacity: 1;
}

/* ========================================
   Navigation Links
   ======================================== */
.page-nav {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 2px solid var(--light);
}

.cta {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white) !important;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin-top: var(--space-lg);
    border-bottom: none !important;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width var(--transition-slow), height var(--transition-slow);
}

.cta:hover::before {
    width: 300px;
    height: 300px;
}

.cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.cta:active {
    transform: translateY(-1px) scale(0.98);
}

/* ========================================
   Article Content
   ======================================== */
.page-content,
.post-content,
.project-content {
    max-width: 800px;
}

.blog-post,
.project-detail {
    max-width: 100%;
}

/* ========================================
   Loading Animation
   ======================================== */
.loading {
    opacity: 0;
    animation: fadeIn var(--transition-slow) ease-in forwards;
}

/* Staggered Animation für Cards */
.project-card:nth-child(1) { animation: fadeIn 0.5s ease-in 0.1s forwards; }
.project-card:nth-child(2) { animation: fadeIn 0.5s ease-in 0.2s forwards; }
.project-card:nth-child(3) { animation: fadeIn 0.5s ease-in 0.3s forwards; }
.project-card:nth-child(4) { animation: fadeIn 0.5s ease-in 0.4s forwards; }
.project-card:nth-child(5) { animation: fadeIn 0.5s ease-in 0.5s forwards; }
.project-card:nth-child(6) { animation: fadeIn 0.5s ease-in 0.6s forwards; }

/* ========================================
   Focus States für Accessibility
   ======================================== */
a:focus-visible,
button:focus-visible,
.cta:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

nav a:focus-visible {
    outline-color: var(--white);
    outline-width: 3px;
}

/* Versteckte Elemente für Screenreader */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Fokus-sichtbar für alle interaktiven Elemente */
*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    :root {
        --space-lg: 30px;
        --space-xl: 40px;
    }
    
    body {
        padding: var(--space-sm);
    }
    
    header {
        margin: calc(var(--space-sm) * -1) calc(var(--space-sm) * -1) var(--space-lg) calc(var(--space-sm) * -1);
        padding: var(--space-lg) var(--space-md);
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .site-logo {
        width: 60px;
    }
    
    header h1 {
        font-size: 2em;
    }
    
    main {
        padding: var(--space-lg);
    }
    
    h1 {
        font-size: 2.2em;
    }
    
    h2 {
        font-size: 1.6em;
    }
    
    nav a {
        display: inline-block;
        margin: var(--space-xs) var(--space-sm) var(--space-xs) 0;
    }
    
    .project-card {
        padding: var(--space-lg) var(--space-md);
    }
    
    .project-card h2 {
        font-size: 1.6em;
    }
    
    .project-description {
        font-size: 0.88em;
        max-width: 100%;
    }
}

/* ========================================
   Reduced Motion Support
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ========================================
   Cookie Banner & Modal
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: var(--space-lg);
    z-index: 1000;
    border-top: 4px solid var(--primary);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-content {
    max-width: 900px;
    margin: 0 auto;
}

.cookie-banner h2 {
    margin-top: 0;
    margin-bottom: var(--space-md);
    font-size: 1.5em;
    color: var(--primary);
}

.cookie-banner p {
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.cookie-banner a {
    color: var(--accent);
    font-weight: 600;
}

.cookie-banner-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 1em;
    font-family: inherit;
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cookie-decline {
    background: var(--light);
    color: var(--text);
}

.cookie-decline:hover {
    background: var(--secondary);
    color: var(--white);
}

.cookie-settings {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cookie-settings:hover {
    background: var(--primary);
    color: var(--white);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: var(--space-md);
}

.cookie-modal-content {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    animation: fadeIn 0.3s ease-out;
}

.cookie-modal h2 {
    margin-top: 0;
    margin-bottom: var(--space-lg);
    color: var(--primary);
}

.cookie-category {
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--light);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--secondary);
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-category input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-category strong {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--primary);
}

.cookie-description {
    display: block;
    font-size: 0.9em;
    color: var(--text);
    opacity: 0.8;
    margin-top: var(--space-xs);
}

.cookie-modal-buttons {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--light);
}

.footer-nav a,
.footer-nav button {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-normal);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1em;
    font-family: inherit;
    padding: 0;
}

.footer-nav a:hover,
.footer-nav button:hover {
    color: var(--accent);
}

.footer-nav button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: var(--space-md);
    }
    
    .cookie-banner-buttons,
    .cookie-modal-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

/* ========================================
   Google Fonts Import
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&family=Josefin+Sans:wght@200;300;400;500&display=swap');
