/*
 * WEBOMATOR CMS - Eigentum von Murat Danis / aslan4u.de
 * Jegliche Vervielfaeltigung, Weitergabe oder Verkauf ohne
 * schriftliche Genehmigung ist untersagt.
 * (c) 2024-2026 Murat Danis - Alle Rechte vorbehalten.
 */

/**
 * CB Architekt - Elegant Luxus Design
 * Premium Website v1
 * 10.000 EUR Agentur-Qualität
 */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Colors - Elegant Luxus Palette */
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #c9a84c;
    --color-accent-dark: #b8963f;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-white: #ffffff;
    --color-off-white: #f8f8f8;
    --color-light-gray: #e8e8e8;
    --color-dark: #0a0a14;

    /* Typography */
    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Spacing */
    --section-padding: 150px;
    --container-width: 1200px;
    --container-padding: 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-elegant: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);

    /* Border Radius */
    --radius-small: 4px;
    --radius-medium: 8px;
    --radius-large: 16px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* WCAG 2.4.1 - Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 9999;
    padding: 12px 20px;
    background: var(--color-primary);
    color: var(--color-accent);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom-right-radius: var(--radius-small);
    transition: top 0.15s ease;
}
.skip-link:focus {
    top: 0;
}

/* WCAG 2.4.7 - Focus Visible */
*:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul, ol {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: var(--color-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

/* Goldene Ueberschriften in dunklen Bereichen */
.page-hero h1,
.page-hero h2,
.page-hero h3,
.cta-section h2,
.cta-section h3 {
    color: #c9a84c;
}
footer h4 {
    color: #c9a84c;
}

p {
    margin-bottom: 1rem;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-divider {
    width: 60px;
    border: none;
    border-top: 2px solid var(--color-accent);
    margin: 0 auto 1.5rem;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--color-white);
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
    overflow: visible;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: var(--transition-normal);
}

.site-header.scrolled .nav-logo img {
    height: 40px;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1.3;
    transition: var(--transition-normal);
}

.site-header.scrolled .nav-logo-text {
    color: var(--color-accent-dark);
}

.nav-logo-sub {
    color: var(--color-white);
    font-weight: 400;
}

.site-header.scrolled .nav-logo-sub {
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    position: relative;
    padding: 5px 0;
}

.site-header.scrolled .nav-link {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0,0,0,0.06);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: var(--color-white);
    border-top: 0;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
    text-transform: none;
    letter-spacing: 0;
}

.nav-dropdown-menu a i {
    width: 18px;
    text-align: center;
    color: var(--color-accent);
    font-size: 0.8rem;
}

.nav-dropdown-menu a:hover {
    background: var(--color-off-white);
    color: var(--color-accent-dark);
    padding-left: 24px;
}

.nav-cta {
    padding: 12px 25px;
    border: 1px solid var(--color-accent);
    color: var(--color-accent) !important;
}

.nav-cta:hover {
    background-color: var(--color-accent);
    color: var(--color-primary) !important;
}

.nav-cta::after {
    display: none;
}

/* Mobile Quick-Actions (neben Hamburger) */
.nav-mobile-actions {
    display: none;
    align-items: center;
    gap: 15px;
}

.nav-mobile-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    font-size: 1rem;
    transition: var(--transition-normal);
    flex-shrink: 0;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.nav-mobile-icon i {
    pointer-events: none;
}

.site-header.scrolled .nav-mobile-icon {
    background: rgba(26, 26, 46, 0.08);
    color: var(--color-primary);
}

.nav-mobile-icon:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    position: relative;
    transition: var(--transition-normal);
    pointer-events: none;
}

.site-header.scrolled .hamburger {
    background-color: var(--color-primary);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: inherit;
    transition: var(--transition-normal);
    pointer-events: none;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.nav-toggle.active .hamburger {
    background-color: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
    background-color: var(--color-white);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: var(--color-white);
}

.site-header.scrolled .nav-toggle.active .hamburger::before,
.site-header.scrolled .nav-toggle.active .hamburger::after {
    background-color: var(--color-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.85) 0%,
        rgba(22, 33, 62, 0.7) 50%,
        rgba(26, 26, 46, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.hero-title {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    display: block;
}

.title-accent {
    display: block;
    font-size: 2rem;
    color: var(--color-accent);
    margin: 0.5rem 0;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .btn-outline {
    border-color: var(--color-white);
    color: var(--color-white);
}

.hero-cta .btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
    opacity: 0.7;
    transition: var(--transition-normal);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.scroll-arrow {
    animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* Hero Features Bar */
.hero-features {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    gap: 60px;
    z-index: 2;
}

.feature-item {
    text-align: center;
    color: var(--color-white);
}

.feature-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1;
}

.feature-label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

.feature-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-accent {
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 2px solid var(--color-accent);
    z-index: -1;
}

.about-headline {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.about-text {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.about-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-feature .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature .feature-icon i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.about-feature .feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.about-feature .feature-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 0;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.stat-item {
    text-align: center;
    color: var(--color-white);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-accent);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 10px;
    opacity: 0.8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background-color: var(--color-off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    padding: 50px 40px;
    position: relative;
    transition: var(--transition-normal);
    border: 1px solid var(--color-light-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: transparent;
}

/* Leistungsseiten Bild-Cards */
.leistung-img-card { box-shadow: 0 4px 20px rgba(0,0,0,0.08); cursor: pointer; }
.leistung-img-card:hover img { transform: scale(1.08); }
.leistung-img-card:hover .leistung-img-overlay { background: linear-gradient(135deg, rgba(201,168,76,0.35), rgba(26,26,46,0.15)); }

.service-card.featured {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
}

.service-card.featured .service-title,
.service-card.featured .service-icon i {
    color: var(--color-accent);
}

.service-card.featured .service-description,
.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.85);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-accent);
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
}

.service-icon {
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 1.6rem;
    color: #ffffff;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 25px;
}

.service-features {
    margin-top: auto;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.service-features li i {
    color: var(--color-accent);
    font-size: 0.8rem;
}

.services-cta {
    text-align: center;
    margin-top: 60px;
}

.services-cta p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    background-color: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-link {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 26, 46, 0.9) 0%,
        rgba(26, 26, 46, 0.3) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-info {
    color: var(--color-white);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gallery-category {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.gallery-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    color: var(--color-white);
}

.gallery-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-icon {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox */
/* ========================================
   LIGHTBOX v2 - Thumbnails seitlich + Overlay
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-layout {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
}

/* Hauptbereich (Bild + Pfeile) - nimmt gesamte Breite MINUS Sidebar */
.lightbox-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 0;
    padding: 20px 60px;
}

.lightbox-content {
    position: relative;
    max-width: 100%;
    max-height: 92vh;
    overflow: hidden;
    border-radius: 6px;
}

.lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    transition: opacity 0.3s;
}

/* Overlay auf dem Bild (wie Gallery-Startseite) */
.lightbox-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 60px 24px 20px;
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-content:hover .lightbox-overlay {
    opacity: 1;
}

.lightbox-overlay-info {
    flex: 1;
}

.lightbox-category {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 6px;
}

.lightbox-caption {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.3;
}

.lightbox-description {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    margin: 0;
    max-width: 500px;
    line-height: 1.5;
}

.lightbox-counter {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
    margin-left: 16px;
}

/* Close Button - oben rechts IN der Sidebar */
.lightbox-close {
    position: absolute;
    top: 12px;
    right: 112px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 50%;
    transition: all 0.2s;
    opacity: 0.7;
    z-index: 10;
}

.lightbox-close:hover {
    opacity: 1;
    background: rgba(201,169,98,0.3);
    color: var(--color-accent);
}

/* Nav Arrows */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 14px 16px;
    border-radius: 50%;
    transition: all 0.2s;
    opacity: 0.6;
    z-index: 5;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    background: rgba(201,169,98,0.3);
    color: var(--color-accent);
}

/* Sidebar Thumbnails (rechts, NEBEN dem Bild) */
.lightbox-sidebar {
    width: 100px;
    background: rgba(15,15,25,0.95);
    border-left: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 50px 10px 16px;
    overflow-y: auto;
    overflow-x: hidden;
    flex-shrink: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) transparent;
}

.lightbox-sidebar::-webkit-scrollbar { width: 3px; }
.lightbox-sidebar::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius: 3px; }

.lb-thumb {
    width: 76px;
    height: 52px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    opacity: 0.35;
    transition: all 0.25s;
    flex-shrink: 0;
    border: 2px solid transparent;
}

.lb-thumb:hover {
    opacity: 0.75;
    transform: scale(1.06);
}

.lb-thumb.active {
    opacity: 1;
    border-color: var(--color-accent);
    box-shadow: 0 0 8px rgba(201,169,98,0.4);
}

/* Play/Pause Button */
.lightbox-controls {
    position: absolute;
    top: 12px;
    right: 160px;
    z-index: 10;
}

.lightbox-play {
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 50%;
    transition: all 0.2s;
    opacity: 0.7;
}

.lightbox-play:hover {
    opacity: 1;
    background: rgba(201,169,98,0.3);
    color: var(--color-accent);
}

.lightbox-play.playing {
    color: var(--color-accent);
    opacity: 1;
}

/* Mobile Lightbox */
@media (max-width: 768px) {
    .lightbox-layout {
        flex-direction: column;
    }

    .lightbox-main {
        padding: 10px 40px;
    }

    .lightbox-sidebar {
        width: 100%;
        height: 72px;
        flex-direction: row;
        padding: 8px 12px;
        overflow-x: auto;
        overflow-y: hidden;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .lb-thumb {
        width: 58px;
        height: 44px;
    }

    .lightbox-content {
        max-width: 100%;
    }

    .lightbox-close {
        right: 8px;
        top: 8px;
    }

    .lightbox-prev { left: 2px; padding: 10px; font-size: 1rem; }
    .lightbox-next { right: 2px; padding: 10px; font-size: 1rem; }

    .lightbox-controls { right: 50px; top: 8px; }

    .lightbox-caption { font-size: 0.9rem; }
    .lightbox-description { font-size: 0.75rem; }
}

/* Gallery Erweiterungen */
.gallery-count {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    margin-top: 2px;
}

.gallery-ext-link {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    text-decoration: none;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition-normal);
    z-index: 3;
}

.gallery-item:hover .gallery-ext-link {
    opacity: 1;
    transform: translateY(0);
}

.gallery-ext-link:hover {
    background: var(--color-white);
    color: var(--color-accent);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-white) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-card {
    background: var(--color-white);
    padding: 50px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-accent);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-details p {
    margin: 0;
    color: var(--color-text-light);
}

.contact-details a {
    color: var(--color-text-light);
}

.contact-details a:hover {
    color: var(--color-accent);
}

.contact-social h4 {
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    min-width: 44px;
    min-height: 44px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-normal);
    touch-action: manipulation;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.social-links a i {
    pointer-events: none;
}

.social-links a:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

/* Map */
.contact-map {
    position: relative;
    height: 300px;
    background: var(--color-light-gray);
    overflow: hidden;
}

.map-consent {
    position: absolute;
    inset: 0;
    background: var(--color-off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.map-consent-content {
    text-align: center;
    padding: 30px;
}

.map-consent-content i {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.map-consent-content p {
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.map-consent-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    padding: 50px;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-light-gray);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-normal);
    background: var(--color-off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
    border-color: var(--color-accent);
    background: var(--color-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-error {
    display: block;
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Checkbox */
.form-checkbox {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.checkbox-label input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-light-gray);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.checkbox-label input:checked + .checkmark {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.checkbox-label input:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--color-primary);
}

.checkbox-text a {
    color: var(--color-accent);
    text-decoration: underline;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    position: relative;
}

.btn-loading {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: inline-block;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: var(--color-white);
    padding: 80px 0 30px;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1.4;
    margin: 0;
}

.footer-brand-sub {
    color: var(--color-white);
    font-weight: 400;
}

.footer-tagline {
    width: 100%;
    color: var(--color-accent);
    font-style: italic;
}

.footer-contact h4,
.footer-links h4,
.footer-social h4 {
    color: var(--color-white);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-accent);
}

.footer-contact address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact address p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact address i {
    color: var(--color-accent);
    width: 20px;
}

.footer-contact address a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact address a:hover {
    color: var(--color-accent);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.footer-links ul a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    min-width: 44px;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-normal);
    touch-action: manipulation;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.social-icons a i {
    pointer-events: none;
}

.social-icons a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-legal .divider {
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--color-accent);
}

/* ============================================
   COOKIE BANNER v2.0
   ============================================ */
.cb-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
    z-index: 1500;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px 16px 0 0;
}

.cb-cookie-banner.visible {
    transform: translateY(0);
}

.cb-cookie-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 30px 20px;
}

.cb-cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.cb-cookie-header i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.cb-cookie-header h4,
.cb-cookie-header .cb-cookie-title {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin: 0;
}

.cb-cookie-text {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cb-cookie-link {
    color: var(--color-accent);
    font-weight: 500;
    text-decoration: underline;
}

.cb-cookie-link:hover {
    color: var(--color-accent-dark);
}

/* Cookie Details (aufklappbar) */
.cb-cookie-details {
    display: none;
    background: var(--color-off-white);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.cb-cookie-details.visible {
    display: block;
}

.cb-cookie-option {
    padding: 15px 0;
}

.cb-cookie-option + .cb-cookie-option {
    border-top: 1px solid var(--color-light-gray);
}

.cb-cookie-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.cb-cookie-option-text {
    flex: 1;
}

.cb-cookie-option-text strong {
    display: block;
    color: var(--color-primary);
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.cb-cookie-option-text small {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* Toggle Switch */
.cb-toggle {
    position: relative;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.cb-toggle input { display: none; }

.cb-toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--color-light-gray);
    border-radius: 26px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.cb-toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.cb-toggle input:checked + .cb-toggle-slider {
    background: var(--color-accent);
}

.cb-toggle input:checked + .cb-toggle-slider::after {
    transform: translateX(22px);
}

.cb-toggle-locked .cb-toggle-slider {
    background: var(--color-accent);
    opacity: 0.7;
    cursor: default;
}

.cb-toggle-locked .cb-toggle-slider::after {
    transform: translateX(22px);
}

/* Cookie Buttons */
.cb-cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
}

.cb-cookie-btn {
    padding: 14px 24px;
    border: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cb-cookie-btn-settings {
    background: var(--color-off-white);
    color: var(--color-text);
    border: 1px solid var(--color-light-gray);
}

.cb-cookie-btn-settings:hover {
    background: var(--color-light-gray);
}

.cb-cookie-btn-reject {
    background: transparent;
    color: var(--color-text-light);
    border: 2px solid var(--color-light-gray);
}

.cb-cookie-btn-reject:hover {
    background: var(--color-off-white);
    border-color: var(--color-text-muted);
}

.cb-cookie-btn-accept {
    flex: 1;
    background: var(--color-accent);
    color: var(--color-primary);
    justify-content: center;
}

.cb-cookie-btn-accept:hover {
    background: var(--color-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}

/* Cookie Footer */
.cb-cookie-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 12px;
    border-top: 1px solid var(--color-light-gray);
    font-size: 0.85rem;
}

.cb-cookie-footer a {
    color: var(--color-text-muted);
}

.cb-cookie-footer a:hover {
    color: var(--color-accent);
}

.cb-cookie-footer span {
    color: var(--color-light-gray);
}

.cb-cookie-save-custom {
    background: none;
    border: none;
    color: var(--color-accent);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    display: none;
    padding: 0;
}

.cb-cookie-save-custom:hover {
    text-decoration: underline;
}

.cb-cookie-save-custom.visible {
    display: inline;
}

/* Cookie Settings Icon */
.cb-cookie-settings-icon {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    min-width: 44px;
    min-height: 44px;
    background: var(--color-primary);
    color: var(--color-accent);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.cb-cookie-settings-icon i {
    pointer-events: none;
}

.cb-cookie-settings-icon:hover {
    background: var(--color-secondary);
    transform: scale(1.1);
}

.cb-cookie-settings-icon.visible {
    display: flex;
}

/* WhatsApp Floating Button */
.cb-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    min-width: 44px;
    min-height: 44px;
    background: var(--color-primary);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.35);
    z-index: 999;
    transition: all 0.3s ease;
    border: 2px solid var(--color-accent);
    touch-action: manipulation;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.cb-whatsapp-btn i {
    pointer-events: none;
}

.cb-whatsapp-btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(201, 169, 98, 0.4);
}

/* Back to Top (neu, runder Button) */
.cb-back-to-top {
    position: fixed;
    bottom: 100px;
    right: 33px;
    width: 50px;
    height: 50px;
    min-width: 44px;
    min-height: 44px;
    background: var(--color-accent);
    color: var(--color-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.cb-back-to-top i {
    pointer-events: none;
}

.cb-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cb-back-to-top:hover {
    background: var(--color-primary);
    color: var(--color-accent);
    transform: translateY(-3px);
}

/* ============================================
   MODALS
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.modal-container {
    position: relative;
    background: var(--color-white);
    max-width: 800px;
    max-height: 90vh;
    width: 90%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.modal.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--color-light-gray);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: var(--transition-normal);
}

.modal-close:hover {
    color: var(--color-primary);
}

.modal-content {
    padding: 30px;
    overflow-y: auto;
}

.modal-content h3 {
    font-size: 1.2rem;
    margin: 25px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-light-gray);
}

.modal-content h3:first-child {
    margin-top: 0;
}

.modal-content h4 {
    font-size: 1rem;
    margin: 20px 0 10px;
}

.modal-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.modal-content ul {
    padding-left: 20px;
    margin: 15px 0;
}

.modal-content ul li {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 8px;
    list-style: disc;
}

.modal-content a {
    color: var(--color-accent);
}

.modal-content a:hover {
    text-decoration: underline;
}

.legal-date {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--color-light-gray);
    color: var(--color-text-muted);
}

/* scroll-top: jetzt in Cookie-Banner integriert als .cb-back-to-top */

/* ============================================
   MOBILE SLIDE-DOWN MENU v2.0
   ============================================ */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-menu.active {
    max-height: 600px;
}

.mobile-menu-nav {
    padding: 15px 20px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 15px;
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: var(--color-off-white);
    color: var(--color-accent-dark);
}

.mobile-menu-link i {
    width: 24px;
    text-align: center;
    color: var(--color-accent);
    font-size: 0.9rem;
}

/* Mobile Submenu */
.mobile-submenu {
    padding: 0 0 8px 30px;
}

.mobile-submenu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--color-text-light);
    font-size: 0.88rem;
    font-weight: 400;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mobile-submenu-link:hover {
    background: var(--color-off-white);
    color: var(--color-accent-dark);
}

.mobile-submenu-link i {
    color: var(--color-accent);
    font-size: 0.7rem;
    width: 16px;
    text-align: center;
}

.mobile-menu-footer {
    padding: 0 20px 20px;
    border-top: 1px solid var(--color-light-gray);
    margin-top: 5px;
}

.mobile-menu-contact {
    display: flex;
    gap: 10px;
    padding-top: 15px;
    margin-bottom: 12px;
}

.mobile-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--color-off-white);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-contact-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--color-accent);
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.mobile-menu-cta:hover {
    background: var(--color-accent-dark);
    transform: translateY(-1px);
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.mobile-menu-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mobile-menu-social a:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

/* Mobile menu nur auf Mobile zeigen */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
    .nav-mobile-actions {
        display: none !important;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.4s; }
.fade-in:nth-child(3) { animation-delay: 0.6s; }
.fade-in:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reveal Animations */
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transition: var(--transition-elegant);
}

.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up { transform: translateY(50px); }

.reveal-left.revealed,
.reveal-right.revealed,
.reveal-up.revealed {
    opacity: 1;
    transform: translate(0);
}

/* Stagger delay for service cards */
.service-card,
.gallery-item {
    transition-delay: var(--delay, 0s);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 100px;
    }

    .about-grid {
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    /* Navigation v2 - Mobile Header */
    .site-header {
        padding: 12px 0;
    }

    .site-header.scrolled {
        padding: 10px 0;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-mobile-actions {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-logo img {
        height: 38px;
    }

    .site-header.scrolled .nav-logo img {
        height: 34px;
    }

    .nav-logo-text {
        font-size: 0.65rem;
        max-width: 130px;
        line-height: 1.25;
    }

    .nav-logo {
        gap: 8px;
    }

    .nav-cta {
        margin-top: 20px;
    }

    /* Hero - mehr Bild sichtbar auf Mobile */
    .hero {
        height: 110vh;
        min-height: 110vh;
    }

    .hero-image {
        object-position: center 20%;
    }

    .hero-features {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 15px;
        padding: 15px 10px;
    }

    .feature-number {
        font-size: 1.5rem;
    }

    .feature-label {
        font-size: 0.6rem;
        letter-spacing: 0.05em;
    }

    .feature-divider {
        width: 1px;
        height: 30px;
    }

    .hero-scroll {
        display: none;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact address {
        justify-content: center;
    }

    .footer-contact address p {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Cookie Banner v2 */
    .cb-cookie-inner {
        padding: 20px 15px 15px;
    }

    .cb-cookie-header h4,
    .cb-cookie-header .cb-cookie-title {
        font-size: 1rem;
    }

    .cb-cookie-text {
        font-size: 0.85rem;
    }

    .cb-cookie-actions {
        flex-direction: column;
    }

    .cb-cookie-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .cb-cookie-btn-accept {
        order: -1;
    }

    .cb-whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .cb-back-to-top {
        bottom: 82px;
        right: 23px;
        width: 42px;
        height: 42px;
    }

    .cb-cookie-settings-icon {
        left: 20px;
        bottom: 20px;
        width: 42px;
        height: 42px;
    }

    /* Modals */
    .modal-container {
        max-height: 85vh;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .title-accent {
        font-size: 1.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-card,
    .contact-form-wrapper {
        padding: 30px;
    }

    .image-accent {
        top: 15px;
        left: 15px;
        right: -15px;
        bottom: -15px;
    }
}

/* ============================================
   TEAM SECTION (Startseite)
   ============================================ */
.team-section {
    padding: 80px 0;
    background: var(--color-off-white);
}

.team-home-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 30px;
}

.team-home-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-light-gray);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    flex-direction: row;
}

.team-home-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.team-home-img {
    width: 150px;
    min-height: 180px;
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.team-home-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-home-card:hover .team-home-img img {
    transform: scale(1.05);
}

.team-home-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 2.5rem;
}

.team-home-info {
    padding: 22px 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-home-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.team-home-position {
    display: block;
    color: var(--color-accent);
    font-weight: 500;
    font-size: 0.82rem;
    margin-bottom: 6px;
}

.team-home-qual {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.team-home-desc {
    font-size: 0.8rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.team-home-badge {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(201, 169, 98, 0.1);
    color: var(--color-accent);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.team-home-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
}

.team-home-tags span {
    padding: 2px 8px;
    background: var(--color-off-white);
    color: var(--color-text-light);
    border-radius: 20px;
    font-size: 0.65rem;
}

.team-home-membership {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    padding-top: 8px;
    border-top: 1px solid var(--color-light-gray);
}

.team-home-membership i {
    color: var(--color-accent);
    margin-right: 4px;
}

.team-home-cta {
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .team-home-grid {
        grid-template-columns: 1fr;
    }
    .team-home-card {
        flex-direction: column;
    }
    .team-home-img {
        width: 100%;
        min-height: 200px;
    }
}

/* ============================================
   REVIEWS SECTION (Startseite)
   ============================================ */
.reviews-section {
    padding: 80px 0;
    background: var(--color-white);
}

.reviews-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.reviews-avg {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.reviews-stars-wrap {
    text-align: left;
}

.reviews-stars {
    color: var(--color-accent);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.reviews-count {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.review-card {
    background: var(--color-off-white);
    border-radius: 12px;
    padding: 28px;
    border: 1px solid var(--color-light-gray);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.review-stars {
    color: var(--color-accent);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.review-text {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--color-light-gray);
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.review-name {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--color-primary);
}

.review-project {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.reviews-cta {
    text-align: center;
    margin-top: 32px;
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .team-home-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .team-home-card {
        flex-direction: row;
    }
    .team-home-img {
        width: 100px;
        min-height: 140px;
    }
}

/* ============================================
   ADDITIONAL MOBILE OPTIMIZATIONS
   ============================================ */
@media (max-width: 768px) {
    /* Section Headers kompakter */
    .section-header {
        padding: 0 10px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    /* About Image */
    .about-image-container {
        margin-bottom: 20px;
    }

    /* Contact Card */
    .contact-card {
        padding: 30px 20px;
    }

    .contact-item {
        gap: 14px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    /* Service Cards */
    .service-card {
        padding: 24px;
    }

    .service-features li {
        font-size: 0.88rem;
    }

    /* Reviews Section */
    .review-card {
        padding: 20px;
    }

    .review-text {
        font-size: 0.9rem;
    }

    /* Hero Description */
    .hero-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    /* Hero CTA Buttons */
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 80%;
        text-align: center;
    }

    /* Zahlen / Stats besser lesbar */
    .about-stats .stat-item {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    /* Kleinere Phones */
    .section-title {
        font-size: 1.4rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .feature-number {
        font-size: 1.3rem;
    }

    .feature-label {
        font-size: 0.55rem;
    }

    .hero-features {
        gap: 10px;
        padding: 12px 8px;
    }

    /* Contact Form */
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    /* Service Cards */
    .service-card {
        padding: 20px 16px;
    }

    .service-title {
        font-size: 1.1rem;
    }

    /* Reviews */
    .reviews-avg {
        font-size: 1.8rem;
    }

    .reviews-grid {
        gap: 16px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .site-header,
    .cookie-banner,
    .scroll-top,
    .hero-scroll,
    .hero-features,
    .lightbox,
    .modal {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    section {
        padding: 30px 0;
        page-break-inside: avoid;
    }
}


/* Ungültige Editor-Overrides entfernt (layout, map-type sind keine CSS Properties) */
