/* ========================================
   GESCHENKE.DOMAIN-ROOT.DE - Main Stylesheet
   Festliches Geschenk-Theme mit Rot & Gold
   ======================================== */

/* Inter Font - Lokal gehostet */
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter-semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Skip-Link für Barrierefreiheit */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 8px 0;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}

:root {
    /* Festliche Geschenk-Farben */
    --primary: #E74C3C;           /* Geschenk-Rot */
    --primary-light: #EC7063;     /* Helles Rot */
    --primary-dark: #C0392B;      /* Dunkleres Rot */
    --secondary: #F1C40F;         /* Gold/Gelb */
    --secondary-dark: #D4AC0D;    /* Dunkleres Gold */
    --accent: #F1C40F;            /* Gold-Akzent */
    
    /* Warme Basis */
    --cream: #FDF6F0;             /* Haupthintergrund (warmes Weiß) */
    --cream-dark: #FAE9DE;        /* Dunkleres Creme */
    --cream-light: #FFFBF8;       /* Hellstes Creme */
    
    /* Kontrast-Farben */
    --text-dark: #2C3E50;         /* Dunkelblau-Grau für Text */
    --text-medium: #34495E;       /* Mittel Blau-Grau */
    --text-muted: #7F8C8D;        /* Gedämpftes Grau */
    --white: #FFFFFF;
    
    /* Akzente */
    --ribbon-red: #C0392B;        /* Schleifen-Rot */
    --gold-shimmer: #F39C12;      /* Gold-Schimmer */
    
    /* Gradienten */
    --gradient-gift: linear-gradient(135deg, #E74C3C 0%, #C0392B 50%, #A93226 100%);
    --gradient-festive: linear-gradient(180deg, #E74C3C 0%, #EC7063 30%, #FAE9DE 60%, #FDF6F0 100%);
    --gradient-warm: linear-gradient(180deg, #FDF6F0 0%, #FAE9DE 100%);
    --gradient-gold: linear-gradient(135deg, #F1C40F 0%, #F39C12 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.7;
    overflow-x: hidden;
}

/* FLOATING ELEMENTS (Geschenke, Sterne, Schleifen) */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.floating-element {
    position: absolute;
    opacity: 0.08;
    animation: float 20s infinite ease-in-out;
}
/* Floating elements nur auf Startseite sichtbar - auf Unterseiten ausblenden */
body:has(.page-hero) .floating-elements {
    display: none;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* HEADER */
header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
    padding: 1rem 2rem;
    background: linear-gradient(180deg, rgba(253, 246, 240, 0.98) 0%, rgba(253, 246, 240, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(231, 76, 60, 0.15);
    box-shadow: 0 2px 20px rgba(231, 76, 60, 0.08);
}
.header-content { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo {
    font-family: 'Inter', system-ui, sans-serif; font-weight: 600;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo-badge {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    padding: 0.25rem 0.6rem;
    background: var(--gradient-gift);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
}
nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.nav-link:hover { color: var(--primary); background: rgba(231, 76, 60, 0.1); }
.nav-link.active { color: var(--primary); }
.nav-cta { 
    background: var(--gradient-gift); 
    color: var(--white) !important; 
    font-weight: 600; 
    margin-left: 0.5rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}
.nav-cta:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    background: var(--gradient-gift) !important;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}
.nav-dropdown > .nav-link::after {
    content: '';
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    padding: 2.5px;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.3s ease;
}
.nav-dropdown:hover > .nav-link::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 251, 248, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 16px;
    padding: 1rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.15);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.dropdown-menu a:hover {
    background: rgba(231, 76, 60, 0.1);
    color: var(--primary);
}
.dropdown-menu .dropdown-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

/* Mega Menu */
.mega-menu {
    min-width: 440px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; }
.mobile-toggle span { width: 25px; height: 2px; background: var(--primary); transition: all 0.3s ease; }

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    background: var(--gradient-festive);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, var(--cream) 100%);
    z-index: 1;
}
.hero-decoration {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    z-index: 0;
}
.gift-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(241, 196, 15, 0.4) 0%, rgba(231, 76, 60, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulse-gift 4s infinite ease-in-out;
}
@keyframes pulse-gift {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}
.hero-content { text-align: center; max-width: 900px; position: relative; z-index: 10; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.15);
}
.hero h1 {
    font-family: 'Inter', system-ui, sans-serif; font-weight: 600;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}
.hero h1 span {
    display: block;
    font-size: 0.4em;
    font-weight: 400;
    color: var(--text-medium);
    margin-top: 0.5rem;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* FINDER BOX (statt Countdown) */
.finder-container {
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.2);
}
.finder-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}
.finder-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.finder-option {
    padding: 1rem 1.5rem;
    background: var(--cream);
    border: 2px solid rgba(231, 76, 60, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.finder-option:hover {
    border-color: var(--primary);
    background: rgba(231, 76, 60, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.15);
}
.finder-option .icon {
    font-size: 1.3rem;
}

/* PAGE HERO (Subpages) */
.page-hero {
    padding: 10rem 2rem 4rem;
    background: linear-gradient(135deg, #C0392B 0%, #E74C3C 50%, #EC7063 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    pointer-events: none;
}
.page-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}
.page-hero h1 {
    font-family: 'Inter', system-ui, sans-serif; font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.page-hero h1 span {
    display: block;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero-subtitle {
    font-size: 1.15rem;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.page-hero .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.page-hero .breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.page-hero .breadcrumb a:hover {
    color: var(--secondary);
    text-decoration: underline;
}
.page-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* BUTTONS */
.btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: inherit;
}
.btn-primary { 
    background: var(--gradient-gift); 
    color: var(--white);
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.35);
}
.btn-primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.45); 
}
.btn-secondary { 
    background: var(--white); 
    color: var(--text-dark); 
    border: 2px solid rgba(231, 76, 60, 0.3);
}
.btn-secondary:hover { 
    background: rgba(231, 76, 60, 0.05); 
    border-color: var(--primary); 
    color: var(--primary); 
}
.btn-gold {
    background: var(--gradient-gold);
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(241, 196, 15, 0.35);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(241, 196, 15, 0.45);
}

/* SECTIONS */
section { padding: 6rem 2rem; position: relative; z-index: 1; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag { 
    display: inline-block; 
    font-size: 0.8rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    color: var(--primary); 
    margin-bottom: 1rem;
    background: rgba(231, 76, 60, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}
.section-title { 
    font-family: 'Inter', system-ui, sans-serif; font-weight: 600; 
    font-size: clamp(2rem, 4vw, 3rem); 
    font-weight: 700; 
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.section-subtitle { 
    color: var(--text-muted); 
    max-width: 600px; 
    margin: 0 auto; 
}

/* GALLERY */
.gallery-section { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    background: var(--cream-dark);
    border: 1px solid rgba(231, 76, 60, 0.15);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
}
.gallery-item:hover { 
    transform: translateY(-10px); 
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(44, 62, 80, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 600; }

/* FEATURES */
.features-section { background: var(--gradient-warm); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature-card {
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid rgba(231, 76, 60, 0.1);
    border-radius: 24px;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.05);
}
.feature-card:hover { 
    background: var(--white); 
    border-color: var(--primary); 
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.15);
}
.feature-icon { 
    width: 70px; 
    height: 70px; 
    background: rgba(231, 76, 60, 0.1); 
    border-radius: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 2rem; 
    margin-bottom: 1.5rem;
}
.feature-card h3 { 
    font-family: 'Inter', system-ui, sans-serif; font-weight: 600; 
    font-size: 1.25rem; 
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }
.feature-link { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    color: var(--primary); 
    font-weight: 600; 
    margin-top: 1rem; 
    font-size: 0.9rem; 
}

/* OCCASIONS (Anlässe) */
.occasions-section { background: var(--cream); }
.occasions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.occasion-card {
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid rgba(231, 76, 60, 0.15);
    border-radius: 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.05);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}
.occasion-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.15);
}
.occasion-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.occasion-card h3 { 
    font-family: 'Inter', system-ui, sans-serif; font-weight: 600; 
    font-size: 1.35rem; 
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.occasion-card p { color: var(--text-muted); font-size: 0.95rem; }

/* PERSONS (Für wen) */
.persons-section { background: var(--gradient-warm); }
.persons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.person-card { 
    display: flex; 
    flex-direction: column;
    align-items: center;
    gap: 1rem; 
    padding: 2rem; 
    background: var(--white); 
    border: 1px solid rgba(231, 76, 60, 0.1); 
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}
.person-card:hover { 
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.15);
    transform: translateY(-5px);
}
.person-icon { font-size: 2.5rem; }
.person-card h3 { 
    font-family: 'Inter', system-ui, sans-serif; font-weight: 600; 
    font-size: 1.1rem; 
    color: var(--text-dark);
    text-align: center;
}

/* TIPS CARDS */
.tips-section { background: var(--cream); }
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
.tip-card { 
    padding: 2.5rem; 
    background: var(--white); 
    border: 1px solid rgba(231, 76, 60, 0.15); 
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.05);
}
.tip-card h3 { 
    font-family: 'Inter', system-ui, sans-serif; font-weight: 600; 
    font-size: 1.5rem; 
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}
.tip-card h3 span { color: var(--primary); }
.tip-card p { color: var(--text-muted); margin-bottom: 1rem; }

/* QUOTES / SPRÜCHE */
.quotes-section { background: var(--cream); }
.quotes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.quote-card {
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid rgba(231, 76, 60, 0.15);
    border-radius: 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.05);
}
.quote-card::before { 
    content: '"'; 
    font-family: 'Inter', system-ui, sans-serif; font-weight: 600; 
    font-size: 6rem; 
    color: rgba(231, 76, 60, 0.15); 
    position: absolute; 
    top: 0; 
    left: 1.5rem; 
    line-height: 1; 
}
.quote-text { 
    font-family: 'Inter', system-ui, sans-serif; font-weight: 600; 
    font-size: 1.25rem; 
    font-style: italic; 
    line-height: 1.6; 
    margin-bottom: 1.5rem; 
    position: relative; 
    z-index: 1;
    color: var(--text-dark);
}
.quote-copy-btn { 
    padding: 0.75rem 1.5rem; 
    background: rgba(231, 76, 60, 0.1); 
    border: 1px solid var(--primary); 
    color: var(--primary); 
    border-radius: 8px; 
    cursor: pointer; 
    font-size: 0.875rem; 
    transition: all 0.3s ease; 
    font-family: inherit; 
}
.quote-copy-btn:hover { background: var(--primary); color: var(--white); }

/* FOOTER */
footer { 
    background: var(--text-dark); 
    border-top: 4px solid var(--primary); 
    padding: 4rem 2rem 2rem; 
    position: relative; 
    z-index: 1; 
}
.footer-content { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 3rem; margin-bottom: 3rem; }
.footer-brand { max-width: 300px; }
.footer-brand h3 { 
    color: var(--white); 
    font-family: 'Inter', system-ui, sans-serif; font-weight: 600;
    font-size: 1.1rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 0.75rem; 
}
.footer-brand .logo { color: var(--white); font-size: 1.3rem; }
.footer-brand p { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; margin: 1rem 0 1.5rem; }
.footer-column h4 { 
    color: var(--white); 
    font-size: 0.9rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 1.25rem; 
}
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.75rem; }
.footer-column a { color: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.footer-column a:hover { color: var(--primary); }
.footer-bottom { 
    padding-top: 2rem; 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 1rem; 
}
.footer-copyright { color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: rgba(255, 255, 255, 0.6); text-decoration: none; font-size: 0.875rem; }
.footer-links a:hover { color: var(--primary); }

/* RESPONSIVE */
@media (max-width: 1024px) { 
    .footer-grid { grid-template-columns: repeat(2, 1fr); } 
}
@media (max-width: 768px) {
    nav { 
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0; 
        flex-direction: column; 
        background: rgba(255, 251, 248, 0.98);
        backdrop-filter: blur(20px);
        padding: 1rem;
        border-top: 1px solid rgba(231, 76, 60, 0.1);
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 20px 40px rgba(44, 62, 80, 0.1);
    }
    nav.active { display: flex; }
    .mobile-toggle { display: flex; }
    
    /* Mobile Dropdown */
    .nav-dropdown { width: 100%; }
    .nav-dropdown > .nav-link { 
        width: 100%; 
        justify-content: space-between;
        padding: 1rem;
        border-bottom: 1px solid rgba(231, 76, 60, 0.1);
        cursor: pointer;
    }
    .nav-dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        display: none;
    }
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: rgba(231, 76, 60, 0.05);
        border: none;
        border-left: 3px solid var(--primary);
        border-radius: 0;
        padding: 0.5rem 0;
        margin: 0 0 0.5rem 0;
        min-width: 100%;
        box-shadow: none;
        display: none;
    }
    .nav-dropdown.open .dropdown-menu {
        display: block !important;
    }
    .mega-menu {
        grid-template-columns: 1fr;
        min-width: 100%;
    }
    .dropdown-menu a {
        padding: 0.85rem 1.5rem;
        color: var(--text-dark) !important;
        font-weight: 500;
        background: transparent !important;
        transform: none !important;
    }
    .dropdown-menu a:hover,
    .dropdown-menu a:active,
    .dropdown-menu a:focus {
        background: transparent !important;
        color: var(--primary) !important;
        transform: none !important;
    }
    .dropdown-menu .dropdown-icon {
        font-size: 1.2rem;
    }
    nav > a.nav-link {
        padding: 1rem;
        border-bottom: 1px solid rgba(231, 76, 60, 0.1);
    }
    .nav-cta {
        margin: 1rem 0 0 0 !important;
        text-align: center;
        justify-content: center;
    }
    
    .finder-options { flex-direction: column; }
    .finder-option { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .occasions-grid, .quotes-grid { grid-template-columns: 1fr; }
    .persons-grid { grid-template-columns: repeat(2, 1fr); }
    
    .hero-decoration { display: none; }
}

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Hover-Effekte für Touch-Geräte deaktivieren */
@media (hover: none) {
    .gallery-item:hover { transform: none; }
    .gallery-item:hover img { transform: none; }
    .gallery-overlay { opacity: 1; }
    .feature-card:hover { transform: none; }
    .btn-primary:hover, .btn-secondary:hover { transform: none; }
}
