/*
Theme Name: Flavor Starter
Theme URI: https://example.com/flavor-starter
Author: Flavor Studio
Author URI: https://example.com
Description: Ein modernes, Elementor-kompatibles WordPress Theme mit 3-Spalten Content-Layout und 4-Spalten Header/Footer. Vollständig anpassbar über den WordPress Customizer und Elementor Page Builder.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: flavor-starter
Tags: three-columns, custom-header, custom-footer, elementor, responsive, translation-ready
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Colors */
    --fl-primary: #1a1a2e;
    --fl-secondary: #16213e;
    --fl-accent: #e94560;
    --fl-accent-hover: #c73850;
    --fl-text: #2d2d3a;
    --fl-text-light: #6b6b80;
    --fl-text-inverse: #ffffff;
    --fl-bg: #f8f9fc;
    --fl-bg-alt: #ffffff;
    --fl-border: #e2e4ec;
    --fl-shadow: rgba(26, 26, 46, 0.08);
    --fl-shadow-heavy: rgba(26, 26, 46, 0.16);

    /* Typography */
    --fl-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --fl-font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --fl-font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --fl-gap: 2rem;
    --fl-gap-sm: 1rem;
    --fl-gap-lg: 3rem;
    --fl-container: 1280px;
    --fl-container-wide: 1440px;

    /* Border Radius */
    --fl-radius: 8px;
    --fl-radius-lg: 16px;

    /* Transitions */
    --fl-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--fl-font-body);
    color: var(--fl-text);
    background-color: var(--fl-bg);
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fl-font-heading);
    color: var(--fl-primary);
    line-height: 1.3;
    font-weight: 700;
}

/* ============================================
   CONTAINER
   ============================================ */
.fl-container {
    width: 100%;
    max-width: var(--fl-container);
    margin: 0 auto;
    padding: 0 var(--fl-gap);
}

.fl-container--wide {
    max-width: var(--fl-container-wide);
}

/* ============================================
   HEADER – 4 SPALTEN + NAVBAR DARUNTER
   ============================================ */
.fl-site-header {
    background: var(--fl-primary);
    color: var(--fl-text-inverse);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--fl-shadow-heavy);
}

.fl-header-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.fl-header-main {
    padding: 1rem 0;
}

.fl-header-grid {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: var(--fl-gap);
    align-items: center;
}

/* Header Column 1: Logo/Brand */
.fl-header-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fl-header-brand .fl-logo {
    max-height: 48px;
    width: auto;
}

.fl-site-title {
    font-family: var(--fl-font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--fl-text-inverse);
    letter-spacing: -0.03em;
}

.fl-site-title a {
    color: inherit;
}

.fl-site-title a:hover {
    color: var(--fl-accent);
}

.fl-site-description {
    font-size: 0.75rem;
    opacity: 0.5;
    margin-top: 2px;
}

/* Header Column 2: Search */
.fl-header-search {
    position: relative;
    justify-self: end;
}

.fl-search-form {
    display: flex;
    align-items: center;
}

.fl-search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--fl-radius);
    font-family: var(--fl-font-body);
    font-size: 0.9rem;
    width: 220px;
    transition: all var(--fl-transition);
}

.fl-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.fl-search-input:focus {
    outline: none;
    border-color: var(--fl-accent);
    width: 280px;
    background: rgba(255, 255, 255, 0.15);
}

/* Header Column 3: Actions / CTA */
.fl-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Header Column 4: Mobile Toggle (hidden on desktop) */
.fl-header-mobile {
    display: none;
}

/* ============================================
   NAVBAR – Separate Navigationsleiste
   ============================================ */
.fl-navbar {
    background: var(--fl-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fl-header-nav {
    display: flex;
    justify-content: center;
}

.fl-nav-menu {
    display: flex;
    list-style: none;
    gap: 0.15rem;
}

.fl-nav-menu li a {
    display: block;
    padding: 0.7rem 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 0;
    transition: all var(--fl-transition);
    position: relative;
}

.fl-nav-menu li a:hover,
.fl-nav-menu li.current-menu-item a {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.fl-nav-menu li.current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--fl-accent);
}

/* ============================================
   BUTTONS
   ============================================ */

.fl-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    font-family: var(--fl-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--fl-radius);
    border: none;
    cursor: pointer;
    transition: all var(--fl-transition);
    text-decoration: none;
}

.fl-btn--primary {
    background: var(--fl-accent);
    color: #fff;
}

.fl-btn--primary:hover {
    background: var(--fl-accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.35);
}

.fl-btn--ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fl-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

/* Mobile Menu Toggle */
.fl-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ============================================
   MAIN CONTENT – 3 SPALTEN
   ============================================ */
.fl-site-content {
    padding: var(--fl-gap-lg) 0;
    min-height: 60vh;
}

.fl-content-grid {
    display: grid;
    grid-template-columns: 260px 1fr 300px;
    gap: var(--fl-gap);
    align-items: start;
}

/* Column 1: Left Sidebar */
.fl-sidebar-left {
    position: sticky;
    top: 100px;
}

.fl-widget {
    background: var(--fl-bg-alt);
    border-radius: var(--fl-radius-lg);
    padding: 1.5rem;
    margin-bottom: var(--fl-gap);
    border: 1px solid var(--fl-border);
    box-shadow: 0 1px 3px var(--fl-shadow);
    transition: box-shadow var(--fl-transition);
}

.fl-widget:hover {
    box-shadow: 0 4px 16px var(--fl-shadow);
}

.fl-widget-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--fl-text-light);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--fl-border);
    font-weight: 700;
}

.fl-widget ul {
    list-style: none;
}

.fl-widget ul li {
    padding: 0.4rem 0;
}

.fl-widget ul li a {
    color: var(--fl-text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fl-widget ul li a:hover {
    color: var(--fl-accent);
    padding-left: 4px;
}

/* Column 2: Main Content */
.fl-main-content {
    min-width: 0;
}

.fl-main-content .entry-header {
    margin-bottom: var(--fl-gap);
}

.fl-main-content .entry-title {
    font-size: 2.25rem;
    letter-spacing: -0.03em;
}

.fl-main-content .entry-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.fl-main-content .entry-content p {
    margin-bottom: 1.25rem;
}

/* Elementor Override – let Elementor control this column */
.fl-main-content.elementor-page {
    padding: 0;
}

/* Column 3: Right Sidebar */
.fl-sidebar-right {
    position: sticky;
    top: 100px;
}

/* ============================================
   FOOTER – 4 SPALTEN
   ============================================ */
.fl-site-footer {
    background: var(--fl-primary);
    color: rgba(255, 255, 255, 0.75);
    margin-top: auto;
}

.fl-footer-main {
    padding: 4rem 0 3rem;
}

.fl-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--fl-gap-lg);
}

.fl-footer-col-title {
    font-family: var(--fl-font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    position: relative;
}

.fl-footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: var(--fl-accent);
    border-radius: 3px;
}

.fl-footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.fl-footer-col ul {
    list-style: none;
}

.fl-footer-col ul li {
    padding: 0.3rem 0;
}

.fl-footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: all var(--fl-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.fl-footer-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

.fl-footer-col ul li a::before {
    content: '→';
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity var(--fl-transition);
}

.fl-footer-col ul li a:hover::before {
    opacity: 1;
}

/* Footer Social Icons */
.fl-social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.fl-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--fl-radius);
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    transition: all var(--fl-transition);
}

.fl-social-link:hover {
    background: var(--fl-accent);
    color: #fff;
    transform: translateY(-2px);
}

/* Footer Newsletter */
.fl-newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.fl-newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: var(--fl-radius);
    font-family: var(--fl-font-body);
    font-size: 0.9rem;
}

.fl-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.fl-newsletter-input:focus {
    outline: none;
    border-color: var(--fl-accent);
}

.fl-newsletter-btn {
    background: var(--fl-accent);
    border: none;
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: var(--fl-radius);
    cursor: pointer;
    font-weight: 600;
    transition: background var(--fl-transition);
}

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

/* Footer Bottom Bar */
.fl-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.fl-footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

.fl-footer-bottom a:hover {
    color: #fff;
}

.fl-footer-legal {
    display: flex;
    gap: 1.5rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .fl-header-grid {
        grid-template-columns: auto 1fr auto auto;
    }

    .fl-header-search {
        display: none;
    }

    .fl-content-grid {
        grid-template-columns: 1fr 300px;
    }

    .fl-sidebar-left {
        display: none;
    }

    .fl-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --fl-gap: 1.25rem;
        --fl-gap-lg: 2rem;
    }

    .fl-header-grid {
        grid-template-columns: auto 1fr auto;
    }

    .fl-header-actions {
        display: none;
    }

    .fl-header-mobile {
        display: flex;
        align-items: center;
    }

    /* Navbar collapses on mobile */
    .fl-navbar {
        display: none;
    }

    .fl-navbar.is-open {
        display: block;
    }

    .fl-navbar.is-open .fl-header-nav {
        flex-direction: column;
    }

    .fl-navbar.is-open .fl-nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .fl-navbar.is-open .fl-nav-menu li a {
        padding: 0.75rem 1.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .fl-content-grid {
        grid-template-columns: 1fr;
    }

    .fl-sidebar-right {
        position: relative;
        top: auto;
    }

    .fl-footer-grid {
        grid-template-columns: 1fr;
        gap: var(--fl-gap);
    }

    .fl-footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .fl-main-content .entry-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.fl-section {
    padding: 5rem 0;
}

.fl-section:nth-child(even) {
    background: var(--fl-bg-alt);
}

.fl-section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 3rem;
}

.fl-section-label {
    display: inline-block;
    font-family: var(--fl-font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fl-accent);
    background: rgba(233, 69, 96, 0.08);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.fl-section-title {
    font-size: 2rem;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.fl-section-title--left {
    text-align: left;
}

.fl-section-subtitle {
    color: var(--fl-text-light);
    font-size: 1.05rem;
}

.fl-section-footer {
    text-align: center;
    margin-top: 2.5rem;
}

/* ============================================
   SEKTION – HERO / BANNER
   ============================================ */
.fl-hero {
    background: var(--fl-primary);
    color: var(--fl-text-inverse);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.fl-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(233, 69, 96, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.fl-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.fl-hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fl-accent);
    border: 1px solid rgba(233, 69, 96, 0.4);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.fl-hero-title {
    font-family: var(--fl-font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.fl-hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

.fl-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.fl-btn--lg {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

.fl-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.fl-btn--white {
    background: #fff;
    color: var(--fl-primary);
}

.fl-btn--white:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--fl-primary);
    transform: translateY(-1px);
}

/* Hero visual / placeholder shapes */
.fl-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fl-hero-image {
    width: 100%;
    max-width: 520px;
    border-radius: var(--fl-radius-lg);
}

.fl-hero-placeholder {
    position: relative;
    width: 380px;
    height: 340px;
}

.fl-hero-shape {
    position: absolute;
    border-radius: var(--fl-radius-lg);
}

.fl-hero-shape--1 {
    width: 240px;
    height: 240px;
    background: rgba(233, 69, 96, 0.15);
    top: 0;
    right: 0;
    transform: rotate(6deg);
}

.fl-hero-shape--2 {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.06);
    bottom: 0;
    left: 0;
    transform: rotate(-4deg);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.fl-hero-shape--3 {
    width: 100px;
    height: 100px;
    background: var(--fl-accent);
    opacity: 0.2;
    bottom: 40px;
    right: 40px;
    border-radius: 50%;
}

/* ============================================
   SEKTION – FEATURES / LEISTUNGEN
   ============================================ */
.fl-features {
    background: var(--fl-bg);
}

.fl-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--fl-gap);
}

.fl-feature-card {
    background: var(--fl-bg-alt);
    border: 1px solid var(--fl-border);
    border-radius: var(--fl-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--fl-transition);
}

.fl-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--fl-shadow);
    border-color: rgba(233, 69, 96, 0.2);
}

.fl-feature-icon {
    font-size: 2.25rem;
    color: var(--fl-accent);
    margin-bottom: 1rem;
    line-height: 1;
}

.fl-feature-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.fl-feature-text {
    color: var(--fl-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   SEKTION – ÜBER UNS (2-Spalten)
   ============================================ */
.fl-about {
    background: var(--fl-bg-alt);
}

.fl-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.fl-about-image {
    width: 100%;
    border-radius: var(--fl-radius-lg);
}

.fl-about-placeholder {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: var(--fl-bg);
    border-radius: var(--fl-radius-lg);
    border: 1px solid var(--fl-border);
    overflow: hidden;
}

.fl-about-deco {
    position: absolute;
    border-radius: var(--fl-radius-lg);
}

.fl-about-deco--1 {
    width: 60%;
    height: 60%;
    background: rgba(233, 69, 96, 0.07);
    top: 15%;
    left: 10%;
    transform: rotate(-3deg);
}

.fl-about-deco--2 {
    width: 50%;
    height: 50%;
    background: rgba(26, 26, 46, 0.04);
    bottom: 10%;
    right: 10%;
    border: 2px solid var(--fl-border);
    transform: rotate(3deg);
}

.fl-about-content p {
    color: var(--fl-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.fl-about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

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

.fl-stat-number {
    display: block;
    font-family: var(--fl-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--fl-accent);
    line-height: 1.2;
}

.fl-stat-label {
    font-size: 0.85rem;
    color: var(--fl-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   SEKTION – CTA BAND
   ============================================ */
.fl-cta-band {
    background: var(--fl-accent);
    color: #fff;
    padding: 3.5rem 0;
}

.fl-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.fl-cta-title {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.fl-cta-subtitle {
    font-size: 1.05rem;
    opacity: 0.85;
}

/* ============================================
   SEKTION – TESTIMONIALS
   ============================================ */
.fl-testimonials {
    background: var(--fl-bg);
}

.fl-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--fl-gap);
}

.fl-testimonial-card {
    background: var(--fl-bg-alt);
    border: 1px solid var(--fl-border);
    border-radius: var(--fl-radius-lg);
    padding: 2rem;
    transition: box-shadow var(--fl-transition);
}

.fl-testimonial-card:hover {
    box-shadow: 0 8px 24px var(--fl-shadow);
}

.fl-testimonial-stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.fl-testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--fl-text);
    margin: 0 0 1.5rem;
    font-style: italic;
}

.fl-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fl-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--fl-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fl-font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.fl-testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--fl-primary);
}

.fl-testimonial-role {
    font-size: 0.8rem;
    color: var(--fl-text-light);
}

/* ============================================
   SEKTION – BLOG / NEWS TEASER
   ============================================ */
.fl-blog-teaser {
    background: var(--fl-bg-alt);
}

.fl-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--fl-gap);
}

.fl-blog-card {
    background: var(--fl-bg-alt);
    border: 1px solid var(--fl-border);
    border-radius: var(--fl-radius-lg);
    overflow: hidden;
    transition: all var(--fl-transition);
}

.fl-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--fl-shadow);
}

.fl-blog-card-image {
    display: block;
    height: 200px;
    overflow: hidden;
    background: var(--fl-bg);
}

.fl-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--fl-transition);
}

.fl-blog-card:hover .fl-blog-card-image img {
    transform: scale(1.05);
}

.fl-blog-card-image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--fl-text-light);
    opacity: 0.3;
}

.fl-blog-card-body {
    padding: 1.5rem;
}

.fl-blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--fl-text-light);
    margin-bottom: 0.5rem;
}

.fl-blog-card-cat {
    background: rgba(233, 69, 96, 0.08);
    color: var(--fl-accent);
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.fl-blog-card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.fl-blog-card-title a {
    color: var(--fl-primary);
}

.fl-blog-card-title a:hover {
    color: var(--fl-accent);
}

.fl-blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--fl-text-light);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.fl-blog-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fl-accent);
}

/* ============================================
   SEKTION – PARTNER / LOGOS
   ============================================ */
.fl-partners {
    background: var(--fl-bg);
}

.fl-partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.fl-partner-logo {
    width: 140px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fl-bg-alt);
    border: 1px solid var(--fl-border);
    border-radius: var(--fl-radius);
    color: var(--fl-text-light);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.6;
    transition: opacity var(--fl-transition);
}

.fl-partner-logo:hover {
    opacity: 1;
}

/* ============================================
   RESPONSIVE – NEUE SEKTIONEN
   ============================================ */
@media (max-width: 1024px) {
    .fl-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fl-hero-text {
        max-width: 100%;
    }

    .fl-hero-actions {
        justify-content: center;
    }

    .fl-hero-visual {
        display: none;
    }

    .fl-about-grid {
        grid-template-columns: 1fr;
    }

    .fl-about-media {
        order: -1;
    }
}

@media (max-width: 768px) {
    .fl-section {
        padding: 3rem 0;
    }

    .fl-hero {
        padding: 3rem 0;
    }

    .fl-hero-title {
        font-size: 2rem;
    }

    .fl-section-title {
        font-size: 1.5rem;
    }

    .fl-features-grid,
    .fl-testimonials-grid,
    .fl-blog-grid {
        grid-template-columns: 1fr;
    }

    .fl-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .fl-cta-title {
        font-size: 1.35rem;
    }

    .fl-about-stats {
        justify-content: center;
    }

    .fl-partners-grid {
        gap: 1.5rem;
    }
}

/* ============================================
   ELEMENTOR COMPATIBILITY (Basis)
   Detailliertes Widget-Styling: assets/css/elementor-compat.css
   ============================================ */

/* Elementor-Seiten: Layout anpassen */
.flavor-elementor-page .fl-main-content {
    padding: 0;
}

.flavor-elementor-page .fl-content-grid {
    display: block;
}

.flavor-elementor-page .fl-site-content {
    padding: 0;
}

/* Template: Vollbreite */
.fl-elementor-full {
    padding: 0;
}

.page-template-template-elementor-full .fl-site-content {
    padding: 0;
}

.page-template-template-elementor-full .fl-container,
.page-template-template-elementor-full .fl-content-grid {
    max-width: 100%;
    padding: 0;
    display: block;
}

/* Template: Canvas */
.page-template-template-elementor-canvas .fl-site-header,
.page-template-template-elementor-canvas .fl-navbar,
.page-template-template-elementor-canvas .fl-site-footer {
    display: none;
}

/* Template: Boxed mit Sidebar */
.page-template-template-elementor-boxed .fl-content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
}

@media (max-width: 768px) {
    .page-template-template-elementor-boxed .fl-content-grid {
        grid-template-columns: 1fr;
    }
}

/* Stretched Sections: volle Viewport-Breite */
.elementor-section.elementor-section-stretched {
    max-width: 100vw;
}

/* Elementor Sections: sanfte Übergänge */
.elementor-section {
    transition: background var(--fl-transition);
}

/* Elementor Columns: Basis-Padding */
.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: 10px;
}

/* Widget-Abstand innerhalb von Columns */
.elementor-widget:not(:last-child) {
    margin-bottom: 20px;
}

/* Auto-detected Elementor-Seite (page.php) */
.fl-elementor-auto {
    padding: 0;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.fl-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.fl-text-center { text-align: center; }
.fl-text-right { text-align: right; }
.fl-mt-1 { margin-top: 0.5rem; }
.fl-mt-2 { margin-top: 1rem; }
.fl-mt-3 { margin-top: 2rem; }
.fl-mb-1 { margin-bottom: 0.5rem; }
.fl-mb-2 { margin-bottom: 1rem; }
.fl-mb-3 { margin-bottom: 2rem; }
