:root {
    /* Color Palette */
    --color-primary: #D4AF37; /* Gold */
    --color-primary-dark: #C5A028;
    --color-text: #2c2c2c; /* Charcoal */
    --color-text-light: #5a5a5a;
    --color-bg-main: #FFFFFF;
    --color-bg-light: #FAFAFA;
    --color-bg-accent: #FDFBF7; /* Cream/Beige */
    --color-blush: #F7EBEB; /* Soft pink */
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Layout */
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--color-primary-dark);
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--color-bg-accent);
}

.bg-white {
    background-color: var(--color-bg-main);
}

.subheading {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-text);
    color: var(--color-bg-main);
}

.btn-primary:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-main);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1rem;
}

/* Pill Buttons */
.btn-pill {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 25px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    transition: var(--transition);
    border: 1px solid transparent;
    text-decoration: none;
}

.btn-pill span {
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: none;
}

.btn-pill-green {
    background-color: #2CD664;
    color: #111;
}
.btn-pill-green:hover { background-color: #25C058; color: #111; }

.btn-pill-pink {
    background-color: #f6b6b6;
    color: #fff;
}
.btn-pill-pink:hover { background-color: #e59595; color: #fff; }

.btn-pill-light {
    background-color: #d6e8d1;
    color: #333;
}
.btn-pill-light:hover { background-color: #c4d7bf; color: #333; }

.btn-pill-pink:hover {
    background-color: #d18a8f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 164, 169, 0.4);
}

.btn-pill-whatsapp {
    background-color: #25D366;
    color: #fff;
}

.btn-pill-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-pill-outline-header {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #111;
}
.btn-pill-outline-header:hover { border-color: #aaa; color: #111; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--color-primary);
}

/* Header Actions & Mobile */
.header-actions {
    display: flex;
    align-items: center;
}

.header-actions .btn-pill {
    padding: 4px 28px;
    font-size: 0.8rem;
    line-height: 1.1;
}

.header-actions .btn-pill span {
    font-size: 0.65rem;
    margin-top: 1px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-text);
    margin-right: 40px;
    transition: opacity 0.3s ease;
}

.header-phone:hover {
    opacity: 0.7;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text);
    cursor: pointer;
}

/* Hero Split Layout */
.hero-split {
    display: flex;
    min-height: 100vh;
    padding-top: 80px; /* Offset for header */
    background-image: linear-gradient(to right, rgba(227, 202, 201, 0.9) 0%, rgba(227, 202, 201, 0.7) 100%), url('images/roses.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-left {
    flex: 1;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.hero-text-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background-color: #a4c2a9; /* Muted green badge */
    color: #fff;
    padding: 6px 16px;
    border-radius: 2px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-title-split {
    font-size: 4rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hero-desc-split {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image-split {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* Or 20px 0 0 20px if you want a rounded left edge */
}


/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 10px;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.instagram-link .arrow {
    transition: var(--transition);
}

.instagram-link:hover .arrow {
    transform: translateX(5px);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--color-bg-main);
    padding: 40px 30px;
    border: 1px solid #EAEAEA;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

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

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

.service-card h3 {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Results Slideshow */
.results-marquee-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    margin-top: 40px;
    width: 100%;
}

.results-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite; /* Etwas schneller als Rezensionen */
}

.results-marquee-track:hover {
    animation-play-state: paused;
}

.result-img {
    height: 400px; /* Feste Höhe */
    aspect-ratio: 9 / 16; /* 9:16 Format wie gewünscht */
    object-fit: cover; /* Verhindert Verzerrung */
    border-radius: 12px;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

/* Reviews Slideshow */
.reviews-marquee-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    margin-top: 40px;
    width: 100%;
}

.reviews-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 50s linear infinite; /* Langsame Slideshow */
}

.reviews-marquee-track:hover {
    animation-play-state: paused; /* Pausiert beim Drüberfahren */
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-card {
    background-color: var(--color-bg-main);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #EAEAEA;
    transition: var(--transition);
    width: 380px; /* Feste Breite für Slideshow */
    margin-right: 30px; /* Abstand zwischen Karten */
    white-space: normal;
    flex-shrink: 0;
}

.review-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.review-stars {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.review-author {
    font-weight: 600;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1rem;
}

/* Pricing */
.pricing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.price-category {
    margin-bottom: 40px;
}

.price-category h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #EAEAEA;
    font-size: 0.95rem;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span:first-child {
    color: var(--color-text);
    font-weight: 500;
}

.price-item .price {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text);
    text-align: right;
    min-width: 100px;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding: 40px 0;
}

.contact-desc {
    margin-bottom: 30px;
    color: var(--color-text-light);
}

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

.detail-item {
    padding-left: 20px;
    border-left: 2px solid var(--color-primary);
}

.text-link {
    color: var(--color-text);
    font-weight: 500;
}

.text-link:hover {
    color: var(--color-primary);
}

.contact-map {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-accent);
    min-height: 300px;
    border: 1px solid #EAEAEA;
}

.map-placeholder {
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--color-bg-light); /* Heller Hintergrund */
    color: var(--color-text); /* Dunkler Text */
    padding: 60px 0 30px;
    border-top: 1px solid #EAEAEA;
}

.footer-logo {
    max-height: 80px;
    margin-bottom: 20px;
    mix-blend-mode: multiply; /* Macht weißen Hintergrund transparent */
}

.footer-address {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #EAEAEA; /* Hellere Linie */
    padding-bottom: 30px;
}

.footer-links a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.copyright {
    color: var(--color-grey);
    font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -150%;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-light);
    color: var(--color-text);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.08);
    z-index: 9999;
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid #EAEAEA;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.5;
}

/* Responsive adjustments for cookie banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-container,
    .pricing-container,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }
    .hero-right {
        min-height: 400px;
        border-radius: 0;
    }
    .hero-title-split {
        font-size: 2.5rem;
    }
    
    .nav-links, .header-actions .btn-pill, .header-phone {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .btn-pill-outline-header {
        display: none; /* Hide header button on mobile to save space */
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--color-bg-main);
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    }
    
    .nav-links.active a {
        padding: 10px 0;
        border-bottom: 1px solid #EAEAEA;
    }
}
