/*
Theme Name: Michael Fischbacher Photography
Theme URI: https://michael-fischbacher.de
Author: LeverageMarketing
Author URI: https://leveragemarketing.at
Description: Elegantes WordPress Theme für Michael Fischbacher Hochzeitsfotografie
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fischbacher
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Great+Vibes&family=Montserrat:wght@300;400;500;600&display=swap');

/* ==========================================================================
   ELEMENTOR OVERRIDE - Schriftarten & Farben erzwingen
   ========================================================================== */

/* Body & Grundschrift */
body,
body.elementor-page,
.elementor,
.elementor *,
.elementor-widget-container,
.elementor-widget-container p,
.elementor-widget-text-editor,
.elementor-widget-text-editor p {
    font-family: 'Montserrat', sans-serif !important;
}

/* Headlines überschreiben */
h1, h2, h3, h4, h5, h6,
.elementor-heading-title,
.elementor-widget-heading .elementor-heading-title {
    font-family: 'Cormorant Garamond', serif !important;
    color: #2D2D2D !important;
}

/* Script Headlines */
.script-headline,
.elementor-widget-heading.script-headline .elementor-heading-title,
h1.script-headline,
h2.script-headline,
h3.script-headline {
    font-family: 'Great Vibes', cursive !important;
    font-size: 52px !important;
    font-weight: 400 !important;
    color: #2D2D2D !important;
}

/* Section Headlines */
.section-headline,
.elementor-widget-heading.section-headline .elementor-heading-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 300 !important;
    letter-spacing: 14px !important;
    text-transform: uppercase !important;
    color: #9a9590 !important;
}

/* Fließtext */
p,
.elementor p,
.elementor-widget-container p,
.elementor-text-editor p {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 300 !important;
    line-height: 1.9 !important;
    color: #2D2D2D !important;
}

/* Buttons */
.btn,
.elementor-button,
.elementor-widget-button .elementor-button {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
}

/* CSS Variables */
:root {
    --color-primary-bg: #F5F0EB;
    --color-secondary-bg: #FFFFFF;
    --color-accent-btn: #3D3D3D;
    --color-text-dark: #2D2D2D;
    --color-text-light: #FFFFFF;
    --color-olive: #A8B5A0;

    --font-display: 'Cormorant Garamond', serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Montserrat', sans-serif;

    --spacing-section: 120px;
    --max-width: 1400px;

    /* Smooth Easing Variables */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-text-dark);
    line-height: 1.7;
    background-color: var(--color-primary-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: bicubic;
}

/* High quality image rendering for photos */
.carousel-slide img,
.about-image img,
.card-image img,
.wedding-images-left img,
.wedding-images-right img,
.reportage-image img,
.testimonial-img img,
.instagram-item img {
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utility Classes */
.bw {
    filter: grayscale(100%);
}

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

.btn {
    display: inline-block;
    padding: 16px 42px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid var(--color-accent-btn);
    background: transparent;
    color: var(--color-accent-btn);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent-btn);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn:hover {
    color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline {
    background: transparent;
}

.btn-outline-light {
    border-color: var(--color-text-light);
    color: var(--color-text-light);
}

.btn-outline-light::before {
    background: var(--color-text-light);
}

.btn-outline-light:hover {
    color: var(--color-text-dark);
}

.btn-dark {
    background: var(--color-accent-btn);
    color: var(--color-text-light);
    border-color: var(--color-accent-btn);
}

.btn-dark::before {
    background: transparent;
    border: 1px solid var(--color-accent-btn);
    transform: scaleX(1);
}

.btn-dark:hover {
    color: var(--color-accent-btn);
    background: transparent;
}

.btn-dark:hover::before {
    transform: scaleX(0);
}

.btn-sm {
    padding: 12px 28px;
    font-size: 10px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 5px;
    color: var(--color-text-dark);
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--color-text-dark);
    margin-top: 2px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-list a {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-dark);
}

.nav-list a:hover {
    color: var(--color-olive);
}

.dropdown-arrow {
    font-size: 8px;
    margin-left: 3px;
}

.social-icon {
    color: var(--color-text-dark);
}

.social-icon:hover {
    color: var(--color-olive);
}

/* ==========================================================================
   MOBILE MENU TOGGLE
   ========================================================================== */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    gap: 5px;
}

.menu-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-dark);
    transition: transform 0.4s var(--ease-out-expo),
                opacity 0.3s ease,
                background-color 0.3s ease;
}

/* Hamburger to X animation */
.menu-toggle.active .menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .menu-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   MOBILE NAVIGATION OVERLAY
   ========================================================================== */

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s var(--ease-out-quart),
                    visibility 0.5s var(--ease-out-quart);
        z-index: 999;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .nav-list li {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.5s var(--ease-out-expo),
                    transform 0.5s var(--ease-out-expo);
    }

    .nav.active .nav-list li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation */
    .nav.active .nav-list li:nth-child(1) { transition-delay: 0.1s; }
    .nav.active .nav-list li:nth-child(2) { transition-delay: 0.15s; }
    .nav.active .nav-list li:nth-child(3) { transition-delay: 0.2s; }
    .nav.active .nav-list li:nth-child(4) { transition-delay: 0.25s; }

    .nav-list a {
        font-size: 28px;
        font-family: var(--font-display);
        font-weight: 300;
        letter-spacing: 6px;
        padding: 20px 40px;
        display: block;
        position: relative;
    }

    .nav-list a::after {
        content: '';
        position: absolute;
        bottom: 15px;
        left: 50%;
        width: 0;
        height: 1px;
        background: var(--color-olive);
        transition: width 0.4s var(--ease-out-expo),
                    left 0.4s var(--ease-out-expo);
    }

    .nav-list a:hover::after,
    .nav-list a.active::after {
        width: 60px;
        left: calc(50% - 30px);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    min-height: 100vh;
    background: #FFFFFF;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Soft vignette overlay - hidden for now */
.hero-cinematic-overlay {
    display: none;
}

.hero-carousel {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    padding: 0 5%;
}

.hero-carousel:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-out;
    will-change: transform;
}

.carousel-track.dragging {
    transition: none;
}

.carousel-slide {
    flex: 0 0 28%;
    padding: 0 10px;
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 1.4s ease-out, transform 1.4s ease-out;
}

.carousel-slide.visible {
    opacity: 1;
    transform: scale(1);
}

/* Center image - subtle zoom */
.carousel-slide.center-first {
    opacity: 1;
    transform: scale(1.03);
    transition: transform 2s ease-out, opacity 0.8s ease-out;
}

.carousel-slide.center-first.zoom-out {
    transform: scale(1);
}

.carousel-slide img {
    width: 100%;
    height: 82vh;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
}

/* MOBILE CAROUSEL - 2 Bilder */
@media screen and (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 48%;
        padding: 0 5px;
    }
    .carousel-slide img {
        height: 55vh;
    }
}

.hero-content {
    text-align: center;
    padding: 60px 20px 80px;
    background: #FFFFFF;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--color-text-dark);
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(15px);
    animation: heroTextReveal 1.2s ease-out 2s forwards;
}

.hero-subheadline {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 15px;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(15px);
    animation: heroTextReveal 1.2s ease-out 2.15s forwards;
}

.hero-subtext {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-text-dark);
    opacity: 0;
    transform: translateY(10px);
    animation: heroSubtextReveal 1.2s ease-out 2.3s forwards;
}

@keyframes heroTextReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSubtextReveal {
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

/* ==========================================================================
   PARALLAX QUOTE SECTION
   ========================================================================== */

.parallax-quote {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.parallax-bg {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: grayscale(100%);
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
}

.parallax-quote blockquote {
    font-family: var(--font-display);
    font-size: 110px;
    font-weight: 300;
    letter-spacing: 8px;
    line-height: 1.15;
    color: var(--color-text-light);
    text-shadow: 2px 2px 30px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about {
    background: var(--color-primary-bg);
    padding: var(--spacing-section) 0;
}

.about-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    padding-right: 40px;
}

.script-headline {
    font-family: var(--font-script);
    font-size: 52px;
    font-weight: 400;
    color: var(--color-text-dark);
    margin-bottom: 30px;
}

.script-headline.light {
    color: var(--color-text-light);
}

.about-text p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.about-text .btn {
    margin-top: 20px;
}

.about-image {
    position: relative;
    padding: 15px;
    background: white;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.image-overlay-text {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-family: var(--font-script);
    font-size: 48px;
    color: var(--color-text-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   PARALLAX ELEGANT SECTION
   ========================================================================== */

.parallax-elegant {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-elegant .parallax-bg {
    position: absolute;
    top: -30%;
    left: 0;
    width: 100%;
    height: 160%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: grayscale(100%);
    will-change: transform;
}

.elegant-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.parallax-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.elegant-headline {
    font-family: var(--font-display);
    font-size: 200px;
    font-weight: 300;
    letter-spacing: 30px;
    color: var(--color-text-light);
    text-shadow: 0 4px 60px rgba(0, 0, 0, 0.6),
                 0 0 120px rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    animation: fadeInScale 1.5s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.elegant-words {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.elegant-words span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-text-light);
    opacity: 0.9;
}

/* ==========================================================================
   PORTFOLIO SECTION
   ========================================================================== */

.portfolio {
    background: linear-gradient(to bottom, var(--color-primary-bg) 55%, var(--color-secondary-bg) 55%);
    padding: var(--spacing-section) 0;
    padding-bottom: 120px;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-headline {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 300;
    letter-spacing: clamp(6px, 1vw, 14px);
    text-transform: uppercase;
    text-align: center;
    color: #9a9590;
    margin-bottom: -20px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}

.portfolio-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.portfolio-card {
    text-align: center;
    transition: transform 0.4s ease;
}

.portfolio-card:nth-child(1) {
    transform: translateY(0);
}

.portfolio-card:nth-child(2) {
    transform: translateY(60px);
}

.portfolio-card:nth-child(3) {
    transform: translateY(30px);
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-card:nth-child(2):hover {
    transform: translateY(50px);
}

.portfolio-card:nth-child(3):hover {
    transform: translateY(20px);
}

.card-image {
    background: var(--color-secondary-bg);
    padding: 12px;
    padding-bottom: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    position: relative;
}

.card-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center top;
}

.card-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #8a8580;
    background: transparent;
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
}

/* ==========================================================================
   WEDDING DAY SECTION
   ========================================================================== */

.wedding-day {
    background: var(--color-primary-bg);
    padding: var(--spacing-section) 0;
}

.wedding-day-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 50px;
    align-items: center;
}

.wedding-images-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.wedding-img-large {
    border-top-left-radius: 140px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.wedding-img-large img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.wedding-img-small {
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.wedding-img-small img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.wedding-images-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.wedding-img-right-top {
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.wedding-img-right-top img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.wedding-img-right-bottom {
    border-bottom-right-radius: 140px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.wedding-img-right-bottom img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.wedding-content {
    text-align: center;
    padding: 30px 20px;
}

.section-headline-sm {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin-bottom: 25px;
    line-height: 1.4;
}

.wedding-content p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.wedding-content .btn {
    margin-top: 20px;
}


/* ==========================================================================
   REPORTAGEN SECTION
   ========================================================================== */

.reportagen {
    background: var(--color-primary-bg);
    padding: var(--spacing-section) 0;
    padding-top: 180px;
}

.reportagen-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 60px;
}

.reportagen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.reportage-card {
    background: var(--color-secondary-bg);
}

.reportage-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center top;
}

.reportage-content {
    padding: 30px;
}

.reportage-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.reportage-content p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

/* ==========================================================================
   PHILOSOPHIE SECTION
   ========================================================================== */

.philosophie {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.philosophie-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.philosophie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.philosophie-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 60px;
}

.philosophie-content .subline {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.philosophie-text {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.philosophie-content .btn {
    margin-top: 30px;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials {
    background: var(--color-primary-bg);
    padding: var(--spacing-section) 0;
}

.testimonials-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 30% 40% 30%;
    gap: 40px;
    align-items: center;
}

.testimonial-images-left {
    position: relative;
    height: 500px;
}

.testimonial-img {
    position: absolute;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.t-img-1 {
    top: 0;
    left: 0;
    width: 70%;
}

.t-img-1 img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center top;
}

.t-img-2 {
    bottom: 0;
    right: 0;
    width: 60%;
}

.t-img-2 img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center top;
}

.testimonial-quote-box {
    background: var(--color-secondary-bg);
    padding: 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.testimonial-label {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-olive);
    margin-bottom: 20px;
}

.testimonial-quote-box blockquote {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-text-dark);
    font-style: italic;
}

.testimonial-images-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.t-img-3 {
    position: relative;
    width: 100%;
}

.t-img-3 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   AWARDS SECTION
   ========================================================================== */

.awards {
    background: var(--color-primary-bg);
    padding: var(--spacing-section) 0;
}

.awards-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.awards-headline {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin-bottom: 60px;
}

.awards-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.award-badge {
    width: 200px;
}

.badge-wreath {
    position: relative;
    width: 200px;
    height: 240px;
    background: linear-gradient(135deg, var(--color-olive) 0%, #8fa882 100%);
    border-radius: 100px 100px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.badge-wreath::before,
.badge-wreath::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 120px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
}

.badge-wreath::before {
    left: -10px;
    bottom: 40px;
    transform: rotate(-30deg);
    border-right: none;
}

.badge-wreath::after {
    right: -10px;
    bottom: 40px;
    transform: rotate(30deg);
    border-left: none;
}

.badge-content {
    text-align: center;
    color: var(--color-text-light);
}

.badge-title {
    display: block;
    font-family: var(--font-script);
    font-size: 20px;
}

.badge-main {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.badge-divider {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-text-light);
    margin: 10px auto;
}

.badge-place {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}

.badge-year {
    display: block;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    margin: 5px 0;
}

.badge-category {
    display: block;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 10px;
}

.badge-subcategory {
    display: block;
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* ==========================================================================
   KONTAKT SECTION
   ========================================================================== */

.kontakt {
    background: var(--color-primary-bg);
    padding: var(--spacing-section) 0;
}

.kontakt-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.kontakt-subline {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-dark);
    margin-bottom: 40px;
}

.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-dark);
    background: var(--color-secondary-bg);
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-btn);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.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 24 24'%3E%3Cpath fill='%232D2D2D' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.kontakt-form .btn {
    margin-top: 20px;
    align-self: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--color-primary-bg);
}

.instagram-section {
    text-align: center;
    padding: 80px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.instagram-handle {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-text-dark);
    margin-bottom: 40px;
}

.instagram-handle:hover {
    color: var(--color-olive);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-item {
    overflow: hidden;
}

.instagram-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    color: var(--color-text-dark);
}

.social-icons a:hover {
    color: var(--color-olive);
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo-name {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--color-text-dark);
}

.footer-logo-subtitle {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--color-text-dark);
    margin-top: 3px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-dark);
}

.footer-nav a:hover {
    color: var(--color-olive);
}

.footer-badges {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.footer-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8D5C4 0%, #D4C4B5 100%);
}

.copyright-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-width: var(--max-width);
    margin: 0 auto;
}

.copyright-bar span,
.copyright-bar a {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--color-text-dark);
}

.back-to-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-to-top:hover {
    color: var(--color-olive);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

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

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

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

@media (max-width: 1200px) {
    .elegant-headline {
        font-size: 140px;
        letter-spacing: 20px;
    }

    .parallax-quote blockquote {
        font-size: 80px;
    }
}

@media (max-width: 1024px) {
    :root {
        --spacing-section: 80px;
    }

    .header-container {
        padding: 15px 30px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text {
        padding-right: 0;
    }

    .about-image img {
        height: 500px;
    }

    .elegant-headline {
        font-size: 100px;
        letter-spacing: 15px;
    }

    .section-headline {
        font-size: 48px;
        letter-spacing: 8px;
    }

    .portfolio-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .portfolio-card:nth-child(1),
    .portfolio-card:nth-child(2),
    .portfolio-card:nth-child(3) {
        transform: translateY(0);
    }

    .portfolio-card:nth-child(3) {
        grid-column: span 2;
        max-width: 350px;
        margin: 0 auto;
    }

    .card-image img {
        height: 320px;
    }

    .wedding-day-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .wedding-images-left,
    .wedding-images-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .wedding-img-small {
        margin-left: 0;
    }

    .wedding-img-right-top {
        margin-right: 0;
    }

    .wedding-img-large img,
    .wedding-img-small img,
    .wedding-img-right-top img,
    .wedding-img-right-bottom img {
        height: 200px;
    }

    .wedding-content {
        order: -1;
    }

    .reportagen-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-images-left {
        display: none;
    }

    .awards-badges {
        flex-wrap: wrap;
        gap: 40px;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .hero-subheadline {
        font-size: 32px;
        letter-spacing: 8px;
    }

    .hero-headline {
        font-size: 20px;
        letter-spacing: 5px;
    }

    /* Hero Carousel - 2 Bilder sichtbar auf Mobile */
    .hero-carousel {
        padding: 0 2%;
    }

    .carousel-slide {
        flex: 0 0 48%;
        padding: 0 5px;
    }

    .carousel-slide img {
        width: 100%;
        height: 60vh;
        object-fit: cover;
    }

    .parallax-quote blockquote {
        font-size: 50px;
        letter-spacing: 4px;
    }

    .parallax-content {
        padding: 0 30px;
    }

    .section-headline {
        font-size: 32px;
    }

    .script-headline {
        font-size: 40px;
    }

    .elegant-headline {
        font-size: 60px;
        letter-spacing: 10px;
    }

    .elegant-words {
        flex-direction: column;
        gap: 15px;
    }

    .portfolio-cards {
        grid-template-columns: 1fr;
    }

    .portfolio-card:nth-child(2),
    .portfolio-card:nth-child(3) {
        transform: none;
        grid-column: span 1;
        max-width: none;
    }

    .portfolio-card:nth-child(2):hover,
    .portfolio-card:nth-child(3):hover {
        transform: translateY(-10px);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .copyright-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-headline {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .portfolio-cards {
        grid-template-columns: 1fr;
    }

    .portfolio-card:nth-child(3) {
        grid-column: span 1;
        max-width: none;
    }

    .card-image img {
        height: 280px;
    }

    /* Hero Carousel - 2 Bilder auf kleinen Mobiles */
    .carousel-slide {
        flex: 0 0 48%;
        padding: 0 3px;
    }

    .carousel-slide img {
        height: 55vh;
    }

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

    .awards-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================================
   SUBPAGES - Shared Styles
   ========================================================================== */

/* Header Dark (for subpages) */
.header-dark {
    background: var(--color-primary-bg);
    position: relative;
}

.nav-list a.active {
    color: var(--color-olive);
}

/* Page Hero with Image */
.page-hero-image {
    height: 50vh;
    min-height: 400px;
    max-height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    padding-top: 80px; /* Platz für fixed header */
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.page-hero-image .page-hero-content {
    position: relative;
    z-index: 2;
}

.page-title-light {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 18px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpSmooth 1s var(--ease-out-expo) 0.2s forwards;
}

.page-subtitle-light {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUpSmooth 0.8s var(--ease-out-expo) 0.5s forwards;
}

@keyframes fadeInUpSmooth {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.scroll-indicator span {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, white, transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleY(0.8);
    }
}

.page-hero-short {
    height: 45vh;
    min-height: 350px;
    max-height: 400px;
}

/* ==========================================================================
   SCROLL PROGRESS CAMERA
   ========================================================================== */

.scroll-progress-camera {
    position: fixed;
    right: 30px;
    top: 0;
    height: 100vh;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.6s var(--ease-out-quart);
}

.scroll-progress-camera.visible {
    opacity: 1;
}

/* Hidden - no lines */
.camera-track,
.camera-line {
    display: none;
}

.camera-icon {
    position: absolute;
    right: 0;
    top: 60px;
    width: 40px;
    height: 40px;
    color: #8B7355;
    background: white;
    border-radius: 50%;
    padding: 9px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(139, 115, 85, 0.25);
    cursor: pointer;
    pointer-events: auto;
    transition: top 0.15s linear,
                box-shadow 0.4s var(--ease-out-quart),
                transform 0.3s var(--ease-out-expo);
    z-index: 2;
}

.camera-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(139, 115, 85, 0.35);
}

.camera-icon svg {
    width: 100%;
    height: 100%;
}

/* Glow effect when scrolling */
.scroll-progress-camera.scrolling .camera-icon {
    box-shadow: 0 4px 30px rgba(139, 115, 85, 0.5);
    transform: scale(1.1);
}

/* Hide on mobile only */
@media (max-width: 768px) {
    .scroll-progress-camera {
        display: none;
    }
}

/* Page Hero */
.page-hero {
    background: var(--color-primary-bg);
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-primary-bg) 70%);
    pointer-events: none;
}

.page-title {
    font-family: var(--font-display);
    font-size: 82px;
    font-weight: 300;
    letter-spacing: 15px;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
}

.page-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #999;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.about-page {
    background: var(--color-secondary-bg);
    padding: var(--spacing-section) 0;
    overflow: hidden;
}

.about-page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-page-image {
    position: relative;
    overflow: visible;
}

.about-page-image::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    right: 25px;
    bottom: 25px;
    border: 1px solid var(--color-olive);
    opacity: 0.5;
    z-index: -1;
    transition: all 1s var(--ease-out-expo);
}

.about-page-image::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    right: -25px;
    bottom: -25px;
    background: var(--color-olive);
    opacity: 0.1;
    z-index: -2;
    transition: all 1s var(--ease-out-expo);
}

.about-page-image:hover::before {
    top: -35px;
    left: -35px;
    right: 35px;
    bottom: 35px;
    opacity: 1;
}

.about-page-image:hover::after {
    top: 35px;
    left: 35px;
    opacity: 0.15;
}

.about-page-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
    transition: transform 1.2s var(--ease-out-expo),
                filter 0.8s var(--ease-out-quart);
}

.about-page-image:hover img {
    transform: scale(1.02);
    filter: brightness(1.02) contrast(1.02);
}

.about-page-text {
    opacity: 0;
    animation: fadeInRight 1s ease 0.5s forwards;
}

.about-page-text .script-headline {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.about-page-text .script-headline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--color-olive);
    transform: scaleX(0);
    transform-origin: left;
    animation: lineReveal 0.8s ease 1s forwards;
}

@keyframes lineReveal {
    to {
        transform: scaleX(1);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-page-text p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

/* Approach Section */
.approach {
    background: var(--color-primary-bg);
    padding: var(--spacing-section) 0;
    overflow: hidden;
}

.approach-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.approach-item {
    text-align: center;
    padding: 50px 35px;
    position: relative;
    background: transparent;
    transition: transform 0.7s var(--ease-out-expo),
                background 0.5s var(--ease-out-quart),
                box-shadow 0.7s var(--ease-out-expo);
}

.approach-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-olive), transparent);
    transition: width 0.8s var(--ease-out-expo);
    transform: translateX(-50%);
}

.approach-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-secondary-bg);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-quart);
    z-index: -1;
    border-radius: 4px;
}

.approach-item:hover::before {
    width: 120px;
}

.approach-item:hover::after {
    opacity: 1;
}

.approach-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.approach-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 300;
    color: var(--color-olive);
    margin-bottom: 25px;
    opacity: 0.4;
    transition: opacity 0.6s var(--ease-out-quart),
                transform 0.8s var(--ease-out-expo),
                letter-spacing 0.6s var(--ease-out-expo);
    letter-spacing: 0;
}

.approach-item:hover .approach-number {
    opacity: 1;
    transform: scale(1.05) translateY(-5px);
    letter-spacing: 5px;
}

.approach-item h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

.approach-item p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
}

/* Page Quote */
.page-quote {
    background: linear-gradient(135deg, var(--color-olive) 0%, #8a9c82 50%, #7a8c72 100%);
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 5%;
    font-family: var(--font-script);
    font-size: 350px;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    pointer-events: none;
    animation: floatQuote 8s ease-in-out infinite;
}

@keyframes floatQuote {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.page-quote blockquote {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 300;
    font-style: italic;
    color: var(--color-text-light);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    background: var(--color-secondary-bg);
    padding: var(--spacing-section) 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 181, 160, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.cta-container .script-headline {
    margin-bottom: 20px;
}

.cta-container p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: #666;
    margin-bottom: 35px;
}

/* ==========================================================================
   PORTFOLIO PAGE
   ========================================================================== */

.portfolio-filter {
    background: var(--color-secondary-bg);
    padding: 50px 0;
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 35px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.5s var(--ease-out-quart);
}

.filter-btn::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 5px;
    height: 5px;
    background: var(--color-olive);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform 0.5s var(--ease-out-expo),
                width 0.6s var(--ease-out-expo) 0.1s,
                height 0.4s var(--ease-out-expo) 0.1s,
                border-radius 0.4s var(--ease-out-expo) 0.1s;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    transform: translateX(-50%) scale(1);
    width: 30px;
    height: 2px;
    border-radius: 1px;
}

.filter-btn:hover {
    color: var(--color-olive);
}

.filter-btn.active {
    color: var(--color-olive);
}

.portfolio-gallery {
    background: var(--color-secondary-bg);
    padding: 40px 0 var(--spacing-section);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 40%,
        rgba(0,0,0,0.8) 100%
    );
    opacity: 0;
    transition: opacity 0.8s var(--ease-out-expo);
    z-index: 1;
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-olive);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s var(--ease-out-expo);
    z-index: 3;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    transform: scaleX(1);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center top;
    transition: transform 1.2s var(--ease-out-expo),
                filter 0.8s var(--ease-out-quart);
    will-change: transform;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.95) saturate(1.1);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-page {
    background: var(--color-secondary-bg);
    padding: var(--spacing-section) 0;
}

.contact-page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info .script-headline {
    margin-bottom: 25px;
}

.contact-info > p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: #666;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
}

.contact-item a,
.contact-item span {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-dark);
}

.contact-item a:hover {
    color: var(--color-olive);
}

.contact-form-wrapper {
    background: var(--color-primary-bg);
    padding: 55px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--color-olive), transparent);
    animation: lineGrow 1s var(--ease-out-expo) 0.5s forwards;
}

@keyframes lineGrow {
    to {
        height: 100%;
    }
}

.contact-form-wrapper .kontakt-form input,
.contact-form-wrapper .kontakt-form select,
.contact-form-wrapper .kontakt-form textarea {
    border: 1px solid #e0e0e0;
    transition: border-color 0.5s var(--ease-out-quart),
                box-shadow 0.5s var(--ease-out-quart),
                transform 0.4s var(--ease-out-expo);
}

.contact-form-wrapper .kontakt-form input:focus,
.contact-form-wrapper .kontakt-form select:focus,
.contact-form-wrapper .kontakt-form textarea:focus {
    border-color: var(--color-olive);
    box-shadow: 0 10px 30px rgba(168, 181, 160, 0.15);
    transform: translateY(-3px);
}

.date-label {
    font-family: var(--font-body);
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.btn-full {
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s var(--ease-out-expo),
                box-shadow 0.5s var(--ease-out-expo);
}

.btn-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 30%,
        rgba(255,255,255,0.15) 50%,
        transparent 70%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.8s var(--ease-out-expo);
}

.btn-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.btn-full:hover::before {
    transform: translateX(100%);
}

/* FAQ Section */
.faq-section {
    background: var(--color-primary-bg);
    padding: var(--spacing-section) 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    padding: 40px;
    background: var(--color-secondary-bg);
    position: relative;
    border-left: 3px solid transparent;
    transition: transform 0.7s var(--ease-out-expo),
                box-shadow 0.7s var(--ease-out-expo),
                border-color 0.5s var(--ease-out-quart);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 3px;
    height: 0;
    background: var(--color-olive);
    transition: height 0.6s var(--ease-out-expo);
}

.faq-item:hover {
    transform: translateX(15px) translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.faq-item:hover::before {
    height: 100%;
}

.faq-item h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text-dark);
    margin-bottom: 15px;
    transition: color 0.5s var(--ease-out-quart),
                transform 0.6s var(--ease-out-expo);
}

.faq-item:hover h3 {
    color: var(--color-olive);
    transform: translateX(5px);
}

.faq-item p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
}

/* Simple Footer */
.footer-simple {
    background: var(--color-primary-bg);
    padding: 60px 40px;
    text-align: center;
}

.footer-simple .footer-logo {
    margin-bottom: 30px;
}

.footer-nav-simple {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-nav-simple a {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-dark);
    transition: color 0.3s ease;
}

.footer-nav-simple a:hover {
    color: var(--color-olive);
}

.copyright-simple {
    font-family: var(--font-body);
    font-size: 12px;
    color: #999;
}

/* ==========================================================================
   SUBPAGES - Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .page-title {
        font-size: 52px;
    }

    .page-title-light {
        font-size: 60px;
        letter-spacing: 12px;
    }

    .page-hero-image {
        background-attachment: scroll;
    }

    .about-page-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-page-image img {
        height: 450px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .contact-page-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero-image {
        height: 45vh;
        min-height: 320px;
        max-height: 380px;
    }

    .page-hero-short {
        height: 40vh;
        min-height: 280px;
        max-height: 320px;
    }

    .page-title {
        font-size: 36px;
        letter-spacing: 5px;
    }

    .page-title-light {
        font-size: 36px;
        letter-spacing: 6px;
    }

    .page-subtitle-light {
        font-size: 11px;
        letter-spacing: 4px;
    }

    .scroll-indicator {
        display: none;
    }

    .page-quote {
        padding: 70px 30px;
    }

    .page-quote blockquote {
        font-size: 24px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .footer-nav-simple {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 280px;
    }

    .filter-container {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 15px;
        font-size: 11px;
    }
}

/* ==========================================================================
   MOBILE FIXES
   ========================================================================== */

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1001;
    }

    .nav {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: flex !important;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 999;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .nav-list li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav.active .nav-list li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav.active .nav-list li:nth-child(1) { transition-delay: 0.1s; }
    .nav.active .nav-list li:nth-child(2) { transition-delay: 0.15s; }
    .nav.active .nav-list li:nth-child(3) { transition-delay: 0.2s; }
    .nav.active .nav-list li:nth-child(4) { transition-delay: 0.25s; }

    .nav-list a {
        font-size: 24px;
        font-family: var(--font-display);
        font-weight: 300;
        letter-spacing: 5px;
        padding: 15px 30px;
        display: block;
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
    }

    .hero-carousel {
        padding: 0;
        width: 100%;
    }

    .carousel-slide {
        flex: 0 0 50% !important;
        padding: 0 5px;
    }

    .carousel-slide img {
        width: 100% !important;
        height: 50vh !important;
        object-fit: cover;
        object-position: center top;
    }

    .hero-content {
        padding: 40px 20px 60px;
    }

    .hero-headline {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .hero-subheadline {
        font-size: 24px;
        letter-spacing: 6px;
    }

    .hero-subtext {
        font-size: 10px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        flex: 0 0 50% !important;
        padding: 0 3px;
    }

    .carousel-slide img {
        height: 45vh !important;
    }

    .hero-subheadline {
        font-size: 20px;
        letter-spacing: 4px;
    }
}

/* WordPress specific */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #eee;
    clip: auto !important;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* ==========================================================================
   TIMELINE STYLES
   ========================================================================== */

.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(168, 181, 160, 0.3);
    transform: translateX(-50%);
}

.timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--color-olive);
    transform: translateX(-50%);
    transition: height 0.3s ease;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    padding-right: 80px;
    padding-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.marker-number {
    width: 50px;
    height: 50px;
    background: var(--color-olive);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: white;
    position: relative;
    z-index: 2;
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}

.timeline-item.visible .marker-number {
    animation: markerPop 0.6s var(--ease-out-expo) forwards;
}

@keyframes markerPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: var(--color-olive);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.timeline-item.visible .marker-pulse {
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.timeline-content {
    flex: 1;
    max-width: calc(50% - 40px);
}

.timeline-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    color: var(--color-olive);
}

.timeline-icon svg {
    width: 100%;
    height: 100%;
}

.timeline-item:nth-child(odd) .timeline-icon {
    margin-left: auto;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.timeline-content p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
}

.timeline-intro {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline responsive */
@media (max-width: 768px) {
    .timeline-line,
    .timeline-progress {
        left: 25px;
    }

    .timeline-marker {
        left: 25px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        text-align: left;
        padding-left: 70px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        padding: 0;
        max-width: 100%;
    }

    .timeline-item:nth-child(odd) .timeline-icon {
        margin-left: 0;
    }

    .marker-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ==========================================================================
   PHILOSOPHIE TEXT FIX - Ensure white text
   ========================================================================== */

.philosophie-content p,
.philosophie-content .philosophie-text,
.philosophie .philosophie-text,
section.philosophie p {
    color: #FFFFFF !important;
    color: var(--color-text-light) !important;
}

.philosophie-content .subline {
    color: #FFFFFF !important;
    color: var(--color-text-light) !important;
}

/* ==========================================================================
   PARALLAX OVERLAY FIX
   ========================================================================== */

.parallax-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    pointer-events: none;
}

/* ==========================================================================
   ELEMENTOR SPECIFIC FIXES
   ========================================================================== */

/* Fix für Elementor Sections ohne Abstand */
.elementor-section.page-hero-image {
    margin-top: 0 !important;
    padding-top: 80px !important;
}

/* Elementor Text in Parallax weiß */
.elementor-section.philosophie .elementor-widget-text-editor p,
.elementor-section.philosophie .elementor-text-editor p {
    color: #FFFFFF !important;
}

/* Header Abstand für alle Unterseiten entfernen */
body:not(.home) .elementor-section:first-child {
    margin-top: 0;
}

/* Sicherstellen dass fixed Header auf allen Seiten funktioniert */
body {
    padding-top: 0;
}

body.admin-bar .header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .header {
        top: 46px;
    }
}

/* ==========================================================================
   ELEMENTOR GLOBAL OVERRIDES - Alle Defaults überschreiben
   ========================================================================== */

/* Elementor Default Farben komplett überschreiben */
:root {
    --e-global-color-primary: #2D2D2D !important;
    --e-global-color-secondary: #3D3D3D !important;
    --e-global-color-text: #2D2D2D !important;
    --e-global-color-accent: #A8B5A0 !important;
    --e-global-typography-primary-font-family: 'Cormorant Garamond', serif !important;
    --e-global-typography-secondary-font-family: 'Montserrat', sans-serif !important;
    --e-global-typography-text-font-family: 'Montserrat', sans-serif !important;
    --e-global-typography-accent-font-family: 'Great Vibes', cursive !important;
}

/* Elementor Widget Container */
.elementor-widget-container {
    font-family: 'Montserrat', sans-serif !important;
    color: #2D2D2D !important;
}

/* Alle Elementor Headings */
.elementor-widget-heading .elementor-heading-title {
    font-family: 'Cormorant Garamond', serif !important;
}

/* Elementor Text Editor */
.elementor-widget-text-editor {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 300 !important;
}

/* Weiße Texte in dunklen Sektionen */
.page-hero-image .elementor-widget-container,
.page-hero-image .elementor-widget-container *,
.page-hero-image .elementor-heading-title,
.page-hero-image p,
.parallax-elegant .elementor-widget-container,
.parallax-elegant .elementor-widget-container *,
.parallax-elegant .elementor-heading-title,
.parallax-elegant p,
.parallax-quote .elementor-widget-container,
.parallax-quote .elementor-widget-container *,
.parallax-quote blockquote,
.philosophie .elementor-widget-container,
.philosophie .elementor-widget-container *,
.philosophie .elementor-heading-title,
.philosophie p,
.philosophie .subline {
    color: #FFFFFF !important;
}

/* Hero Content Titles */
.page-title-light,
.page-hero-content h1,
.page-hero-content .elementor-heading-title {
    font-family: 'Cormorant Garamond', serif !important;
    color: #FFFFFF !important;
}

.page-subtitle-light,
.page-hero-content p {
    font-family: 'Montserrat', sans-serif !important;
    color: rgba(255,255,255,0.75) !important;
}

/* Elegant Section */
.elegant-headline,
.parallax-elegant .elementor-heading-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 200px !important;
    font-weight: 300 !important;
    letter-spacing: 30px !important;
    color: #FFFFFF !important;
}

.elegant-words span,
.parallax-elegant .elegant-words .elementor-widget-container {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    letter-spacing: 4px !important;
    text-transform: uppercase !important;
    color: #FFFFFF !important;
}

/* Parallax Quote */
.parallax-quote blockquote,
.parallax-quote .elementor-widget-container {
    font-family: 'Cormorant Garamond', serif !important;
    color: #FFFFFF !important;
}

/* Philosophie Text sicherstellen weiß */
.philosophie-text,
.philosophie .philosophie-text,
.philosophie p.philosophie-text,
.philosophie .elementor-text-editor p,
.philosophie .elementor-widget-text-editor p,
section.philosophie .elementor-widget-container p {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 300 !important;
    color: #FFFFFF !important;
}

/* About Section */
.about-text p,
.about .elementor-text-editor p {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 300 !important;
    color: #2D2D2D !important;
}

/* Contact Form Inputs */
.kontakt-form input,
.kontakt-form select,
.kontakt-form textarea,
.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    font-family: 'Montserrat', sans-serif !important;
}

/* Blockquotes in Testimonials */
.testimonial-quote-box blockquote,
.testimonial-quote-box .elementor-widget-container {
    font-family: 'Cormorant Garamond', serif !important;
    font-style: italic !important;
    color: #2D2D2D !important;
}

/* Award Badges */
.badge-title {
    font-family: 'Great Vibes', cursive !important;
}

.badge-main {
    font-family: 'Cormorant Garamond', serif !important;
}

/* Footer */
.footer,
.footer .elementor-widget-container,
.footer p,
.footer a {
    font-family: 'Montserrat', sans-serif !important;
}

/* Mobile Responsive Elementor Overrides */
@media (max-width: 1024px) {
    .elegant-headline,
    .parallax-elegant .elementor-heading-title {
        font-size: 100px !important;
        letter-spacing: 15px !important;
    }

    .script-headline,
    .elementor-widget-heading.script-headline .elementor-heading-title {
        font-size: 40px !important;
    }
}

@media (max-width: 768px) {
    .elegant-headline,
    .parallax-elegant .elementor-heading-title {
        font-size: 60px !important;
        letter-spacing: 10px !important;
    }

    .page-title-light,
    .page-hero-content .elementor-heading-title {
        font-size: 36px !important;
        letter-spacing: 6px !important;
    }

    .script-headline,
    .elementor-widget-heading.script-headline .elementor-heading-title {
        font-size: 36px !important;
    }
}

/* ==========================================================================
   SUBPAGE HEADER & FOOTER SPACING FIXES
   ========================================================================== */

/* Remove any top margin/padding from first section after header */
.page-hero-image,
.page-hero,
body:not(.home) main > section:first-child,
body:not(.home) .elementor-section:first-child,
body.page-template-page-portfolio main > section:first-child,
body.page-template-page-kontakt main > section:first-child,
body.page-template-page-ueber-mich main > section:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Hero image full height from top */
.page-hero-image {
    min-height: calc(50vh + 80px) !important;
    padding-top: 80px !important;
    margin-top: 0 !important;
}

/* Footer no bottom gap */
.footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.copyright-bar {
    margin-bottom: 0 !important;
    padding-bottom: 25px !important;
}

/* CTA Section vor Footer */
.cta-section {
    margin-bottom: 0 !important;
}

/* Portfolio Page Fixes */
.portfolio-filter {
    margin-top: 0 !important;
    padding-top: 50px !important;
}

.portfolio-gallery {
    margin-bottom: 0 !important;
}

/* Contact Page Fixes */
.contact-page {
    margin-top: 0 !important;
}

.faq-section {
    margin-bottom: 0 !important;
}

/* Über Mich Page Fixes */
.about-page {
    margin-top: 0 !important;
}

.page-quote {
    margin-bottom: 0 !important;
}
