/* ----------------------------------------------------
   STILLE & BEWEGUNG | PREMIUM ZEN DESIGN CSS
------------------------------------------------------- */

:root {
    /* Color Palette */
    --color-bg: #FCFBF8;       /* Weiches Creme / Off-White */
    --color-bg-alt: #F4F2EC;   /* Etwas dunkleres Sand für Sektionen */
    --color-text: #4A4D4A;     /* Sehr weiches Schiefergrau, lese-freundlich */
    --color-heading: #2D302A;  /* Dunkleres Grau-Grün für Kontrast */
    --color-accent-green: #90A08A; /* Salbei-Grün */
    --color-accent-sand: #D4C9BA;  /* Sand-Beige */
    --color-white: #FFFFFF;
    --color-border: #E8E4DB;

    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Spacing & Sizes */
    --space-sm: 1rem;
    --space-md: 2.5rem;
    --space-lg: 5rem;
    --space-xl: 8rem;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--color-heading);
    font-weight: 500;
    line-height: 1.2;
}

i[class^="ph"] {
    display: inline-block;
    vertical-align: middle;
}

p {
    margin-bottom: 1.5rem;
}

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

/* Container Utility */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.section {
    padding: var(--space-xl) 0;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.section-title i {
    font-style: italic;
    color: var(--color-accent-green);
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--color-accent-green);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--color-accent-sand);
    margin: 2rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-heading);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-text);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header & Nav */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(252, 251, 248, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-heading);
}

.logo-dot {
    color: var(--color-accent-green);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent-green);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-heading);
    cursor: pointer;
}

.btn-nav {
    border: 1px solid var(--color-heading);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    color: var(--color-heading);
}

.btn-nav:hover {
    background-color: var(--color-heading);
    color: var(--color-white);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(252, 251, 248, 0.95) 0%, rgba(252, 251, 248, 0.7) 50%, rgba(252, 251, 248, 0.1) 100%);
}

.hero-content {
    max-width: 600px;
    padding-top: 5rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--color-accent-sand);
    color: var(--color-heading);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 30px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 3rem;
    max-width: 450px;
}

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

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-heading);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.decor-square {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-accent-sand);
    z-index: 1;
    border-radius: 4px;
}

/* Offers Grid */
.offers {
    padding-bottom: var(--space-xl);
}

.offers .section-title {
    margin-bottom: 4rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.offer-single {
    max-width: 600px;
    margin: 0 auto;
}

.offer-card {
    background-color: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.02);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--color-accent-green);
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--color-text);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.card-link {
    font-weight: 500;
    color: var(--color-heading);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link i {
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(4px);
}

/* Timeline (Ablauf) */
.process-container {
    max-width: 800px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-header .divider {
    margin: 1.5rem auto;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    height: 100%;
    width: 2px;
    background-color: var(--color-border);
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
    padding-left: 4rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -16px;
    top: 0;
    width: 32px;
    height: 32px;
    background-color: var(--color-bg);
    border: 2px solid var(--color-accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    color: var(--color-heading);
    font-weight: 600;
    z-index: 2;
}

.timeline-content h4 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 3px;
}

/* Contact & Pricing */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.pricing-box {
    padding-right: 2rem;
}

.pricing-title, .form-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.pricing-list {
    list-style: none;
    margin: 2rem 0;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1.1rem;
}

.pricing-list li .price {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-heading);
}

.pricing-notice {
    font-size: 0.9rem;
    color: var(--color-text);
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    margin-top: 2rem;
    background: rgba(212, 201, 186, 0.2);
    padding: 1rem;
    border-radius: 4px;
}

.pricing-notice i {
    color: var(--color-accent-green);
    font-size: 1.2rem;
}

.contact-box {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.form-desc {
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.contact-form .input-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-heading);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background-color: var(--color-bg);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text);
    transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent-green);
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(161, 176, 155, 0.1);
}

/* Footer */
.footer {
    background-color: var(--color-heading);
    color: var(--color-white);
    padding: 4rem 0 1.5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand .logo-text {
    color: var(--color-white);
}

.footer-brand .seo-text {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    max-width: 300px;
    font-size: 0.95rem;
}

.footer h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom .legal a {
    color: rgba(255, 255, 255, 0.5);
    margin-left: 1.5rem;
}

.footer-bottom .legal a:hover {
    color: var(--color-white);
}

/* ----------------------------------------------------
   Image Galleries & Carousels
------------------------------------------------------- */
/* 1. CSS Grid Gallery (breema-behandlung) */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 4rem auto;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.gallery-img-main { grid-row: 1 / 3; }



/* Gallery Mobile Adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-img-main { grid-row: auto; }
    .gallery-grid img { height: 250px; }
}

/* ----------------------------------------------------
   Animations & Interactivity
------------------------------------------------------- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), 
                transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* ----------------------------------------------------
   Responsive (Mobile First considerations up to Tablet/Mobile)
------------------------------------------------------- */
@media (max-width: 992px) {
    .about-container,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .reverse-mobile > *:nth-child(1) { order: 2; }
    .reverse-mobile > *:nth-child(2) { order: 1; }

    .hero-title {
        font-size: 3.5rem;
    }

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

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    
    .nav-links {
        display: none; /* Mobile menu hidden by default */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-bg);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border-top: 1px solid var(--color-border);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.8rem;
    }

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

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

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

    .timeline::before {
        left: 0;
    }
    .timeline-dot {
        left: -44px;
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    .timeline {
        padding-left: 2rem;
    }
    .timeline-item {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(252, 251, 248, 0.6) 0%, rgba(252, 251, 248, 0.95) 70%);
    }

    .hero-title {
        font-size: 2.2rem;
    }
    
    .contact-box {
        padding: 2rem 1.5rem;
    }
}

/* ----------------------------------------------------
   Cookie Banner
------------------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    max-width: 400px;
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    z-index: 9999;
    border: 1px solid var(--color-border);
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.6s ease;
    font-family: var(--font-sans);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-heading);
    margin-bottom: 0.5rem;
}

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

.cookie-banner p a {
    text-decoration: underline;
    color: var(--color-heading);
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cookie-buttons .btn {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    width: 100%;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.btn-outline:hover {
    background: var(--color-bg);
    color: var(--color-heading);
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1.5rem;
    }
}

/* ---------------------------------------------------- Workshop-Termine --- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.event-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 8px 30px rgba(45, 48, 42, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(45, 48, 42, 0.08);
}

.event-card .event-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-accent-green);
    text-transform: capitalize;
}

.event-card .event-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-heading);
    margin: 0.75rem 0 0.5rem;
}

.event-card .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.event-card .event-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.event-card .event-body {
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.event-card .event-body p {
    margin: 0 0 0.75rem;
}

.event-card .event-body p:last-child {
    margin-bottom: 0;
}

.event-card .btn {
    margin-top: auto;
}

/* Trademark-Symbol (®) 50% kleiner als der umgebende Text */
.tm {
    font-size: 0.5em;
    vertical-align: super;
    line-height: 0;
}
