/* ========================================
   DÜĞÜN PORTAL - Premium Wedding Directory
   ======================================== */

/* Google Fonts – lokal gehostet (DSGVO-konform) */
@import url('../fonts/local-fonts.css');

:root {
    --burgundy: #8B1A3A;
    --burgundy-dark: #6B1430;
    --burgundy-light: #A82050;
    --gold: #C9A84C;
    --gold-light: #E0C975;
    --gold-dark: #A8893D;
    --cream: #FDF8F0;
    --ivory: #F5EDE0;
    --dark: #1A1018;
    --dark-soft: #2A1F28;
    --text: #3D2B35;
    --text-light: #8A7580;
    --text-lighter: #B8A8B0;
    --border: rgba(139, 26, 58, 0.1);
    --border-gold: rgba(201, 168, 76, 0.3);
    --shadow: 0 4px 30px rgba(26, 16, 24, 0.08);
    --shadow-lg: 0 20px 60px rgba(26, 16, 24, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --nav-height: 80px;
}

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

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

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-brand {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.preloader-brand span { color: #fff; }

.preloader-line {
    width: 180px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    display: block;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    border-radius: 2px;
    animation: preload 1.8s ease-in-out forwards;
}

@keyframes preload {
    0% { width: 0%; }
    60% { width: 75%; }
    100% { width: 100%; }
}

/* ===== NAVIGATION ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Default: transparent on hero - WHITE text */
#navbar .nav-links a { color: rgba(255,255,255,0.9); font-weight: 500; }
#navbar .nav-links a:hover { color: #fff; }
#navbar .nav-brand { color: #fff; }
#navbar .nav-brand .brand-accent { color: rgba(255,255,255,0.85); }
#navbar .nav-brand .brand-dot { color: var(--gold); }
#navbar .nav-lang { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); }
#navbar .nav-lang .active-lang { color: var(--gold-light); }
#navbar .mobile-menu-btn { color: #fff; }

/* Scrolled: light background - DARK text */
#navbar.scrolled {
    background: rgba(253, 248, 240, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 rgba(139, 26, 58, 0.06), 0 4px 30px rgba(26, 16, 24, 0.06);
}
#navbar.scrolled .nav-links a { color: var(--text); }
#navbar.scrolled .nav-links a:hover { color: var(--burgundy); }
#navbar.scrolled .nav-links a::after { background: var(--gold); }
#navbar.scrolled .nav-brand { color: var(--text-dark); }
#navbar.scrolled .nav-brand .brand-accent { color: var(--burgundy); }
#navbar.scrolled .nav-lang { color: var(--text); border-color: var(--border); background: transparent; }
#navbar.scrolled .nav-lang .active-lang { color: var(--burgundy); }
#navbar.scrolled .mobile-menu-btn { color: var(--text-dark); }
#navbar.scrolled .nav-cta { background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark)) !important; color: #fff !important; box-shadow: 0 2px 12px rgba(139, 26, 58, 0.2) !important; }
#navbar.scrolled .nav-cta:hover { box-shadow: 0 6px 24px rgba(139, 26, 58, 0.3) !important; }

.nav-brand {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
    transition: color 0.3s;
}

.nav-brand .brand-accent { transition: color 0.3s; }
.nav-brand .brand-dot { font-size: 28px; line-height: 1; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover { color: var(--burgundy); }
.nav-links a:hover::after { width: 100%; }

.nav-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-lang:hover { border-color: var(--gold); }
.nav-lang .active-lang { color: var(--burgundy); font-weight: 700; }

/* Icons nur im Mobile-Menü sichtbar */
.nav-links a > i.fa-solid:not(.fa-user):not(.fa-right-from-bracket):not(.fa-gauge) { display: none; }

.nav-cta {
    padding: 11px 30px !important;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark)) !important;
    color: #fff !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 15px rgba(139, 26, 58, 0.25) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--burgundy-light), var(--burgundy)) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(139, 26, 58, 0.35) !important;
}

.nav-cta::after { display: none !important; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(139, 26, 58, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(201, 168, 76, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(26, 16, 24, 0.95) 0%, var(--dark) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-float-1, .hero-float-2, .hero-float-3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: heroFloat 8s ease-in-out infinite;
}

.hero-float-1 {
    width: 400px; height: 400px;
    background: var(--burgundy);
    top: 10%; left: 15%;
}

.hero-float-2 {
    width: 300px; height: 300px;
    background: var(--gold);
    bottom: 15%; right: 10%;
    animation-delay: -3s;
}

.hero-float-3 {
    width: 250px; height: 250px;
    background: var(--burgundy-light);
    top: 50%; left: 60%;
    animation-delay: -5s;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -20px); }
    66% { transform: translate(-20px, 15px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 30px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 2s;
}

.hero-label::before, .hero-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 2.2s;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 45px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 2.4s;
}

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

/* Hero Search */
.hero-search {
    max-width: 680px;
    margin: 0 auto;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 60px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 0;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 2.6s;
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    position: relative;
}

.search-field i { color: rgba(255,255,255,0.55); font-size: 16px; }

.search-field input,
.search-field select {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    width: 100%;
}

.search-field select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.search-field select option {
    background: var(--dark);
    color: #fff;
}

.search-field input::placeholder { color: rgba(255,255,255,0.55); }

.search-divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.search-btn {
    flex-shrink: 0;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(139, 26, 58, 0.4);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 2.8s;
}

.hero-tag {
    padding: 8px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-tag:hover {
    background: rgba(201, 168, 76, 0.2);
    border-color: rgba(201, 168, 76, 0.4);
    color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.15);
}

/* ===== SECTIONS GENERAL ===== */
.section {
    padding: 100px 50px;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--burgundy);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-title em {
    font-style: italic;
    color: var(--burgundy);
}

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 550px;
}

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

.section-header .section-desc {
    margin: 0 auto;
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 50px;
    background: var(--ivory);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== CATEGORIES ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    padding: 40px 30px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 26, 58, 0.08), rgba(201, 168, 76, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    transform: scale(1.1);
}

.category-card:hover .category-icon span {
    filter: brightness(10);
}

.category-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.category-count {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== FEATURED / CITIES ===== */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.city-card {
    position: relative;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.city-card:hover img {
    transform: scale(1.08);
}

.city-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 16, 24, 0.85) 0%, rgba(26, 16, 24, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.4s;
}

.city-card:hover .city-overlay {
    background: linear-gradient(to top, rgba(139, 26, 58, 0.85) 0%, rgba(26, 16, 24, 0.3) 50%, transparent 100%);
}

.city-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.city-count {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.city-card.large {
    grid-column: span 2;
    height: 320px;
}

/* ===== CITIES V2 - Uniform Grid ===== */
.cities-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.city-card-v2 {
    position: relative;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.city-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-card-v2:hover img {
    transform: scale(1.08);
}

.city-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 16, 24, 0.9) 0%, rgba(26, 16, 24, 0.35) 45%, rgba(26, 16, 24, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: background 0.5s ease;
}

.city-card-v2:hover .city-card-overlay {
    background: linear-gradient(to top, rgba(139, 26, 58, 0.92) 0%, rgba(139, 26, 58, 0.4) 45%, rgba(26, 16, 24, 0.15) 100%);
}

.city-card-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}

.city-card-count {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

.city-card-btn {
    display: inline-block;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.03em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-card-v2:hover .city-card-btn {
    opacity: 1;
    transform: translateY(0);
}

/* "Alle Städte" Card */
.city-card-all {
    display: flex;
    align-items: flex-end;
}
.city-card-all .city-card-overlay {
    position: relative;
    inset: auto;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.city-card-all .city-card-name { font-size: 24px; }
.city-card-all .city-card-count { color: rgba(255,255,255,0.7); }
.city-card-all .city-card-btn { opacity: 1; transform: none; color: #fff; }
.city-card-all:hover .city-card-overlay { filter: brightness(1.15); }

/* ===== HOW IT WORKS ===== */
.how-section {
    background: var(--dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.how-section .section-label { color: var(--gold); }
.how-section .section-title { color: #fff; }
.how-section .section-title em { color: var(--gold); }
.how-section .section-subtitle { color: rgba(255,255,255,0.5); }
.how-section .section-desc { color: rgba(255,255,255,0.6); }

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
}

.how-step {
    text-align: center;
    position: relative;
    padding: 30px 10px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 700;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.9;
}

.step-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}

.step-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    max-width: 280px;
    margin: 0 auto;
}

/* ===== FEATURED PROVIDERS ===== */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.provider-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

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

.provider-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.provider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.provider-card:hover .provider-img img {
    transform: scale(1.06);
}

.provider-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 14px;
    background: var(--burgundy);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
}

.provider-fav {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
}

.provider-fav:hover { color: var(--burgundy); transform: scale(1.1); }

.provider-info {
    padding: 25px;
}

.provider-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--burgundy);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.provider-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.provider-location {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
}

.provider-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.provider-stars {
    color: var(--gold);
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.provider-rating-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.provider-reviews {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    text-align: center;
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content { position: relative; z-index: 2; }

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 50px);
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-title em { color: var(--gold); font-style: italic; }

.cta-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

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

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 42px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: var(--dark);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.5);
    filter: brightness(1.1);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 35px;
    position: relative;
}

.testimonial-quote {
    font-size: 36px;
    color: var(--gold);
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: #fff;
    padding: 80px 50px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-brand span { color: var(--gold); }

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.footer-col h5 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    padding: 6px 0;
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

/* ===== AD SPACES ===== */
.ad-space {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    text-align: center;
    background: rgba(139, 26, 58, 0.03);
    border: 1px dashed rgba(139, 26, 58, 0.1);
    border-radius: var(--radius);
    font-size: 12px;
    color: var(--text-lighter);
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== ACTION BUTTONS (Favorite, Share, Compare) ===== */
.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-light);
    transition: all 0.3s;
}

.action-btn:hover {
    background: var(--burgundy);
    color: #fff;
    border-color: var(--burgundy);
    transform: scale(1.1);
}

/* Share Menu */
.share-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    font-size: 13px;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
    white-space: nowrap;
}

.share-link:hover { background: var(--ivory); }

/* WhatsApp Button hover */
#whatsappBtn:hover { transform: scale(1.1); }

/* ===== DUAL ENTRY (Paar vs. Anbieter) ===== */
.dual-entry {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    margin: -60px auto 0;
    position: relative;
    z-index: 10;
    padding: 0 30px;
    gap: 20px;
}

.entry-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.4s ease;
    display: block;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(26, 16, 24, 0.1);
}

.entry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.entry-couple:hover { border-color: var(--burgundy); }
.entry-provider:hover { border-color: var(--gold); }

.entry-icon {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1;
}

.entry-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.entry-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.entry-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--burgundy);
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

.entry-provider .entry-link { color: var(--gold-dark); }
.entry-card:hover .entry-link { text-decoration: underline; }

/* ===== USP SECTION ===== */
.usp-section {
    padding-top: 120px;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.usp-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.usp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.usp-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 26, 58, 0.1), rgba(201, 168, 76, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--burgundy);
    transition: all 0.3s;
}

.usp-card:hover .usp-icon {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: #fff;
}

.usp-card h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

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

/* ===== CTA BADGE + FEATURES ===== */
.cta-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.cta-feature i {
    color: var(--gold);
    font-size: 14px;
    width: 24px;
    height: 24px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== EVENT TYPE CHIPS ===== */
.event-types-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.event-type-chip {
    padding: 14px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 15px;
    color: var(--text);
    transition: all 0.3s;
    cursor: default;
}

.event-type-chip strong {
    color: var(--burgundy);
    margin-right: 4px;
}

.event-type-chip:hover {
    border-color: var(--burgundy);
    background: rgba(139, 26, 58, 0.04);
}

/* ===== BTN OUTLINE DARK ===== */
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: transparent;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.03em;
    border: 2px solid var(--border);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
    background: rgba(139, 26, 58, 0.04);
}

/* ===== HERO QUICK TAGS (icon version) ===== */
.hero-quick-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 2.8s;
}

.hero-quick-tags .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-quick-tags .hero-tag i {
    font-size: 13px;
    opacity: 0.8;
}

/* ===== PROVIDER CARD AS LINK ===== */
a.provider-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .cities-grid { grid-template-columns: 1fr 1fr; }
    .city-card.large { grid-column: span 2; }
    .cities-grid-v2 { grid-template-columns: 1fr 1fr; }
    .providers-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    nav { padding: 0 15px; }
    
    /* Mobile Menu Overlay */
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(26, 16, 24, 0.5);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: -1;
    }
    .nav-links.open::before { opacity: 1; pointer-events: auto; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
        flex-direction: column;
        padding: 30px;
        padding-top: 90px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 60px rgba(26, 16, 24, 0.15);
        z-index: 999;
        overflow-y: auto;
    }
    .nav-links.open { right: 0; }
    
    .nav-links li { width: 100%; }
    
    /* Mobile Menu: IMMER dunkler Text - EGAL ob scrolled oder nicht */
    .nav-links.open a,
    .nav-links a {
        text-transform: none !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        letter-spacing: 0.01em !important;
        padding: 14px 0 !important;
        color: #1A1018 !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        border-bottom: 1px solid rgba(139, 26, 58, 0.08);
        transition: all 0.2s ease !important;
        font-family: var(--font-body) !important;
    }
    #navbar .nav-links a { color: #1A1018 !important; }
    #navbar:not(.scrolled) .nav-links a { color: #1A1018 !important; }
    .nav-links a:hover { color: #8B1A3A !important; padding-left: 8px !important; }
    .nav-links a::after { display: none !important; }
    .nav-links a i { color: var(--burgundy); font-size: 14px; width: 20px; text-align: center; display: inline-block !important; }
    
    /* CTA Button im Menü */
    .nav-links .nav-cta {
        border-bottom: none !important;
        margin-top: 20px !important;
        color: #fff !important;
        text-transform: uppercase !important;
        font-size: 13px !important;
        letter-spacing: 0.08em !important;
        text-align: center;
        display: flex !important;
        justify-content: center !important;
        padding: 14px 28px !important;
        border-radius: 50px !important;
        width: 100%;
    }
    
    /* Sprach-Switch im Menü */
    .nav-links .nav-lang {
        color: var(--text) !important;
        margin-top: 15px;
        justify-content: center;
    }
    
    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 1001;
    }
    
    /* Logo + Close im Menü-Panel */
    .mobile-menu-header { display: flex !important; }

    /* Mobile: Hero-Content weiter unten (Abstand zu Nav) */
    .hero { padding-top: 90px; min-height: auto; }
    .hero-content { padding-top: 20px; padding-bottom: 40px; }
    .hero-label { margin-bottom: 15px; font-size: 10px; letter-spacing: 0.12em; }
    .hero-title { font-size: 28px !important; }
    .hero-subtitle { font-size: 14px !important; }

    .section { padding: 50px 15px; }
    .section-title { font-size: 26px; }
    .section-subtitle { font-size: 14px; padding: 0 10px; }
    .stats-bar { flex-wrap: wrap; gap: 30px; padding: 30px 15px; }
    .stat-number { font-size: 28px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
    .category-card { padding: 20px 12px; }
    .category-icon { width: 50px; height: 50px; font-size: 22px; }
    .category-name { font-size: 13px; }
    .cities-grid { grid-template-columns: 1fr; }
    .city-card.large { grid-column: span 1; height: 220px; }
    .city-card { height: 200px; }
    .cities-grid-v2 { grid-template-columns: 1fr 1fr; gap: 12px; }
    .city-card-v2 { height: 200px; }
    .city-card-v2.city-card-all { grid-column: 1 / -1; height: auto; min-height: 80px; }
    .city-card-v2.city-card-all .city-card-overlay { padding: 20px; }
    .city-card-name { font-size: 20px; }
    .city-card-btn { opacity: 1; transform: none; font-size: 11px; }
    .how-grid { grid-template-columns: 1fr; gap: 30px; }
    .providers-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-col h5 { font-size: 15px; margin-bottom: 12px; }
    .footer-col a { font-size: 13px; padding: 5px 0; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

    .hero-search {
        flex-direction: column;
        border-radius: var(--radius-lg);
        gap: 0;
    }
    .search-divider { width: 100%; height: 1px; }
    .search-btn { width: 100%; justify-content: center; border-radius: 50px; }
    .search-field { padding: 12px 16px; }

    .cta-section { padding: 50px 15px; }
    .cta-section h2 { font-size: 24px; }

    /* NEW sections */
    .dual-entry {
        grid-template-columns: 1fr;
        padding: 0 15px;
        margin-top: -40px;
        gap: 12px;
    }
    .entry-card { padding: 25px 20px; }
    .entry-icon { font-size: 32px; }
    .entry-title { font-size: 18px; }

    .usp-section { padding-top: 80px; }
    .usp-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .usp-card { padding: 20px 15px; }
    .usp-card h4 { font-size: 15px; }
    .usp-card p { font-size: 13px; }

    .cta-features { align-items: flex-start; padding: 0 15px; }
    .cta-feature { font-size: 14px; }

    .event-types-row { gap: 8px; }
    .event-type-chip { padding: 10px 16px; font-size: 13px; }

    /* === Ad Spaces === */
    .ad-space {
        min-height: 60px;
        padding: 10px;
        margin: 0 15px;
    }

    /* === Werbung Page === */
    .werb-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .werb-stats > div { padding: 20px 12px !important; }
    .werb-stats > div > div:first-child { font-size: 24px !important; }
    .werb-packages { grid-template-columns: 1fr !important; gap: 15px !important; }
    .werb-packages > div { transform: none !important; }
    .werb-packages > div[style*="scale"] { transform: none !important; }
    .werb-who { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }

    /* === Anfrage Form === */
    .anfrage-row { grid-template-columns: 1fr !important; }

    /* === Dashboard Extras === */
    .dash-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .dash-card { padding: 20px; }
    .dash-table { font-size: 12px; }
    .dash-table th, .dash-table td { padding: 8px 6px; }
    .dash-table td { white-space: normal !important; }
}

@media (max-width: 480px) {
    .categories-grid { grid-template-columns: 1fr 1fr !important; gap: 8px; }
    .category-card { padding: 18px 10px; }
    .category-icon { width: 45px; height: 45px; font-size: 20px; }
    .category-name { font-size: 12px; }

    .werb-stats { grid-template-columns: 1fr !important; }
    .werb-who { grid-template-columns: 1fr !important; }

    .dash-stats { grid-template-columns: 1fr; }

    /* Smaller fonts on very small screens */
    .hero-search .search-field { font-size: 14px; }
    .stat-number { font-size: 24px; }

    .usp-grid { grid-template-columns: 1fr; }
    .event-type-chip { padding: 8px 14px; font-size: 12px; }
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
