/* =========================
FONTS
========================= */

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/CormorantGaramond-Medium.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Dancing Script';
    src: url('fonts/DancingScript-Regular.ttf') format('truetype');
    font-display: swap;
}

/* =========================
 RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* =========================
 ROOT VARIABLES
========================= */

:root {
    --bg: rgba(230, 204, 178, 0.85);
    --text: #2d2d2d;
    --accent: #b08968;
    --hover: #7f5539;
    --card-bg: rgba(247, 241, 235, 0.95);
    --space-s: clamp(10px, 2vw, 20px);
    --space-m: clamp(20px, 4vw, 40px);
    --space-l: clamp(40px, 6vw, 80px);
}

/* =========================
BASE TYPOGRAPHY
========================= */

body {
    font-family: "Candara", sans-serif;
    color: var(--text);
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 320px;
}

/* HEADINGS */

h1,
h2 {
    font-family: 'Dancing Script', cursive;
    color: var(--hover);
}

h1 {
    font-size: clamp(28px, 5vw, 54px);
}

h2 {
    font-size: clamp(22px, 4vw, 34px);
}

h3 {
    font-size: clamp(16px, 3vw, 24px);
}

/* INTRO */

.intro h1 {
    margin-bottom: 20px;
    color: var(--hover);
}

.intro p {
    font-family: "Candara", sans-serif;
    font-size: clamp(15px, 2vw, 18px);
    max-width: 600px;
    margin: auto;
}

/* TEXT */

.text-block p {
    font-family: "Candara", sans-serif;
    font-size: clamp(15px, 1.7vw, 18px);
}

/* QUOTE */

.quote {
    max-width: 1100px;
    margin: auto;
}

.quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(15px, 3vw, 25px);
    line-height: 1.2;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--hover);
    opacity: 0.95;
    text-align: center;
    text-shadow:
        0 4px 18px rgba(0,0,0,0.08);
}

/* SUBTITLE */

.subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(15px, 2vw, 18px);
    opacity: 0.8;
    margin-top: 10px;
    letter-spacing: 0.5px;
    font-style: italic;
}

/* VALUES */

.values p {
    font-family: "Candara", sans-serif;
    color: var(--hover);
    font-size: clamp(12px, 2vw, 18px);
    letter-spacing: 1.5px;
    margin-top: 20px;
}

/* =========================
LAYOUT
========================= */

/* ABOUT LAYOUT */

.about-content {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(20px, 5vw, 60px);
    flex-wrap: wrap;
}
/* =========================
NAVIGATION
========================= */

.navbar {
    position: sticky;
    top: 0;
    background: var(--bg);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px clamp(15px, 4vw, 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */

.logo img {
    height: clamp(45px, 6vw, 65px);
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* NAV LINKS */

.nav {
    list-style: none;
    display: flex;
    gap: clamp(15px, 3vw, 35px);
}

.nav a {
    font-family: "Candara", sans-serif;
    text-decoration: none;
    color: var(--text);
    font-size: clamp(15px, 1.2vw, 18px);
    position: relative;
    transition: color 0.3s ease;
}

/* UNDERLINE */

.nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a:hover {
    color: var(--hover);
}

/* =========================
 DROPDOWN
========================= */

.dropdown {
    position: relative;
}

/* HOVER BRÜCKE */

.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 18px;
}

/* DROPDOWN MENU */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 0;
    min-width: 280px;
    list-style: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(15px) scale(0.98);
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

/* HOVER */

.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* ITEMS */

.dropdown-menu li {
    padding: 10px 20px;
    transition: background 0.2s ease;
}

.dropdown-menu li:hover {
    background: rgba(0,0,0,0.04);
}

/* ARROW */

.arrow {
    display: inline-block;
    margin-left: 6px;
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--text);
    border-bottom: 2px solid var(--text);
    transform: rotate(45deg);
    transition: transform 0.3s ease 0.08s;
}

.dropdown:hover .arrow {
    transform: rotate(-135deg);
}

/* =========================
BURGER MENU
========================= */

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
}

.burger span {
    width: 26px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: 0.3s;
}

/* BURGER ANIMATION */

.burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px,-6px);
}

/* =========================
HERO SECTION
========================= */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-l);
    padding-top: clamp(60px, 8vw, 120px);
}

/* =========================
 CARDS
========================= */

.card {
    width: 100%;
    max-width: clamp(320px, 90vw, 850px);
    padding: clamp(20px, 4vw, 40px);
    text-align: center;
    background: var(--card-bg);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    position: relative;
}

/* =========================
ABOUT / FÜR DICH TEXT
========================= */

.about-text {
    max-width: 700px;
    text-align: center;

    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin: 0 auto;
}

.about-text h2 {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 15px;
}

.about-text p {
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.8;
    margin-bottom: 18px;
    opacity: 0.9;
}
/* =========================
 TEXT BLOCK
========================= */

.text-block h2 {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(26px, 4vw, 42px);
    color: var(--hover);
    margin-bottom: 20px;
}

.text-block p {
    font-family: "Candara", sans-serif;
    font-size: clamp(15px, 1.7vw, 18px);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 18px;
    padding: 0 10px;
    opacity: 0.92;
}

/* ZWISCHENÜBERSCHRIFT */

.sub-heading {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(20px, 3vw, 30px);
    color: var(--hover);
    margin-top: 30px;
    margin-bottom: 10px;
}

.script-heading {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(26px, 4vw, 42px);
    color: var(--hover);
}

/* TOP LINE */

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 2px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    background: linear-gradient(
        to right,
        transparent,
        var(--accent),
        transparent
    );

    transition: transform 0.8s ease;
    opacity: 0.8;
}

.card.show::before {
    transform: translateX(-50%) scaleX(1);
}

.card:hover {
    transform: translateY(-5px);
}

/* =========================
 IMAGE CARD
========================= */

.image-card img {
       width: 100%;
    max-width: clamp(220px, 60vw, 480px);
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    margin: 0 auto 20px;
}

/* =========================
 BEGLEITUNG INTRO
========================= */

.intro-image {
    width: 100%;
    max-width: clamp(220px, 80vw, 400px);
    height: auto;
    margin: 20px auto 50px;
    display: block;
    border-radius: 20px;
    box-shadow:
        0 15px 35px rgba(0,0,0,0.1);
}

/* ZITAT */

.quote-text {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(18px, 2.6vw, 25px);
    line-height: 1.4;
    letter-spacing: 0.5px;
    color: var(--hover);
    opacity: 0.9;
    max-width: 700px;
    margin:  0 auto 20px;
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 10px;
}

.quote-text::before {
    content: "“";
    display: block;
    font-size: 60px;
    opacity: 0.15;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);

}

/* ABOUT / FÜR DICH IMAGE */

.about-text img {
    width: 100%;
    max-width: 420px;
    height: auto;
    aspect-ratio: 3 / 4;

    display: block;
    margin: 20px auto 30px;

    border-radius: 24px;

    object-fit: cover;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.08),
        0 22px 55px rgba(0,0,0,0.10);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

/* IMAGE HOVER */

@media (hover: hover) {

    .about-text img:hover {

        transform: scale(1.02);

        box-shadow:
            0 18px 45px rgba(0,0,0,0.12),
            0 28px 70px rgba(0,0,0,0.14);
    }
}

/* =========================
 VALUES
========================= */

.values {
    text-align: center;
}

/* =========================
 FEATURES BOX
========================= */

.features-box {
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
    gap: 15px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

/* FEATURE */

.feature {
    background: rgba(255,255,255,0.6);
    padding: 14px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    box-shadow:
        0 6px 18px rgba(0,0,0,0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.feature::before {
    content: "✦";
    color: var(--accent);
    margin-right: 10px;
}

/* TEXT */

.feature span {
    font-family: "Candara", sans-serif;
    font-size: clamp(15px, 1.5vw, 18px);
}

/* HOVER */

.feature:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 25px rgba(0,0,0,0.08);
}
/* =======================
VIDEO CARD 
==========================*/

.video-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-card h2 {
    font-family: "Dancing Script", cursive;
    font-size: clamp(28px, 4vw, 46px);
    color: var(--hover);
    margin-bottom: 25px;
}

.video-card video {
    width: clamp(280px, 75vw, 650px);
    max-width: 650px;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    display: block;
    margin: 0 auto;
}

/* =========================
ANGEBOTE
========================= */

/* TITLE */
.offers-title {
    margin-top: 40px;
}

.offers-title h1 {
    font-size: clamp(32px, 5vw, 54px);
}

/* GRID */
.offers-grid {
    width: 100%;
    max-width: 950px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 4vw, 35px);
    margin: 0 auto 60px;
}

/* CARD */
.offer-card {
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* IMAGE */
.offer-card img {
    width: 100%;
    max-width: 260px;
    height: auto;
    border-radius: 20px;
    margin-bottom: 18px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
}

/* TEXT */
.offer-card h2 {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--hover);
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    text-align: center;
    line-height: 1.3;
}

/* UNDERLINE */
.offer-card h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

/* HOVER */
.offer-card:hover h2::after {
    width: 100%;
}

.offer-card:hover img {
    transform: scale(1.04);
}

/* =========================
 CTA BUTTON
========================= */

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: var(--accent);
    color: #ffffff;
    font-family: "Candara", sans-serif;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 30px;
    box-shadow:
        0 8px 20px rgba(176,137,104,0.25);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* HOVER */

.cta-button:hover {
    background: var(--hover);
    transform: translateY(-2px);
    box-shadow:
        0 12px 25px rgba(127,85,57,0.3);
}

/* ACTIVE */

.cta-button:active {
    transform: translateY(0);
    box-shadow:
        0 6px 15px rgba(0,0,0,0.2);
}
/* =========================
FOOTER
========================= */

.footer {
    margin-top: var(--space-l);
    padding: 50px 20px 30px;
    text-align: center;
    background: #f7f1eb;
    position: relative;
}

/* LINE */

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: rgba(0,0,0,0.08);
}

.footer nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer a {
    position: relative;
    text-decoration: none;
    color: var(--text);
    padding: 5px 0;
    transition: color 0.3s ease;
}

/* FOOTER UNDERLINE */

.footer a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.footer a:hover {
    color: var(--hover);
}

.footer a:hover::after {
    width: 100%;
}

/* =========================
 ANIMATIONS
========================= */

.fade-in,
.fade-left,
.fade-right {
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.32s ease-out,
        transform 0.32s ease-out;

    will-change: opacity, transform;
}

.fade-in.show,
.fade-left.show,
.fade-right.show {
    opacity: 1;

    transform: translateY(0);
}

/* DELAYS */

.delay-1 {
    transition-delay: .15s;
}

.delay-2 {
    transition-delay: .3s;
}

.delay-3 {
    transition-delay: .45s;
}

/* =========================
 EINZELBERATUNG PAGE
========================= */

.einzelberatung-page .text-block p {
    max-width: 720px;
}

.contact-box {
    text-align: center;
}

.contact-box h2 {
    margin-bottom: 20px;
}

/* =========================
 FORM ELEMENT FIX
========================= */

input,
textarea,
button {
    font: inherit;
}

/* =========================
KONTAKTSEITE
========================= */

/* HERO */

.contact-hero {
    text-align: center;
}

.contact-hero h1 {
    margin-bottom: 20px;
}

.contact-intro {

    max-width: 650px;

    margin: 0 auto 35px;

    font-size: clamp(15px, 1.8vw, 18px);

    line-height: 1.8;

    opacity: 0.9;
}

/* BILD */

.contact-hero img {

    width: 100%;
    max-width: 520px;
    aspect-ratio: 3 / 4;

    height: auto;

    display: block;

    margin: 0 auto;

    border-radius: 24px;

    object-fit: cover;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.08),
        0 25px 70px rgba(0,0,0,0.10);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.contact-hero img:hover {

    transform: scale(1.02);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.12),
        0 30px 80px rgba(0,0,0,0.14);
}

/* FORMULAR */

.contact-form-card h2 {

    margin-bottom: 30px;
}

/* FORM */

.contact-form {

    width: 100%;
    max-width: 700px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;

    gap: 30px;
}

/* FORM GROUP */

.form-group {
    position: relative;
}

/* INPUTS */

.form-group input,
.form-group textarea {

    width: 100%;

    padding: 18px 14px 12px;

    background: transparent;

    border: none;

    border-bottom: 2px solid rgba(0,0,0,0.12);

    font-size: 17px;

    color: var(--text);

    outline: none;

    transition: border-color 0.3s ease;
}

/* TEXTAREA */

.form-group textarea {

    resize: vertical;

    min-height: 140px;
}

/* FOCUS */

.form-group input:focus,
.form-group textarea:focus {

    border-bottom-color: var(--accent);
}

/* LABEL */

.form-group label {

    position: absolute;

    top: 16px;
    left: 14px;

    font-size: 15px;

    opacity: 0.6;

    pointer-events: none;

    transition: all 0.3s ease;
}

/* FLOAT LABEL */

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {

    top: -10px;

    font-size: 12px;

    color: var(--accent);

    opacity: 1;
}

/* DATENSCHUTZ */

.privacy-box {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    text-align: left;
}

.privacy-box input {

    margin-top: 4px;

    accent-color: var(--accent);

    transform: scale(1.1);
}

.privacy-box label {

    font-size: 14px;

    line-height: 1.6;
}

.privacy-box a {

    color: var(--accent);

    text-decoration: underline;

    transition: color 0.3s ease;
}

.privacy-box a:hover {

    color: var(--hover);
}

/* BUTTON */

.contact-form .cta-button {

    align-self: center;
}

/* HONEYPOT */

.hidden-field {

    display: none;
}

/* =========================
 NATURSPIELZEIT PAGE
========================= */

.naturspielzeit-page .text-block h2 {
    line-height: 1.4;
}

.naturspielzeit-page .text-block p {
    max-width: 720px;
}

.naturspielzeit-page .contact-box {
    text-align: center;
}

.naturspielzeit-page .contact-box p {
    margin-bottom: 20px;
}

.magic-image {
    width: 100%;
    max-width: clamp(220px, 80vw, 400px);
    height: auto;
    aspect-ratio: 3 / 4;

    display: block;

    margin: 10px auto 30px;

    border-radius: 24px;

    object-fit: cover;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.08),
        0 20px 60px rgba(0,0,0,0.10);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease,
        filter 0.5s ease;
}

.magic-image:hover {

    transform: scale(1.02);

    filter: brightness(1.03);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.12),
        0 30px 80px rgba(0,0,0,0.14);
}

/* =========================
IMPRESSUM PAGE
========================= */

.impressum-page {
    padding-inline: 20px;
}

/* GRID */

.impressum-grid {

    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}

/* BLOCK */

.impressum-block {

    background: rgba(255,255,255,0.55);

    border-radius: 18px;

    padding: 28px;

    text-align: left;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.04);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.impressum-block:hover {

    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.08);
}

/* TITEL */

.impressum-block h2,
.legal-section h2 {

    font-family: 'Dancing Script', cursive;

    font-size: clamp(26px, 3vw, 40px);

    color: var(--hover);

    margin-bottom: 18px;

    line-height: 1.3;
}

/* TEXT */

.impressum-block p,
.legal-section p {

    font-family: "Candara", sans-serif;

    font-size: clamp(15px, 1.6vw, 17px);

    line-height: 1.9;

    margin-bottom: 16px;

    opacity: 0.92;

    overflow-wrap: break-word;

    word-break: break-word;
}

/* LINKS */

.impressum-block a,
.legal-section a {

    color: var(--accent);

    text-decoration: none;

    transition: color 0.3s ease;
}

.impressum-block a:hover,
.legal-section a:hover {

    color: var(--hover);
}

/* LEGAL */

.legal-card {

    text-align: left;
}

.legal-section {

    margin-bottom: 50px;
}

/* STAND */

.legal-stand {

    text-align: center;

    margin-top: 10px;

    font-size: 14px;

    opacity: 0.7;

    letter-spacing: 0.5px;
}

/* =========================
DATENSCHUTZ / LEGAL PAGE
========================= */

.legal-page {
    padding-inline: 20px;
}

/* HEADER */

.legal-header {
    text-align: center;
}

/* CONTENT */

.legal-content {
    text-align: left;
}

/* SECTION */

.legal-section {
    margin-bottom: 50px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

/* TITLES */

.legal-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(26px, 4vw, 40px);
    color: var(--hover);
    margin-bottom: 20px;
    line-height: 1.3;
}

/* TEXT */

.legal-section p {
    font-family: "Candara", sans-serif;
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.9;
    margin-bottom: 18px;
    opacity: 0.92;
}

/* LINKS */

.legal-section a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--hover);
}

/* LIST */

.legal-list {
    padding-left: 22px;
    margin-top: 15px;
}

.legal-list li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* COOKIE TABLE */

.cookie-table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.55);
    border-radius: 16px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.cookie-table th {
    background: rgba(176,137,104,0.12);
    color: var(--hover);

}

/* =========================
TERMINE PAGE
========================= */

/* INTRO */

.intro-card p {
    max-width: 650px;
    margin: 0 auto;
}

/* TITLES */

.special-card h2,
.support-card h2,
.astro-card h2,
.events-card h2 {
    margin-bottom: 25px;
}

/* IMAGES */

.special-card img,
.support-card img,
.astro-card img,
.event-item img {

    width: 100%;
    max-width: 380px;
    height: auto;
    aspect-ratio: 3 / 4;

    display: block;

    margin: 0 auto 25px;

    border-radius: 20px;

    object-fit: cover;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.08),
        0 20px 60px rgba(0,0,0,0.10);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

/* IMAGE HOVER */

@media (hover: hover) {

    .special-card img:hover,
    .support-card img:hover,
    .astro-card img:hover,
    .event-item img:hover {

        transform: scale(1.02);

        box-shadow:
            0 18px 40px rgba(0,0,0,0.12),
            0 30px 80px rgba(0,0,0,0.14);
    }
}

/* TEXT */

.special-card p,
.support-card p,
.astro-card p {
    max-width: 680px;
    margin: 0 auto 25px;
}

/* INSTAGRAM BUTTON */

.instagram-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;
}

.instagram-btn svg {

    transition: transform 0.3s ease;
}

.instagram-btn:hover svg {

    transform: scale(1.08);
}

/* EVENTS */

.events-card {

    max-width: 950px;
}

.event-wrapper {

    display: flex;
    flex-direction: column;

    gap: 50px;
}

.event-item {

    display: grid;

    grid-template-columns:
        300px
        220px
        1fr;

    gap: 50px;

    align-items: center;
}

/* EVENT IMAGE */

.event-image img {

    width: 100%;

    max-width: 320px;

    border-radius: 20px;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.08);
}

.event-image img:hover {

    transform: scale(1.02);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.12);
}

/* EVENT INFO */

.event-info h3,
.event-description h3 {

    margin-bottom: 15px;
}

.event-info ul {

    list-style: none;

    padding: 0;
}

.event-info li {

    margin-bottom: 12px;

    line-height: 1.7;
}

/* EVENT DESCRIPTION */

.event-description p {

    margin-bottom: 15px;

    line-height: 1.8;
}

/* LIGHTBOX */

.lightbox {

    display: none;

    position: fixed;

    inset: 0;

    z-index: 9999;

    background: rgba(0,0,0,0.88);

    justify-content: center;
    align-items: center;

    padding: 20px;
}

.lightbox-content {

    max-width: 90%;
    max-height: 85%;

    border-radius: 20px;

    animation: zoomIn 0.35s ease;
}

.close {

    position: absolute;

    top: 25px;
    right: 35px;

    background: transparent;
    border: none;

    color: #ffffff;

    font-size: 42px;

    line-height: 1;

    cursor: pointer;
}

/* LIGHTBOX ANIMATION */

@keyframes zoomIn {

    from {

        opacity: 0;
        transform: scale(0.9);
    }

    to {

        opacity: 1;
        transform: scale(1);
    }
}
/* =========================
   MEDIA QUERIES
========================= */

/* MOBILE */

@media (max-width: 768px) {

    .burger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: 0.4s ease;
    }

    .nav.active {
        max-height: 90vh;
        overflow-y: auto;
        padding: 20px 0;
    }

    .dropdown::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        transform: none;
        transition: max-height 0.4s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .hero {
        padding: 90px 15px 50px;
        gap: 40px;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }
     .about-text p {
        font-size: 15px;
    }

    .about-text img {
        max-width: 100%;
    }

    .quote p {
        font-size: 24px;
        line-height: 1.6;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offer-card img {
        max-width: 100%;
    }

    /* BEGLEITUNG MOBILE */

    .intro-image {
        max-width: 100%;
    }

    .quote-text {
        font-size: 18px;
        line-height: 1.6;
    }

    .feature {
        padding: 12px 14px;
    }

    .feature span {
        font-size: 15px;
    }

    
    /* =========================
    TERMINE MOBILE
    ========================= */

    .event-item {

    grid-template-columns: 1fr;

    gap: 25px;

    text-align: center;
}
    .event-item img {

        max-width: 280px;
    }

    .special-card img,
    .support-card img,
    .astro-card img {

        max-width: 320px;
    }

    .lightbox-content {

        max-width: 95%;
    }

    .close {

        top: 15px;
        right: 20px;

        font-size: 34px;
    }

    /* =========================
    KONTAKT MOBILE
    ========================= */
    .contact-form {
        gap: 24px;
    }

    .contact-hero img {
        max-width: 320px;
    }

    .privacy-box label {
        font-size: 13px;
    }

/* =========================
IMPRESSUM MOBILE
========================= */

    .impressum-grid {

        grid-template-columns: 1fr;

        gap: 20px;
    }

    .impressum-block {

        padding: 22px;
    }

    .legal-card {

        padding: 25px 20px;
    }

    .legal-section {

        margin-bottom: 40px;
    }

    .legal-section h2 {

        text-align: center;
    }

    .legal-section h3 {

    font-family: "Candara", sans-serif;

    font-size: clamp(18px, 2.5vw, 24px);

    color: var(--hover);

    margin-top: 30px;
    margin-bottom: 12px;

    font-weight: 600;
    }

    .legal-section p {

        text-align: left;
    }

/* =========================
DATENSCHUTZ MOBILE
========================= */

    .legal-section {
        margin-bottom: 40px;
    }

    .legal-section h2 {
        text-align: center;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 12px;
        font-size: 14px;
    }


/* =========================
RESPONSIVE SAFETY
========================= */

    img,
    video {
        max-width: 100%;
        height: auto;
    }

    iframe {
        max-width: 100%;
        border: 0;
    }

}

/* TABLET */

@media (min-width: 769px) and (max-width: 1100px) {

    .nav {
        gap: 25px;
    }

    .hero {
        padding: 100px 30px 60px;
    }

    .card {
        max-width: 700px;
    }
}

/* SMALL DESKTOP */

@media (max-width: 900px) {

    .nav {
        gap: 15px;
    }
}
