:root {
    --primary-color: #8DB580; /* Sanftes Grün */
    --secondary-color: #FAA0A0; /* Warmes Rosa/Koralle */
    --accent-color: #FFEBCD; /* Helles Beige (BlanchedAlmond) */
    --text-color: #3A3A3A; /* Dunkelgrau */
    --background-color: #FFF8E7; /* Sehr helles Beige/Cremeweiß */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Inter', sans-serif;
    --cta-font: 'Raleway', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--primary-color);
}

.font-raleway { font-family: var(--cta-font); }
.bg-primary { background-color: var(--primary-color); }
.text-primary { color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.text-secondary { color: var(--secondary-color); }
.bg-accent { background-color: var(--accent-color); }
.text-accent { color: var(--accent-color); }

.swiper-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding-top: 20px; /* Space for pagination */
    padding-bottom: 50px; /* Space for navigation buttons */
}

.swiper-slide {
    min-height: 250px; /* Ensure slides have a minimum height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box; /* Important for padding and borders */
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color) !important;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    width: 44px; /* Tailwind default size for nav buttons */
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.5rem !important; /* Adjust icon size */
}

.testimonial-swiper .swiper-slide p.italic {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem; /* Tailwind mb-4 */
    flex-grow: 1; /* Allow text to take available space */
}

.testimonial-swiper .swiper-slide p.font-semibold {
    color: var(--secondary-color);
    margin-top: auto; /* Push author to the bottom */
}

.hero-parallax {
    background-image: url('../img/yoga1.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-parallax {
    background-image: url('../img/yoga3.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Impressum und Datenschutz Styling */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.back-to-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.back-to-home:hover {
    background-color: var(--secondary-color);
}