/* ==========================================
   PJT Übergangsseite 2026 - Stylesheet
   Design: Figma PJT-Webseite-2026
   ========================================== */

/* ==========================================
   LOCAL FONTS
   ========================================== */
@font-face {
    font-family: 'Lexend';
    src: url('../fonts/lexend-v26-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/lexend-v26-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/lexend-v26-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/lexend-v26-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/lexend-v26-latin-800.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/lexend-v26-latin-900.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend Mega';
    src: url('../fonts/lexend-mega-v27-latin-900.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ==========================================
   CSS VARIABLES (Design Tokens)
   ========================================== */
:root {
    --color-primary: #ec80af;
    --color-secondary: #bed5ff;
    --color-dark: #5a3406;
    --color-light: #fffcf1;
    --color-accent: #f82323;
    --color-footer: #221402;
    --color-accent-light: #fffdb7;
    --color-shadow: rgba(0, 0, 0, 0.25);

    --font-heading: 'Lexend Mega', 'Lexend', sans-serif;
    --font-body: 'Lexend', sans-serif;

    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 80px;

    --radius-sm: 15px;
    --radius-md: 25px;
    --radius-lg: 30px;

    --max-width: 1200px;
    --content-padding: 120px;
}

/* ==========================================
   RESET & BASE
   ========================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-dark);
    background-color: var(--color-light);
    line-height: 1.4;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
.heading-label {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 900;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: var(--spacing-xs);
    line-height: 1.045;
}

.heading-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 900;
    color: var(--color-dark);
    text-transform: uppercase;
    line-height: 1.045;
    margin-bottom: var(--spacing-md);
}

.heading-title--large {
    font-size: 35px;
}

.text-body {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-dark);
}

.text-highlight {
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
}

.text-link {
    text-decoration: underline;
    font-weight: 600;
}

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

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-body);
    border-radius: var(--radius-sm);
    text-align: center;
    transition: all 0.3s ease;
    line-height: 1.045;
}

.btn--primary {
    background-color: var(--color-secondary);
    color: var(--color-dark);
}

.btn--primary:hover {
    background-color: #a8c5ff;
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.25));
}

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

.btn--outline:hover {
    background-color: var(--color-secondary);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.25));
}

.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

/* ==========================================
   LAYOUT
   ========================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--content-padding);
}

.section {
    position: relative;
    padding: var(--spacing-xl) 0;
}

/* ==========================================
   CIRCLE BADGE
   ========================================== */
.circle-badge {
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: 10;
}

.circle-badge__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.circle-badge__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    text-align: center;
}

.circle-badge__text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: var(--color-secondary);
    line-height: 1.1;
    text-align: center;
}

.circle-badge__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 6px;
}

.circle-badge__icon img {
    width: 100%;
    height: 100%;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    text-align: center;
    padding-top: 60px;
}

.header__logo {
    width: 350px;
    height: auto;
    margin: 0 auto var(--spacing-xl);
    overflow: hidden;
}

.header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==========================================
   HERO / SAVE THE DATE
   ========================================== */
.hero {
    text-align: center;
    padding: var(--spacing-lg) 60px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 9px;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.045;
}

.hero__date {
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 60px;
    line-height: 1.1;
}

.hero__image {
    width: 100%;
    max-width: 1301px;
    height: auto;
    margin: 0 auto;
}

/* ==========================================
   SECTION FEATURED
   ========================================== */
.section-featured {
    position: relative;
    padding: var(--spacing-3xl) 0;
    margin-top: var(--spacing-xl);
    width: 100%;
}

.section-featured__bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 530px;
    overflow: hidden;
    z-index: 0;
}

.section-featured__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transform: scaleY(-1);
}

.featured-card {
    position: relative;
    background: var(--color-light);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-md);
    max-width: 1120px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    display: flex;
    gap: var(--spacing-xl);
    z-index: 1;
}

.featured-card__content {
    flex: 1;
    padding: var(--spacing-lg) 0;
}

.featured-card__image {
    flex: 0 0 500px;
    height: 500px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.featured-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-card__cta {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.featured-card__cta-btn {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 900;
    color: var(--color-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.featured-card__cta-btn:hover {
    color: var(--color-primary);
}

/* ==========================================
   UNIFIED SECTION LAYOUT SYSTEM (Desktop)
   ========================================== */
.section-tickets,
.section-mitarbeiter,
.section-unterstuetzer,
.section-beter,
.section-outreach {
    padding: var(--spacing-3xl) 0;
}

.section-tickets__inner,
.section-mitarbeiter__inner,
.section-unterstuetzer__inner,
.section-beter__inner,
.section-outreach__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

/* Grid Layout */
.section-tickets__grid,
.section-mitarbeiter__grid,
.section-unterstuetzer__grid,
.section-beter__grid,
.section-outreach__grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Image Wrappers */
.section-tickets__image-wrapper {
    flex: 0 0 507px;
    position: relative;
}

.section-mitarbeiter__image-wrapper {
    flex: 0 0 580px;
    position: relative;
}

.section-unterstuetzer__image-wrapper {
    flex: 0 0 580px;
    position: relative;
}

.section-beter__image-wrapper {
    flex: 0 0 516px;
    position: relative;
}

.section-outreach__image-wrapper {
    flex: 0 0 486px;
    position: relative;
}

/* Content Wrappers */
.section-tickets__content,
.section-mitarbeiter__content,
.section-unterstuetzer__content,
.section-beter__content,
.section-outreach__content {
    flex: 1;
    min-width: 300px;
}

/* Images */
.section-tickets__image,
.section-mitarbeiter__image,
.section-unterstuetzer__image,
.section-beter__image,
.section-outreach__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* Specific Section Adjustments */
.section-tickets__content {
    padding-top: 40px;
}

.section-mitarbeiter__image {
    width: 484px;
    margin-left: 96px;
}

.section-mitarbeiter__content {
    padding-top: var(--spacing-lg);
}

.section-mitarbeiter__content p,
.section-unterstuetzer__content p,
.section-beter__content p,
.section-outreach__content p {
    margin-bottom: var(--spacing-sm);
}

.section-unterstuetzer__decoration {
    position: absolute;
    top: -60px;
    left: var(--content-padding);
    width: 170px;
    height: 182px;
    z-index: 5;
}

.section-unterstuetzer__donation-note {
    font-size: 10px;
    line-height: 1.4;
    margin-top: var(--spacing-md);
}

.section-beter__content,
.section-outreach__content {
    padding-top: var(--spacing-xl);
}

.bible-quote {
    color: var(--color-primary);
}

.bible-quote-ref {
    color: var(--color-primary);
    font-size: 12px;
}

.section-outreach__image {
    height: 587px;
    background-color: var(--color-dark);
}

/* Badges */
.section-tickets__badge {
    position: absolute;
    top: 10px;
    left: -60px;
    transform: scale(0.8);
    transform-origin: top left;
}

.section-mitarbeiter__badge {
    position: absolute;
    bottom: -70px;
    left: 10px;
    transform: scale(0.8);
    transform-origin: bottom left;
}

.section-unterstuetzer__badge {
    position: absolute;
    top: -70px;
    right: -70px;
    transform: scale(0.8);
    transform-origin: top right;
}

/* ==========================================
   IFRAME PLACEHOLDER
   ========================================== */
.iframe-placeholder {
    background-color: var(--color-accent);
    max-width: var(--max-width);
    margin: var(--spacing-xl) auto;
    height: 539px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iframe-placeholder__text {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 900;
    color: var(--color-light);
    text-align: center;
    line-height: 1.2;
}

/* ==========================================
   SECTION VIDEO
   ========================================== */
.section-video {
    position: relative;
    width: 100%;
    height: 774px;
    margin: var(--spacing-3xl) 0;
}

.section-video__bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.section-video__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-video__overlay-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.section-video__overlay-svg svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-video__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.section-video__frame-wrapper {
    position: relative;
}

.section-video__frame {
    width: 1000px;
    height: 562px;
    /* 16:9 aspect ratio */
    border-radius: var(--radius-lg);
    border: 5px solid var(--color-accent-light);
    overflow: hidden;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-video__frame:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.section-video__frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.section-video__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-video__badge {
    position: absolute;
    bottom: -70px;
    left: -70px;
    transform: scale(0.8);
    transform-origin: bottom left;
}

/* ==========================================
   SECTION NEWSLETTER
   ========================================== */
.section-newsletter {
    background-color: var(--color-accent);
    max-width: var(--max-width);
    margin: var(--spacing-xl) auto;
    height: 278px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-newsletter__text {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 900;
    color: var(--color-light);
    text-align: center;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    position: relative;
    background-color: var(--color-footer);
    color: var(--color-accent-light);
    padding-bottom: 0;
    margin-top: var(--spacing-3xl);
    overflow: hidden;
}

.footer__main-text {
    font-weight: 400;
    line-height: 0.8;
    text-transform: uppercase;
    display: flex;
    width: 105%;
    padding: 0;
    margin-bottom: -0.8vw;
    margin-left: -1.5%;
    pointer-events: none;
    position: relative;
    z-index: 1;
    font-size: 13.7vw;
}

.footer__marquee {
    background-color: var(--color-footer);
    padding: 18px var(--spacing-lg);
    font-size: 15px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    border-bottom: 4px solid var(--color-light);
}

.footer__marquee-text {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

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

    100% {
        transform: translateX(-50%);
    }
}

.footer__content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--spacing-xl) 0 var(--spacing-xl) 0;
    position: relative;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 130px;
    align-items: center;
}

/* Diakonissen Logo - Top Left */
.footer__logo-diakonissen {
    grid-column: 1;
    grid-row: 1;
    width: 151px;
    height: 56px;
    justify-self: start;
    align-self: start;
}

.footer__logo-diakonissen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* PJT Logo - Center */
.footer__logo-pjt {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 300px;
    height: auto;
    justify-self: center;
    align-self: center;
}

.footer__logo-pjt img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Social Media - Bottom Left */
.footer__social {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    justify-self: start;
    align-self: end;
}

.footer__social a {
    display: block;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.footer__social a:hover {
    transform: scale(1.2);
}

.footer__social img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Footer Links - Bottom Right */
.footer__links {
    grid-column: 3;
    grid-row: 2;
    display: flex;
    gap: var(--spacing-lg);
    justify-self: end;
    align-self: end;
}

.footer__links a {
    color: #bfd5ff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer__links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* Tablet (max-width: 1200px) */
@media (max-width: 1200px) {
    :root {
        --content-padding: 60px;
    }

    .featured-card {
        margin: 0 40px;
    }

    .featured-card__image {
        flex: 0 0 auto;
        height: 400px;
    }

    /* Make grids flexible on tablet */
    .section-tickets__grid,
    .section-mitarbeiter__grid,
    .section-unterstuetzer__grid,
    .section-beter__grid,
    .section-outreach__grid {
        gap: 40px;
    }

    /* Make image wrappers shrinkable */
    .section-tickets__image-wrapper,
    .section-mitarbeiter__image-wrapper,
    .section-unterstuetzer__image-wrapper,
    .section-beter__image-wrapper,
    .section-outreach__image-wrapper {
        flex: 1 1 50%;
        max-width: 50%;
        min-width: 0;
    }

    /* Reset specific image widths to be fluid */
    .section-mitarbeiter__image {
        width: 100%;
        margin-left: 0;
    }

    /* Ensure content takes other half */
    .section-tickets__content,
    .section-mitarbeiter__content,
    .section-unterstuetzer__content,
    .section-beter__content,
    .section-outreach__content {
        flex: 1 1 50%;
    }

    /* Increase video frame width on tablet */
    .section-video {
        height: auto;
        padding: 40px 0;
    }

    .section-video__frame {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    /* Ensure outreach image is visible even if empty */
    .section-outreach__image {
        min-height: 300px;
        background-color: var(--color-dark);
    }

    .footer__content {
        padding: var(--spacing-xl);
    }

    /* Footer Grid Adjustments for Tablet */
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: var(--spacing-lg);
    }

    .footer__logo-diakonissen {
        grid-column: 1;
        grid-row: 1;
    }

    .footer__logo-pjt {
        grid-column: 1 / span 2;
        grid-row: 2;
        width: 300px;
    }

    .footer__social {
        grid-column: 1;
        grid-row: 3;
    }

    .footer__links {
        grid-column: 2;
        grid-row: 3;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --content-padding: 24px;
    }

    .featured-card {
        flex-direction: column;
    }

    /* Stack everything */
    .section-tickets__grid,
    .section-mitarbeiter__grid,
    .section-unterstuetzer__grid,
    .section-beter__grid,
    .section-outreach__grid {
        flex-direction: column;
        gap: 30px;
    }

    /* Reset widths for full width stacking */
    .section-tickets__image-wrapper,
    .section-mitarbeiter__image-wrapper,
    .section-unterstuetzer__image-wrapper,
    .section-beter__image-wrapper,
    .section-outreach__image-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .section-tickets__content,
    .section-mitarbeiter__content,
    .section-unterstuetzer__content,
    .section-beter__content,
    .section-outreach__content {
        flex: 0 0 auto;
        width: 100%;
    }

    .churchtools-embed iframe {
        height: 1720px;
    }

    .hero__title {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .hero__date {
        font-size: 18px;
    }

    .heading-title {
        font-size: 24px;
    }

    .heading-title--large {
        font-size: 28px;
    }

    .section-video {
        height: 400px;
    }

    .section-video__frame {
        width: 100%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 16/9;
    }

    .iframe-placeholder {
        height: 300px;
    }

    .iframe-placeholder__text {
        font-size: 24px;
    }

    .btn-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-card__cta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .footer__grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer__logo-diakonissen,
    .footer__logo-pjt,
    .footer__social,
    .footer__links {
        grid-column: auto;
        grid-row: auto;
        justify-self: center;
        align-self: center;
    }

    .footer__logo-pjt {
        width: 250px;
    }

    .circle-badge {
        transform: scale(0.7);
    }

    .section-newsletter {
        height: 200px;
        margin: var(--spacing-lg) var(--content-padding);
    }

    .section-newsletter__text {
        font-size: 28px;
    }

    .section-mitarbeiter__badge {
        bottom: -70px;
        left: -60px;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {

    .skip-link,
    .footer__social,
    .circle-badge,
    .iframe-placeholder,
    .section-video {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .footer {
        background: white;
        color: black;
    }

    .footer__main-text {
        color: black;
    }
}

/* ==========================================
   MODAL / LIGHTBOX
   ========================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal--active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.modal__content {
    position: relative;
    background: #FFFCF1;
    border-radius: var(--radius-md);
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: var(--spacing-xl);
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

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

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: var(--color-dark);
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__close:hover {
    color: var(--color-primary);
    transform: rotate(90deg);
}

.modal__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: var(--spacing-lg);
    padding-right: 40px;
    line-height: 1.04;
    letter-spacing: 0;
}

.modal__subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-dark);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    line-height: 1.04;
    letter-spacing: 0;
}

.modal__body {
    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: 0;
}

.modal__body p {
    margin-bottom: var(--spacing-md);
}

.modal__body p:last-child {
    margin-bottom: 0;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal__content {
        width: 95%;
        padding: var(--spacing-lg);
        max-height: 90vh;
    }

    .modal__title {
        font-size: 20px;
        padding-right: 30px;
    }

    .modal__close {
        top: 15px;
        right: 15px;
        font-size: 28px;
    }
}

.modal--wide .modal__content {
    max-width: 1400px;
}

/* ==========================================
   CHURCHTOOLS EMBED
   ========================================== */
.churchtools-embed {
    background-color: var(--color-light);
    border-radius: 20px;
    padding: 20px;
    margin: 0 auto;
    text-align: center;
    margin-top: var(--spacing-xl);
}

.churchtools-embed iframe {
    max-width: 800px;
    border-radius: 20px;
}

#spenden-formular {
    margin: 0 auto;
    text-align: center;
}

#spenden-formular iframe {
    max-width: 800px;
    border-radius: 20px;
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
a:focus,
button:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 0 0 4px 0;
    z-index: 1000;
}

.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}