/* Schriftarten-Importe */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

/* Reset und Basis-Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure full width on mobile */
html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Force full width for all elements on mobile */
@media (max-width: 768px) {
    * {
        max-width: none !important;
    }
    
    /* Force full width for all main elements */
    .container,
    .navbar,
    .hero,
    .hero-content,
    .clarity-headline,
    .clarity-text,
    .ei-block,
    .section-headline,
    .programm-list,
    .faq-section,
    .blog-section,
    .team-member,
    .retreat-impressions,
    .retreat-details,
    .signup-form,
    .blog-form,
    .blog-posts,
    .privacy-content,
    .privacy-section,
    .retreat-text,
    .mandala-logo-wrapper,
    .mandala-svg,
    .carousel-container,
    .carousel,
    .carousel-track,
    .impression-grid,
    .details-grid,
    .footer-content,
    .footer-section {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        box-sizing: border-box !important;
    }
    
    /* Special handling for specific elements */
    .hero-content h1,
    .hero-content p,
    .clarity-headline,
    .clarity-text,
    .ei-title,
    .ei-sub,
    .section-headline {
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Force single column for impression grid on mobile */
    .impression-grid {
        grid-template-columns: 1fr !important;
        display: grid !important;
    }
}

/* Ensure images and media are responsive */
img, video, iframe, object, embed {
    max-width: 100%;
    height: auto;
}

:root {
    /* Farben */
    --primary-color: #44484a;
    --white: #fff;
    --green-primary: #6B8A6B;
    --green-dark: #2E7D32;
    --gray-light: #f8f8f8;
    --gray-medium: #e3e6ea;
    --gray-dark: #666;
    --text-color: #44484a;
    
    /* Abstände */
    --navbar-height: 4rem;
    --navbar-scrolled-height: 3rem;
    --section-spacing: 3cm;
    --container-padding: 20px;
    
    /* Übergänge */
    --transition-speed: 0.4s;
    --transition-ease: ease;
    
    /* Schatten */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.18);
    
    /* Schriftgrößen */
    --font-size-small: 0.9rem;
    --font-size-normal: 1rem;
    --font-size-large: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 4rem;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: 4cm;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--white);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    width: 100%;
    min-width: 320px;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: transparent;
    z-index: 1000;
    transition: all var(--transition-speed) ease;
    will-change: background, padding;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-sizing: border-box;
}

.navbar.scrolled {
    background: rgba(248, 248, 248, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 1rem 2rem;
    box-shadow: var(--shadow-light);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
    color: var(--primary-color);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color var(--transition-speed) ease;
    will-change: color;
    -webkit-font-smoothing: antialiased;
}

.logo-mandala {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1) !important;
    transition: filter var(--transition-speed) ease;
    will-change: filter;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.navbar.scrolled .logo-mandala {
    filter: brightness(0) invert(1) !important;
}

.nav-links {
    display: flex;
    gap: 2rem;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: all var(--transition-speed) ease;
    position: relative;
    padding: 0.5rem 0;
    will-change: color;
    -webkit-font-smoothing: antialiased;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width var(--transition-speed) ease;
    will-change: width;
    transform: translateZ(0);
}

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

.nav-links a.active {
    font-weight: 500;
}

.nav-links a.active:after {
    width: 100%;
}

.menu-btn {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 3;
    width: 95%;
    max-width: 800px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    box-sizing: border-box;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 8vw, 7rem);
    font-weight: 400;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    -webkit-font-smoothing: antialiased;
    text-align: center;
    line-height: 1.1;
    word-wrap: break-word;
}

.hero-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 4vw, 2.25rem);
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    -webkit-font-smoothing: antialiased;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    word-wrap: break-word;
    color: var(--white);
    display: block;
    visibility: visible;
    opacity: 1;
}


.hero-scroll-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 4s ease, filter 4s ease;
}

.hero-scroll-container.visible {
    opacity: 1;
    filter: blur(0);
}

.hero-scroll-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-scroll-text:hover {
    opacity: 0.8;
}

.scroll-circle {
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-circle:hover {
    opacity: 0.8;
}

.scroll-arrow {
    width: 15px;
    height: 15px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin-top: -5px;
}

/* Footer */
footer {
    background-color: var(--gray-light);
    padding: 4rem 0 2rem;
    margin-top: 6cm;
}

@media (max-width: 768px) {
    footer {
        margin-top: 2rem;
        padding: 2rem 0 1rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #666;
}

.footer-section a {
    display: inline-block;
    color: var(--gray-dark);
    text-decoration: none;
    margin-right: 20px;
    padding: 8px 16px;
    transition: all 0.3s var(--transition-ease);
}

@media (max-width: 768px) {
    .footer-section a {
        margin-right: 0 !important;
        margin-bottom: 0.5rem !important;
    }
}

.footer-section a:hover {
    color: var(--gray-dark);
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 102, 102, 0.3);
    border-radius: 25px;
}

/* Aktive Footer-Links in grüner Farbe */
.footer-section a[href="index.html"].active,
.footer-section a[href="team.html"].active,
.footer-section a[href="blog.html"].active,
.footer-section a[href="anmeldung.html"].active,
.footer-section a[href="datenschutz.html"].active,
.footer-section a[href="impressum.html"].active {
    color: var(--green-primary) !important;
}

.footer-section a[href="index.html"].active:hover,
.footer-section a[href="team.html"].active:hover,
.footer-section a[href="blog.html"].active:hover,
.footer-section a[href="anmeldung.html"].active:hover,
.footer-section a[href="datenschutz.html"].active:hover,
.footer-section a[href="impressum.html"].active:hover {
    color: var(--green-primary) !important;
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 138, 107, 0.3);
    border-radius: 25px;
}

/* Neue Styles für horizontale Schnelllinks */
.footer-section:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.footer-section:nth-child(2) .links-container {
    display: flex;
    flex-direction: row;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .footer-section:nth-child(2) .links-container {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
}

.footer-section:nth-child(2) a {
    margin-right: 20px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .footer-section:nth-child(2) a {
        margin-right: 0 !important;
        margin-bottom: 0.5rem !important;
    }
}

.footer-section:nth-child(2) a:last-child {
    margin-right: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #666;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #333;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0.5rem !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        position: fixed !important;
    }

    .navbar.scrolled {
        padding: 0.8rem 0.5rem !important;
    }
    
    .navbar .logo-container {
        flex: 1;
        min-width: 0;
    }
    
    .navbar .nav-links {
        display: none;
    }
    
    .navbar .menu-btn {
        display: block !important;
        flex-shrink: 0;
    }

    .logo {
        font-size: 1.5rem;
    }
    
    .logo-mandala {
        width: 25px;
        height: 25px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right var(--transition-speed) ease;
        will-change: right;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

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

    .nav-links a {
        color: var(--primary-color);
        font-size: 1.2rem;
        padding: 1rem 0;
    }

    .menu-btn {
        display: block;
        color: #fff;
    }

    .navbar.scrolled .menu-btn {
        color: var(--primary-color);
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
        left: 0 !important;
        right: 0 !important;
        transform: translateY(-50%) !important;
    }
    
    .hero {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section a {
        display: inline-block !important;
        margin: 0.5rem 1rem !important;
        padding: 0.5rem 1rem !important;
        background: white !important;
        border-radius: 20px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
        font-size: 0.9rem !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .footer-section:nth-child(2) .links-container {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .footer-section:nth-child(2) a {
        margin: 0.25rem 0 !important;
        display: block !important;
        width: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: white !important;
        padding: 0.5rem 1rem !important;
        border-radius: 20px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    }

    .hero-scroll-container {
        bottom: 80px;
        gap: 15px;
    }
    
    .hero-scroll-text {
        font-size: 1.2rem;
    }
    
    .scroll-circle {
        width: 30px;
        height: 30px;
    }
    
    .scroll-arrow {
        width: 10px;
        height: 10px;
    }

    /* Content Padding Mobile */
    .clarity-headline,
    .clarity-text,
    .ei-block,
    .section-headline {
        padding: 0 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .ei-block {
        margin: 1.5rem auto 1.5rem auto;
    }

    .section-headline {
        margin-top: 2rem;
    }

    /* Programm List Mobile */
    .programm-list {
        padding: 0 1rem;
    }

    .programm-title {
        font-size: 1.5rem;
    }

    .programm-desc {
        font-size: 1.5rem;
    }

    /* Container Mobile */
    .container {
        padding: 0 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* Extra Small Mobile - Only specific adjustments */
@media (max-width: 480px) {
    .programm-title {
        font-size: 1.3rem;
    }

    .programm-desc {
        font-size: 1.5rem;
    }
}

/* Animationen */
/* fadeIn keyframes removed - JavaScript controls all animations */

/* CSS animations removed - JavaScript controls all animations */

.clarity-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 600;
    text-align: center;
    color: #44484a;
    margin: 3.8cm auto 1rem auto;
    line-height: 1.2;
    letter-spacing: 0.5px;
    max-width: 90vw;
    word-wrap: break-word;
}

/* Griechische Schrift weniger fett und halb so groß */
.clarity-headline .greek-text {
    font-weight: 400;
    font-size: 0.5em;
}

/* Retreat Info Styles */
.retreat-info {
    max-width: 900px;
    margin: 2rem auto 2rem auto;
    text-align: center;
    padding: 0 1rem;
}

.retreat-details-info {
    margin-bottom: 2.5rem;
}

.retreat-date,
.retreat-location {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #44484a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-align: center;
    width: 100%;
}


/* Mobile Anpassungen für Retreat Info */
@media (max-width: 768px) {
    .retreat-info {
        margin: 1.5rem auto 1.5rem auto;
        padding: 0 1rem;
    }
    
    .retreat-details-info {
        margin-bottom: 2rem;
    }
    
    .retreat-date,
    .retreat-location {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
}

@media (max-width: 480px) {
    .retreat-date,
    .retreat-location {
        font-size: 1.3rem;
    }
    
}

.clarity-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #44484a;
    text-align: center;
    margin: 2rem auto 1.5cm auto;
    line-height: 1.4;
    max-width: 900px;
    word-wrap: break-word;
}

.ei-block {
    margin: 2.2cm auto 2.5rem auto;
    text-align: center;
    max-width: 900px;
    color: #44484a;
}

.ei-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 600;
    color: #44484a;
    margin: 1.2rem 0 0.5rem 0;
    word-wrap: break-word;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* Mobile: Verhindere Zeilenumbruch für Enlightenment Intensive */
@media (max-width: 768px) {
    .ei-title {
        white-space: nowrap;
        font-size: clamp(1.5rem, 5vw, 2.5rem) !important;
    }
    
    .ei-title-text {
        white-space: nowrap;
    }
    
    .star-link-small {
        font-size: 0.25em !important;
        margin-left: 0.2em !important;
        vertical-align: 0.1em !important;
        padding: 0 !important;
    }
}

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

.ei-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #44484a;
    margin-bottom: 1.2rem;
    word-wrap: break-word;
    white-space: nowrap;
}

.ei-line {
    border: none;
    border-top: 2px solid #bfc5cb;
    width: 90%;
    max-width: 600px;
    margin: 0.7rem auto;
    opacity: 0.5;
}

.mandala-logo-wrapper {
    margin-top: 3cm;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mandala-logo {
    max-width: 120px;
    width: 100%;
    height: auto;
}

/* Einheitliche Mandala-Darstellung wie auf der Teamseite */
.mandala-svg {
    display: flex;
    justify-content: center;
    margin: 1.5cm 0 1.5cm 0;
}

/* Mobile: Verkleinerte Abstände für Mandala auf der Startseite */
@media (max-width: 768px) {
    .mandala-svg {
        margin: 1.5cm 0 1.5cm 0 !important;
    }
}
.mandala-svg img {
    max-width: 120px;
    width: 100%;
    height: auto;
}

.retreat-text {
    margin-top: 1cm;
}

.section-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 5vw, 2.66rem);
    font-weight: 700;
    color: #44484a;
    text-align: center;
    margin-top: 3cm;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
    word-wrap: break-word;
}

.retreat-headline {
    margin-top: 0;
    margin-bottom: 1rem;
}

.programm-list {
    max-width: 900px;
    margin: 2.5rem auto 0 auto;
    padding: 0 1rem;
}

.programm-item {
    margin-bottom: 1.8rem;
}

.programm-title {
    display: flex;
    align-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #44484a;
    margin-bottom: 0.3rem;
}

.programm-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green-primary);
    margin-right: 0.7rem;
    flex-shrink: 0;
}

.programm-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #44484a;
    margin-left: 1.7rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.programm-line {
    border: none;
    border-top: 1.5px solid #e3e6ea;
    margin: 1.2rem 0 1.2rem 0.5rem;
    width: 95%;
    opacity: 0.7;
}

.faq-section {
    max-width: 900px;
    margin: 4rem auto 0 auto;
    padding: 2rem 1rem;
    background: var(--gray-light);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.06);
}
.faq-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    font-weight: 600;
    color: #44484a;
    text-align: center;
    margin-bottom: 2rem;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.faq-item {
    border-bottom: 1px solid #e3e6ea;
    padding-bottom: 1rem;
}
.faq-question {
    background: none;
    border: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #44484a;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    transition: color 0.2s;
}
.faq-question:hover {
    color: #2c3e50;
}
.faq-arrow {
    font-size: 1.2rem;
    margin-left: 0.5rem;
    transition: transform 0.3s;
}
.faq-answer {
    display: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #44484a;
    margin-top: 0.5rem;
    line-height: 1.4;
}
.faq-item.open .faq-answer {
    display: block;
}
.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.blog-section {
    max-width: 900px;
    margin: 4rem auto 0 auto;
    padding: 2rem 1rem;
}
.blog-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    font-weight: 600;
    color: #44484a;
    text-align: center;
    margin-bottom: 2rem;
}
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.blog-card {
    background: var(--gray-light);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.06);
    padding: 2rem;
    transition: box-shadow 0.2s var(--transition-ease);
}
.blog-card:hover {
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.12);
}
.blog-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}
.blog-date {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 1rem;
}
.blog-teaser {
    font-size: 1.1rem;
    color: #44484a;
    margin-bottom: 1.2rem;
}
.blog-readmore {
    font-family: 'Poppins', sans-serif;
    font-size: var(--font-size-normal);
    color: #2c3e50;
    text-decoration: underline;
    transition: color 0.2s var(--transition-ease);
}
.blog-readmore:hover {
    color: #44484a;
}

.blog-readmore-btn {
    border: 1px solid #bbb;
    background: transparent;
    color: #2c3e50;
    border-radius: 6px;
    padding: 0.4em 1.2em;
    font-size: var(--font-size-normal);
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: border-color 0.2s var(--transition-ease), color 0.2s var(--transition-ease), background 0.2s var(--transition-ease);
    box-shadow: none;
}

.blog-readmore-btn:hover {
    border-color: #888;
    background: #f8f8f8;
    color: #222;
}

/* Team Member Section */
.team-member {
    padding: 6rem 0;
    background-color: #fff;
}

.team-member-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member-image {
    flex: 0 0 400px;
    position: relative;
    cursor: pointer;
}

.team-member-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s var(--transition-ease);
}

.team-member-image:hover img {
    transform: scale(1.02);
}

.team-member-image .zoom-icon {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
}

.team-member-image .zoom-icon:hover {
    background: #f8f8f8;
}

.team-member-image .zoom-icon i {
    color: #44484a;
    font-size: 1.2rem;
}

.team-member-info {
    flex: 1;
}

.team-member-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.team-member-info p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    line-height: 1.4;
    color: #44484a;
}

@media (max-width: 768px) {
    .team-member-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .team-member-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }
}

.retreat-impressions {
    margin-top: 0cm;
    padding: 2rem 0;
}

.retreat-impressions .section-headline {
    margin-top: 0;
}

.impression-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.impression-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    height: 200px;
    background: var(--white);
    aspect-ratio: 3/2;
}

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

.impression-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .impression-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .impression-item {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .impression-grid {
        grid-template-columns: 1fr !important;
        max-width: 100%;
        padding: 0 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .impression-item {
        height: 180px;
    }
    
    .footer-section a {
        margin: 0.25rem 0.5rem !important;
        padding: 0.4rem 0.8rem !important;
        font-size: 0.8rem !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: white !important;
        border-radius: 15px !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1) !important;
    }
    
    .footer-section:nth-child(2) a {
        margin: 0.2rem 0 !important;
        display: block !important;
        width: auto !important;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .privacy-hero h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
        text-align: center !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 0.5rem !important;
    }
    
    .privacy-hero p {
        font-size: clamp(1rem, 4vw, 1.5rem) !important;
        text-align: center !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 0.5rem !important;
    }
    
    .hero-scroll-container {
        bottom: 70px !important;
    }
    
    .carousel-slide {
        flex: 0 0 calc(50% - 0.5rem) !important;
        height: 350px !important;
    }
    
}

.carousel-container {
    position: relative;
    width: 100%;
    margin: 3rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 0;
    position: relative;
    height: 500px;
    cursor: pointer;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 1rem) !important;
        height: 400px !important;
    }
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
}


.carousel-vertical-line {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background-color: #bfc5cb;
    z-index: 2;
}

.carousel-line-left {
    left: 0;
}

.carousel-line-right {
    right: 0;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: none;
    z-index: 3;
    transition: transform 0.2s;
    padding: 0;
    visibility: visible;
}

.carousel-arrow:hover {
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.carousel-arrow-left {
    left: -70px;
}

.carousel-arrow-right {
    right: -70px;
}

@media (max-width: 1100px) {
    .carousel-arrow-left { left: -40px; }
    .carousel-arrow-right { right: -40px; }
}

@media (max-width: 768px) {
    .carousel-arrow-left { left: -25px; }
    .carousel-arrow-right { right: -25px; }
}

.zoom-icon {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: background 0.2s var(--transition-ease);
    z-index: 2;
}
.zoom-icon:hover {
    background: var(--gray-light);
}
.zoom-icon i {
    color: var(--text-color);
    font-size: 1.2rem;
}

.image-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: column;
}
.image-overlay .overlay-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.close-overlay {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.close-overlay:hover {
    background: rgba(255,255,255,0.2);
}

/* Blog Form Styles */
.blog-form {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-large);
    color: var(--text-color);
}

.form-group label input[type="checkbox"] {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
    width: 16px;
    height: 16px;
    accent-color: #2E7D32;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-large);
    color: var(--text-color);
    transition: border-color 0.3s var(--transition-ease);
}

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

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

.submit-btn {
    background: var(--green-primary);
    border: 2px solid var(--green-primary);
    padding: 0.8rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: var(--font-size-normal);
    color: var(--white);
    cursor: pointer;
    width: 100%;
    border-radius: 25px;
    transition: all 0.3s var(--transition-ease);
}

.submit-btn:enabled {
    background: var(--green-primary);
    color: var(--white);
}

.submit-btn:hover {
    background: var(--green-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 138, 107, 0.3);
}

@media (max-width: 768px) {
    .blog-form {
        padding: 1.5rem;
        margin: 1.5rem;
    }
}

.name-group {
    display: flex;
    gap: 1rem;
}

.name-field {
    flex: 1;
}

@media (max-width: 768px) {
    .name-group {
        flex-direction: column;
        gap: 0;
    }
}

.blog-posts {
    max-width: 800px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-post {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
}

.blog-post h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.blog-author {
    font-family: 'Poppins', sans-serif;
    font-size: var(--font-size-small);
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.blog-content-wrapper {
    position: relative;
}

.blog-content {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-large);
    line-height: 1.4;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.blog-content-full {
    display: none;
    margin-top: 1rem;
}

.blog-content-full p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    line-height: 1.4;
    color: #44484a;
    margin-bottom: 1rem;
}

.read-more-btn {
    background: transparent;
    border: none;
    color: var(--green-primary);
    font-family: 'Poppins', sans-serif;
    font-size: var(--font-size-small);
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    transition: all 0.3s var(--transition-ease);
    display: inline-block;
    margin-top: 0.5rem;
}

.read-more-btn:hover {
    background: var(--white);
    color: var(--green-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 138, 107, 0.3);
    border-radius: 8px;
    padding: 4px 8px;
}

.blog-post.expanded .blog-content-full {
    display: block;
}

@media (max-width: 768px) {
    .blog-posts {
        margin: 2rem 1rem;
    }
    
    .blog-post {
        padding: 1.5rem;
    }
}

/* Einheitliche Abstände für alle Seiten */
body.team-page .retreat-impressions .section-headline {
    margin-top: 2cm !important;
}

body.blog-page .section-headline:nth-of-type(3) {
    margin-top: 1.4cm !important;
}

body.blog-page .blog-form {
    margin-bottom: 3.0cm !important;
}

.retreat-details {
    padding: 4rem 0;
    background-color: #fff;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.detail-item {
    text-align: center;
    padding: 2rem;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
}

.detail-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
}

.detail-item p {
    margin: 0.5rem 0;
    color: #44484a;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    line-height: 1.4;
}

.detail-item a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
}

.detail-item a:hover {
    color: #2c5282;
}

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

.retreat-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #44484a;
    text-align: center;
    margin: 1.5rem 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .retreat-price {
        font-size: 2.8rem;
    }
}

.price-includes {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #44484a;
    text-align: center;
    margin: 1.2rem 0 1.2rem 0;
}

.included-list-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 2rem;
    margin-left: 3rem;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.included-list li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #44484a;
    display: flex;
    align-items: flex-start;
    margin: 0.5rem 0;
    width: 100%;
}

.included-check {
    color: var(--green-primary);
    font-size: 1.3rem;
    margin-right: 0.7em;
    flex-shrink: 0;
    width: 1.3rem;
    text-align: center;
}

@media (max-width: 768px) {
    .price-includes {
        font-size: 1.3rem;
    }
    .included-list li {
        font-size: 1.1rem;
    }
    .included-list {
        max-width: 95vw;
    }
}

.important-note-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.66rem;
    font-weight: 600;
    color: #44484a;
    text-align: center;
    margin: 5.5cm 0 1.2rem 0;
    letter-spacing: 0.5px;
}

.waiver-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #44484a;
    max-width: 600px;
    margin: 1.5rem auto 2.5rem auto;
    text-align: left;
    line-height: 1.4;
    font-weight: 400;
}

.waiver-list {
    margin: 1.1rem 0 1.1rem 1.2rem;
    padding: 0;
}

.waiver-list li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #44484a;
    margin-bottom: 0.5rem;
    list-style-type: disc;
    margin-left: 1.2rem;
    font-weight: 400;
}

.waiver-list li::marker {
    color: var(--green-primary);
}

.waiver-link {
    color: #000;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.waiver-link:hover {
    opacity: 0.8;
}

.waiver-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.5);
}

.waiver-modal-content {
    background: #fff;
    margin: 4rem auto;
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 12px;
    max-width: 700px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #44484a;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: relative;
}

.waiver-modal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #44484a;
    text-align: center;
}

.waiver-modal-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #44484a;
}

.waiver-modal-content ul {
    margin: 0.7rem 0 0.7rem 1.2rem;
    padding: 0;
}

.waiver-modal-content li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    color: #44484a;
    list-style-type: disc;
}

.waiver-modal-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    color: #44484a;
}

.waiver-modal-close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    transition: color 0.2s;
}

.waiver-modal-close:hover {
    color: #222;
}

@media (max-width: 800px) {
    .waiver-modal-content {
        max-width: 98vw;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
    .waiver-modal-content h2 {
        font-size: 1.8rem;
    }
    .waiver-modal-content h3 {
        font-size: 1.5rem;
    }
    .waiver-modal-content p, .waiver-modal-content li {
        font-size: 1.3rem;
    }
}

.signup-headline-wrapper {
    margin-top: 3cm;
    text-align: center;
}
.signup-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    font-weight: 600;
    color: #44484a;
    margin-bottom: 1.2rem;
}
.signup-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #44484a;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.4;
    font-weight: 400;
}

.signup-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.signup-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #44484a;
}

.signup-form input,
.signup-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #44484a;
}

.signup-form textarea {
    resize: vertical;
}

.signup-form .submit-button {
    background: var(--green-primary);
    border: 2px solid var(--green-primary);
    padding: 0.8rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: var(--font-size-normal);
    color: var(--white);
    cursor: pointer;
    width: 100%;
    border-radius: 25px;
    transition: all 0.3s var(--transition-ease);
}

.signup-form .submit-button:hover {
    background: var(--green-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 138, 107, 0.3);
}

/* Anpassung des Overlays für Text */
.image-overlay.text-overlay .overlay-img {
    display: none;
}

.image-overlay.text-overlay .text-content {
    background: white;
    padding: 1.5rem 2rem;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 12px;
    border: 1px solid #e3e6ea;
    max-height: 40vh;
    overflow-y: auto;
}

.image-overlay.text-overlay .text-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #44484a;
}

.image-overlay.text-overlay .text-content p {
    font-size: 1.3rem;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
    color: #44484a;
    line-height: 1.4;
}

/* Navigation Pfeile für Image Overlay - Alle Bildschirmgrößen */
.overlay-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.overlay-nav-arrow:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.overlay-nav-arrow i {
    font-size: 1.2rem;
    color: #44484a;
}

.overlay-nav-left {
    left: 30px;
}

.overlay-nav-right {
    right: 30px;
}

/* Mobile-spezifische Anpassungen */
@media (max-width: 768px) {
    .overlay-nav-arrow {
        width: 45px;
        height: 45px;
    }
    
    .overlay-nav-arrow i {
        font-size: 1rem;
    }
    
    .overlay-nav-left {
        left: 15px;
    }
    
    .overlay-nav-right {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .overlay-nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .overlay-nav-arrow i {
        font-size: 0.9rem;
    }
    
    .overlay-nav-left {
        left: 10px;
    }
    
    .overlay-nav-right {
        right: 10px;
    }
}

.carousel-counter {
    text-align: center;
    margin-top: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--text-color);
}

.carousel-counter span {
    font-weight: 500;
}

/* Anpassung für verschiedene Seiten */
body.team-page .retreat-impressions,
body.blog-page .blog-posts,
body.index-page .retreat-details {
    margin-bottom: 4cm;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 15% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 80%;
    max-width: 600px;
    position: relative;
    box-shadow: var(--shadow-heavy);
}

.modal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.2rem;
}

.modal-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-large);
    color: var(--text-color);
    line-height: 1.4;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    transition: color 0.2s var(--transition-ease);
}

.close:hover {
    color: #222;
}

@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        margin: 20% auto;
        padding: 1.5rem;
    }
    
    .modal-content h2 {
        font-size: 1.8rem;
    }
    
    .modal-content p {
        font-size: 1.3rem;
    }
}

.photo-upload-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-large);
    color: var(--text-color);
    margin: 1rem 0 2rem 0;
    line-height: 1.4;
}

.photo-upload-text a {
    color: var(--green-dark);
    text-decoration: none;
    padding: 8px 16px;
    border: none;
    background: var(--white);
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s var(--transition-ease);
}

.photo-upload-text a:hover {
    background: var(--white);
    color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    border-radius: 25px;
}

/* Tooltip Styles */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: auto;
    min-width: 120px;
    background-color: rgba(176, 176, 176, 0.8);
    color: #44484a;
    text-align: center;
    border-radius: 6px;
    padding: 5px 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    pointer-events: none;
    white-space: nowrap;
}



.tooltip a {
    color: inherit;
    text-decoration: none;
}

.tooltip a:hover {
    text-decoration: underline;
    text-decoration-color: #d0d0d0;
    text-decoration-thickness: 0.5px;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(176, 176, 176, 0.8) transparent transparent transparent;
}



.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.photo-upload-box {
    max-width: 800px;
    margin: 1.5cm auto 0 auto;
    padding: 0;
    /* gleiche Ausrichtung wie .blog-form */
}

.photo-upload-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-large);
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    text-align: left;
} 

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
    line-height: 1.6;
}

.cookie-banner-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    color: #fff;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cookie-btn-accept {
    background: #4CAF50;
    color: white;
}

.cookie-btn-accept:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-settings {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    padding: 5px 10px;
}

.cookie-btn-settings:hover {
    color: white;
}

.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    backdrop-filter: blur(5px);
}

.cookie-settings-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    color: #333;
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.cookie-settings-header h2 {
    margin: 0;
    color: #333;
}

.cookie-settings-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-settings-close:hover {
    color: #333;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-title {
    font-weight: 600;
    color: #333;
    margin: 0;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 24px;
    background: #ccc;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-toggle.active {
    background: #4CAF50;
}

.cookie-toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.cookie-toggle.active .cookie-toggle-slider {
    transform: translateX(26px);
}

.cookie-category-description {
    font-size: 0.9em;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.cookie-settings-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-settings-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-settings-save {
    background: #4CAF50;
    color: white;
}

.cookie-settings-save:hover {
    background: #45a049;
}

.cookie-settings-cancel {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.cookie-settings-cancel:hover {
    background: #e9e9e9;
}

/* Responsive Design für Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-text {
        min-width: auto;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
    }
    
    .cookie-settings-content {
        width: 95%;
        padding: 20px;
    }
    
    .cookie-settings-footer {
        flex-direction: column;
    }
    
    .cookie-settings-btn {
        width: 100%;
    }
}

/* Animation für Cookie Banner */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner.show {
    animation: slideUp 0.3s ease-out;
} 

/* Datenschutz-Seite Styles */
.privacy-hero h1,
.privacy-hero p {
    color: #999999;
}

/* Navigation für Impressum-Seite sichtbar machen */
.privacy-nav {
    background: rgba(248, 248, 248, 0.95) !important;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: var(--shadow-light);
}

.privacy-nav .logo,
.privacy-nav .nav-links a {
    color: var(--primary-color) !important;
}

.privacy-nav .logo-mandala {
    filter: brightness(0) invert(1) !important;
}

.privacy-nav .menu-btn {
    color: var(--primary-color) !important;
}

/* Datenschutz-Überschrift ohne Zeilenumbruch */
.privacy-hero h1 {
    white-space: nowrap;
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 600;
}

@media (max-width: 768px) {
    .privacy-hero h1 {
        text-align: center !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 1rem !important;
        white-space: nowrap;
        font-size: clamp(2rem, 7vw, 3rem) !important;
        font-weight: 600 !important;
    }
    
    .privacy-hero p {
        text-align: center !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 1rem !important;
    }
}

/* Sehr kleine Bildschirme - falls nötig, erlaube Zeilenumbruch */
@media (max-width: 480px) {
    .privacy-hero h1 {
        white-space: normal !important;
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
        line-height: 1.2 !important;
        font-weight: 600 !important;
    }
}

.privacy-hero .hero-scroll-text {
    color: #999999;
}

.privacy-hero .scroll-circle {
    border-color: #999999;
}

.privacy-hero .scroll-arrow {
    border-color: #999999;
}

.fixed-back-button-container {
    position: fixed;
    top: 130px;
    left: 20px;
    z-index: 1000;
}

.fixed-back-button {
    background: var(--green-primary);
    border: 2px solid var(--green-primary);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s var(--transition-ease);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
}

.fixed-back-button:hover {
    background: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 138, 107, 0.3);
}

.fixed-back-button i {
    font-size: 12px;
}

.privacy-content {
    padding: 60px 0;
    background: #f9f9f9;
}

/* Zentrierung für Hero-Content Elemente */
.hero-content h1,
.hero-content p {
    width: 100%;
    text-align: center;
}

.privacy-section {
    background: var(--white);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.privacy-section h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8em;
    border-bottom: 2px solid var(--green-primary);
    padding-bottom: 10px;
}

.privacy-section h3 {
    color: #555;
    margin: 20px 0 10px 0;
    font-size: 1.3em;
}

.privacy-section p {
    line-height: 1.6;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.privacy-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-section li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: var(--gray-dark);
}

.privacy-section strong {
    color: #333;
}

.privacy-section a {
    color: var(--green-dark);
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
    color: #1B5E20;
}

#eclipsechasers-link {
    display: inline-block !important;
    padding: 8px 16px !important;
    border: 2px solid var(--green-primary) !important;
    border-radius: 25px !important;
    background: rgba(107, 138, 107, 0.1) !important;
    color: var(--green-primary) !important;
    font-weight: 500 !important;
    transition: all 0.3s var(--transition-ease) !important;
    text-decoration: none !important;
}

#eclipsechasers-link:hover {
    background: var(--green-primary) !important;
    color: var(--white) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(107, 138, 107, 0.3) !important;
    text-decoration: none !important;
}

/* Responsive Design für Datenschutz-Seite */
@media (max-width: 768px) {
    .privacy-content {
        padding: 40px 0;
    }
    
    .privacy-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.5em;
    }
    
    .privacy-section h3 {
        font-size: 1.2em;
    }
}

/* Star link styles */
.star-link {
    color: #6B8A6B;
    text-decoration: none;
    font-size: 0.8em;
    margin-left: 8px;
    margin-right: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    top: -0.2em;
}

.star-link-small {
    color: #6B8A6B;
    text-decoration: none;
    font-size: 0.2em;
    padding: 20px;
    margin: 0;
    transition: all 0.3s ease;
    display: inline;
    margin-left: 1cm;
    vertical-align: 1cm;
}

.star-link:hover, .star-link-small:hover {
    color: #5a7a5a;
    transform: scale(1.2);
    text-shadow: 0 0 8px rgba(107, 138, 107, 0.4);
}

.enlightenment-hint {
    margin-top: 15px;
    padding: 10px 0;
    font-size: 1em;
    color: #333;
}

.hint-text {
    color: #6B8A6B;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
    padding: 2px 6px;
}

.hint-text:hover {
    color: #5a7a5a;
    background-color: rgba(107, 138, 107, 0.1);
    text-decoration: underline;
}

/* Mobile Fix für Enlightenment Intensive Überschrift auf Galaxy Smartphones */
@media (max-width: 480px) {
    .ei-title {
        font-size: 1.8rem !important;
        line-height: 1.2;
        display: block;
        text-align: center;
        word-spacing: normal;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .ei-title-text {
        display: inline;
        line-height: 1.3;
        text-align: center;
        white-space: nowrap;
    }
    
    .star-link-small {
        font-size: 0.3em !important;
        margin-left: 0.3em !important;
        vertical-align: 0.2em !important;
        padding: 0 !important;
    }
}

/* Extra kleine Bildschirme (sehr kleine Galaxy Geräte) */
@media (max-width: 360px) {
    .ei-title {
        font-size: 1.5rem !important;
        line-height: 1.1;
    }
    
    .ei-title-text {
        line-height: 1.2;
    }
} 