/* ========================================
   PUSTEBLUME KINDERGARTEN – MODERNE WEBSITE
   ======================================== */

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

:root {
    /* Hydrangea Farbschema */
    --rose: #FF8DA1;
    --rose-light: #FFB3C1;
    --peach: #FFC2BA;
    --peach-light: #FFE0DB;
    --fuchsia: #FF9CE9;
    --fuchsia-light: #FFC4F5;
    --violet: #AD56C4;
    --violet-dark: #8B3FA3;
    --violet-light: #C97FD6;

    /* Farben */
    --blue-dark: #AD56C4;
    --blue-medium: #8B3FA3;
    --blue-light: #FF9CE9;
    --blue-text: #4A3050;
    --orange: #FF8DA1;
    --orange-light: #FFC2BA;
    --orange-warm: #FFB3C1;
    --white: #ffffff;
    --off-white: #FFF9FB;
    --gray-light: #FFF0F3;
    --gray-medium: #8B7080;
    --gray-dark: #3D2040;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s ease;

    /* Typografie */
    --font-primary: 'Quicksand', 'Segoe UI', sans-serif;
    --font-heading: 'Nunito', 'Segoe UI', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--blue-text);
    background-color: var(--white);
    line-height: 1.7;
    text-align: justify;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 140px;
}

.logo {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-right: 20px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--blue-dark);
}

.logo-img {
    width: 334px;
    height: auto;
    border-radius: 6px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}

.nav-link {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--blue-dark);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    background: var(--rose);
    color: var(--white);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--blue-dark);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--blue-dark);
    transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* === HERO BANNER === */
.hero-banner {
    position: relative;
    height: 600px;
    margin-top: 90px;
    overflow: hidden;
}

.banner-slideshow {
    position: absolute;
    inset: 0;
}

.banner-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.banner-slide.active {
    opacity: 1;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(173, 86, 196, 0.7) 0%,
        rgba(255, 141, 161, 0.5) 50%,
        rgba(255, 194, 186, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
}

.maus-logo {
    font-family: var(--font-heading);
    color: var(--white);
    text-shadow: 0 4px 16px rgba(0,0,0,0.3);
    margin-bottom: 24px;
}
.maus-logo-float {
    display: block;
    font-size: 3.3rem;
    font-weight: 800;
    animation: float 3s ease-in-out infinite;
}
.maus-logo-sub {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-title span {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--peach);
    margin-top: 8px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* === SECTIONS === */
section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--violet);
    text-align: center;
    margin-bottom: 16px;
}

/* === WELCOME SECTION === */
.welcome-section {
    background: var(--white);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
    max-width: 800px;
    margin: 0 auto;
}

.welcome-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--violet);
    margin-bottom: 20px;
}

.welcome-intro {
    font-size: 1.1rem;
    color: var(--blue-text);
    line-height: 1.8;
}

.acronym-card {
    background: linear-gradient(135deg, var(--violet) 0%, var(--rose) 100%);
    border-radius: var(--radius-lg);
    padding: 36px;
    color: var(--white);
}

.acronym-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 24px;
    text-align: center;
    color: var(--fuchsia);
}

.acronym-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.acronym-list li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--fuchsia);
    color: var(--white);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* === TAG DER OFFENEN TÜR === */
.open-door-section {
    background: var(--gray-light);
}

.open-door-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    gap: 36px;
    align-items: center;
    box-shadow: var(--shadow-md);
    border-left: 6px solid var(--rose);
}

.open-door-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--fuchsia) 0%, var(--rose) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.open-door-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.open-door-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--violet);
    margin-bottom: 12px;
}

.open-door-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rose);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
}

.open-door-note {
    margin-top: 16px;
    font-style: italic;
    color: var(--rose);
}

.open-door-note i {
    margin-right: 8px;
}

/* === QUICK ACCESS SECTION === */
.quick-access-section {
    background: var(--white);
    padding: 40px 24px 60px;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.access-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.access-card:hover {
    border-color: var(--rose);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.access-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--fuchsia) 0%, var(--violet) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.access-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--violet);
}

.access-card p {
    font-size: 0.95rem;
    color: var(--gray-medium);
    text-align: center;
}

/* === GALLERY PREVIEW === */
.gallery-preview-section {
    background: var(--gray-light);
}

.gallery-subtitle {
    text-align: center;
    color: var(--gray-medium);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1;
}

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

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(173,86,196,0.8));
    color: var(--white);
    padding: 32px 16px 16px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* === FOOTER === */
.footer {
    background: var(--violet);
    color: var(--white);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    width: 334px;
    height: auto;
    margin-bottom: 16px;
    border-radius: 8px;
}

/* === ZITAT === */
.family-quote {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border: 3px solid var(--rose);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    position: relative;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.family-quote .quote-icon {
    font-size: 4rem;
    color: var(--rose);
    line-height: 1;
    margin-bottom: 16px;
}
.family-quote p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--blue-text);
    font-style: italic;
}

.footer-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.footer-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}

.footer-info i {
    color: var(--fuchsia);
    width: 18px;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--fuchsia);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 6px;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.instagram-link:hover {
    color: var(--orange-light);
}

.instagram-link i {
    font-size: 1.4rem;
}

.footer-bottom {
    margin-top: 48px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 4px;
    }
    .nav-link {
        padding: 8px 12px;
        font-size: 0.88rem;
    }
    .welcome-grid {
        grid-template-columns: 1fr;
    }
    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transition: right 0.35s ease;
        align-items: stretch;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-link {
        padding: 14px 16px;
        font-size: 1.05rem;
        border-radius: var(--radius-sm);
    }
    .hero-banner {
        height: 350px;
        margin-top: 80px;
    }
    .hero-content {
        padding: 0 16px;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-title span {
        font-size: 1rem;
    }
    .maus-logo-float {
        font-size: 1.8rem;
    }
    .maus-logo-sub {
        font-size: 0.85rem;
    }
    .hero-subtitle {
        font-size: 0.85rem;
    }
    .banner-slide {
        background-size: cover;
        background-position: center;
    }
    .welcome-section {
        padding: 40px 0;
    }
    .welcome-grid {
        max-width: 100%;
        margin: 0;
    }
    .acronym-card {
        padding: 20px 16px;
        border-radius: 0;
    }
    .acronym-card h3 {
        text-align: left;
        font-size: 0.95rem;
    }
    .acronym-list li {
        font-size: 0.65rem;
        margin-bottom: 4px;
        display: flex;
        align-items: baseline;
        gap: 2px;
        text-align: left;
    }
    .letter {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
    .foto-grid {
        grid-template-columns: 1fr;
    }
    .foto-grid img {
        height: 200px;
    }
    .open-door-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    .quick-access-grid {
        grid-template-columns: 1fr;
    }
    .gallery-preview-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item.large {
        grid-column: span 2;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .acronym-card {
        padding: 16px;
    }
    .acronym-card h3 {
        text-align: left;
        font-size: 0.9rem;
    }
    .acronym-list li {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 300px;
        margin-top: 70px;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-title span {
        font-size: 0.9rem;
    }
    .maus-logo-float {
        font-size: 1.5rem;
    }
    .maus-logo-sub {
        font-size: 0.75rem;
    }
    .hero-subtitle {
        font-size: 0.75rem;
    }
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* === PUSTEBLUMEN-SCHIRMCHEN (ORANGE) === */
.pusteblume-decoration {
    position: relative;
}

.pusteblume-decoration::after {
    content: '✿';
    color: var(--orange);
    font-size: 1.5rem;
    position: absolute;
    opacity: 0.3;
}
