/* =========================================================
   MŠ ZLOBICE — Design System
   Koncept: Hravá zahrádka, ručně kreslená estetika
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500;600;700&family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,700;0,9..144,900;1,9..144,600&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
    /* Paleta — teplé, přírodní, dětské */
    --honey: #F4B860;          /* medová žlutá */
    --honey-deep: #E89B3D;
    --leaf: #7BB369;           /* listová zelená */
    --leaf-deep: #5A9447;
    --berry: #E8616B;          /* jahodová červená */
    --berry-deep: #C8424C;
    --sky: #7CC4E0;            /* blankyt */
    --sky-deep: #4A9DC0;
    --cream: #FFF8EC;          /* krémové pozadí */
    --cream-warm: #FCEFD4;
    --paper: #FFFCF5;
    --ink: #3D2817;            /* tmavá hnědá místo černé */
    --ink-soft: #6B4F35;
    --plum: #8E5A8E;           /* doplňková slivová */
    
    /* Stíny — měkké, jako z papíru */
    --shadow-sm: 0 2px 0 rgba(61, 40, 23, 0.12);
    --shadow-md: 0 4px 0 rgba(61, 40, 23, 0.15), 0 8px 16px rgba(61, 40, 23, 0.08);
    --shadow-lg: 0 6px 0 rgba(61, 40, 23, 0.18), 0 12px 28px rgba(61, 40, 23, 0.12);
    
    /* Rádia — organické, nepravidelné */
    --r-sm: 12px;
    --r-md: 22px;
    --r-lg: 36px;
    --r-blob: 62% 38% 55% 45% / 50% 60% 40% 50%;
    --r-blob-2: 38% 62% 45% 55% / 60% 50% 50% 40%;
    
    /* Typografie */
    --font-display: 'Caveat', cursive;
    --font-heading: 'Fraunces', Georgia, serif;
    --font-body: 'Quicksand', system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 10%, rgba(244, 184, 96, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(124, 196, 224, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(123, 179, 105, 0.08) 0%, transparent 40%);
    background-attachment: fixed;
}

/* Jemný zrnitý overlay pro papírovou texturu */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.24 0 0 0 0 0.16 0 0 0 0 0.09 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

/* =========================================================
   HLAVIČKA / NAVIGACE
   ========================================================= */

.site-header {
    position: relative;
    z-index: 50;
    padding: 24px 5vw 16px;
    background: var(--paper);
    border-bottom: 3px dashed var(--honey);
}

.site-header::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 0;
    right: 0;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 14' preserveAspectRatio='none'%3E%3Cpath d='M0,0 Q15,14 30,7 T60,0 L60,0 L0,0 Z' fill='%23FFFCF5'/%3E%3C/svg%3E");
    background-size: 60px 14px;
    background-repeat: repeat-x;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--ink);
}

.brand-mark {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand:hover .brand-mark {
    transform: rotate(-12deg) scale(1.08);
}

.brand-text h1 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 700;
    line-height: 0.95;
    color: var(--ink);
    letter-spacing: 0.5px;
}

.brand-text h1 .accent {
    color: var(--berry);
    display: inline-block;
    transform: rotate(-3deg);
}

.brand-text small {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-top: 2px;
    letter-spacing: 0.3px;
}

/* Navigace */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.main-nav a {
    position: relative;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--r-sm);
    transition: all 0.25s ease;
}

.main-nav a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--r-sm);
    background: var(--honey);
    opacity: 0;
    transform: rotate(-2deg) scale(0.9);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.main-nav a:hover::before,
.main-nav a.active::before {
    opacity: 1;
    transform: rotate(-2deg) scale(1.05);
}

.main-nav a:hover {
    color: var(--ink);
}

.main-nav a.active {
    color: var(--ink);
}

/* Burger menu */
.menu-toggle {
    display: none;
    background: var(--berry);
    color: var(--paper);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: var(--r-sm);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease;
}

.menu-toggle:active {
    transform: translateY(2px);
    box-shadow: var(--shadow-sm);
}

.menu-toggle svg {
    width: 26px;
    height: 26px;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 5vw;
        right: 5vw;
        background: var(--paper);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border-radius: var(--r-md);
        box-shadow: var(--shadow-lg);
        margin-top: 18px;
        z-index: 100;
    }
    
    .main-nav.open {
        display: flex;
    }
    
    .main-nav a {
        padding: 14px 18px;
        text-align: left;
    }
}

/* =========================================================
   HERO SECTION (hlavní stránka)
   ========================================================= */

.hero {
    position: relative;
    padding: 80px 5vw 120px;
    overflow: hidden;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 900px) {
    .hero {
        padding: 48px 5vw 80px;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--leaf);
    color: var(--paper);
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    transform: rotate(-2deg);
    box-shadow: var(--shadow-sm);
}

.hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    background: var(--paper);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 24px;
}

.hero h2 .word {
    display: inline-block;
    position: relative;
}

.hero h2 .word-accent {
    color: var(--berry);
    font-style: italic;
    position: relative;
}

.hero h2 .word-accent::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: -4px;
    right: -4px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14'%3E%3Cpath d='M2,8 Q50,2 100,7 T198,9' stroke='%23F4B860' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
}

.hero h2 .word-honey {
    background: linear-gradient(180deg, transparent 60%, var(--honey) 60%);
    padding: 0 4px;
}

.hero p.lead {
    font-size: 1.15rem;
    color: var(--ink-soft);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: var(--r-sm);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--berry);
    color: var(--paper);
}

.btn-primary:hover {
    transform: translateY(-3px) rotate(-1deg);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(2px);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background: var(--paper);
    color: var(--ink);
    border: 2px solid var(--ink);
}

.btn-secondary:hover {
    transform: translateY(-3px) rotate(1deg);
    background: var(--cream-warm);
}

.btn-secondary:active {
    transform: translateY(2px);
}

.btn .arrow {
    transition: transform 0.2s ease;
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* Hero ilustrace - kolážová kompozice */
.hero-art {
    position: relative;
    aspect-ratio: 1 / 1.05;
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
}

.hero-blob {
    position: absolute;
    inset: 0;
    background: var(--honey);
    border-radius: var(--r-blob);
    animation: blob-morph 12s ease-in-out infinite;
}

.hero-blob.blob-2 {
    background: var(--sky);
    inset: 8% 12% 16% 8%;
    border-radius: var(--r-blob-2);
    opacity: 0.7;
    animation-delay: -4s;
    animation-duration: 14s;
}

@keyframes blob-morph {
    0%, 100% { border-radius: 62% 38% 55% 45% / 50% 60% 40% 50%; }
    33% { border-radius: 38% 62% 45% 55% / 60% 50% 50% 40%; }
    66% { border-radius: 55% 45% 38% 62% / 45% 55% 60% 50%; }
}

.hero-card {
    position: absolute;
    background: var(--paper);
    padding: 12px;
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-card:hover {
    transform: rotate(0deg) scale(1.06) !important;
    z-index: 10;
}

.hero-card-1 {
    top: 4%;
    left: 2%;
    width: 50%;
    transform: rotate(-7deg);
    z-index: 3;
}

.hero-card-2 {
    top: 32%;
    right: 0%;
    width: 50%;
    transform: rotate(6deg);
    z-index: 4;
}

.hero-card-3 {
    bottom: 2%;
    left: 18%;
    width: 52%;
    transform: rotate(-3deg);
    z-index: 2;
}

.hero-card svg {
    width: 100%;
    height: auto;
    aspect-ratio: 200 / 160;
    display: block;
    border-radius: 2px;
}

.hero-card .caption {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--ink);
    margin-top: 4px;
}

/* Plovoucí dekorace */
.float-deco {
    position: absolute;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.float-deco.deco-1 {
    top: 4%;
    right: 8%;
    width: 80px;
    animation-delay: -1s;
}

.float-deco.deco-2 {
    bottom: 8%;
    right: 0;
    width: 60px;
    animation-delay: -3s;
}

.float-deco.deco-3 {
    top: 30%;
    left: -2%;
    width: 70px;
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(8deg); }
}

/* =========================================================
   VLNITÝ ODDĚLOVAČ
   ========================================================= */

.wave-divider {
    position: relative;
    height: 80px;
    margin-top: -80px;
    z-index: 5;
    pointer-events: none;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* =========================================================
   SECTION COMMON
   ========================================================= */

.section {
    position: relative;
    padding: 80px 5vw;
    z-index: 2;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--berry);
    transform: rotate(-2deg);
    display: inline-block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.section-title .underline {
    position: relative;
    display: inline-block;
}

.section-title .underline::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12'%3E%3Cpath d='M2,7 Q50,1 100,6 T198,8' stroke='%237BB369' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/* =========================================================
   KARTY / TŘÍDY (Sovičky, Včeličky)
   ========================================================= */

.classes-section {
    background: linear-gradient(180deg, transparent 0%, var(--cream-warm) 50%, transparent 100%);
}

.classes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

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

.class-card {
    position: relative;
    padding: 40px;
    border-radius: var(--r-lg);
    background: var(--paper);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid transparent;
}

.class-card:hover {
    transform: translateY(-8px) rotate(-1deg);
}

.class-card.owls {
    border-color: var(--honey);
}

.class-card.owls::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: var(--honey);
    border-radius: var(--r-blob);
    opacity: 0.25;
}

.class-card.bees {
    border-color: var(--leaf);
}

.class-card.bees::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: var(--leaf);
    border-radius: var(--r-blob-2);
    opacity: 0.25;
}

.class-mascot {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.class-name {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 0.9;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.class-age {
    display: inline-block;
    background: var(--ink);
    color: var(--paper);
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.class-card p {
    color: var(--ink-soft);
    position: relative;
    z-index: 1;
}

/* =========================================================
   AKTUALITY / OZNÁMENÍ
   ========================================================= */

.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.notice {
    position: relative;
    background: var(--paper);
    padding: 32px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.notice::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 24px;
    width: 60px;
    height: 20px;
    background: var(--berry);
    opacity: 0.6;
    transform: rotate(-3deg);
    border-radius: 3px;
    /* "Páska" jako z papírového lepidla */
}

.notice:nth-child(2)::before {
    background: var(--leaf);
    transform: rotate(2deg);
}

.notice:nth-child(3)::before {
    background: var(--sky);
    transform: rotate(-1deg);
}

.notice:hover {
    transform: translateY(-6px) rotate(-0.5deg);
    box-shadow: var(--shadow-lg);
}

.notice-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: var(--honey);
}

.notice:nth-child(2) .notice-icon {
    background: var(--leaf);
}

.notice:nth-child(3) .notice-icon {
    background: var(--sky);
}

.notice-icon svg {
    width: 28px;
    height: 28px;
    color: var(--paper);
}

.notice h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ink);
    line-height: 1.2;
}

.notice p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.notice-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--berry);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
}

.notice-link:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* =========================================================
   INFO PÁS — provozní info
   ========================================================= */

.info-strip {
    background: var(--ink);
    color: var(--paper);
    padding: 60px 5vw;
    position: relative;
    overflow: hidden;
}

.info-strip::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 14' preserveAspectRatio='none'%3E%3Cpath d='M0,14 Q15,0 30,7 T60,14 L60,0 L0,0 Z' fill='%233D2817'/%3E%3C/svg%3E");
    background-size: 60px 14px;
    background-repeat: repeat-x;
    transform: rotate(180deg);
}

.info-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

.info-item .icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--honey);
    border-radius: var(--r-blob);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
}

.info-item:nth-child(2) .icon { background: var(--berry); color: var(--paper); }
.info-item:nth-child(3) .icon { background: var(--leaf); color: var(--paper); }
.info-item:nth-child(4) .icon { background: var(--sky); color: var(--paper); }

.info-item .icon svg {
    width: 28px;
    height: 28px;
}

.info-item .label {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--honey);
    margin-bottom: 6px;
}

.info-item .value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--paper);
    line-height: 1.3;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: var(--cream-warm);
    padding: 60px 5vw 30px;
    position: relative;
    z-index: 2;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--ink);
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--ink-soft);
    max-width: 380px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--ink);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--berry);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 2px dashed var(--honey);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--ink-soft);
}

/* =========================================================
   SUBPAGE HEADER (vnitřní stránky)
   ========================================================= */

.page-hero {
    position: relative;
    padding: 70px 5vw 60px;
    text-align: center;
    overflow: hidden;
}

.page-hero h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    color: var(--ink);
    position: relative;
    z-index: 2;
    display: inline-block;
}

.page-hero h2::before {
    content: "";
    position: absolute;
    inset: -20px -40px;
    background: var(--honey);
    border-radius: var(--r-blob);
    z-index: -1;
    opacity: 0.4;
}

.page-hero .subtitle {
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--ink-soft);
}

.page-hero .breadcrumb {
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.page-hero .breadcrumb a {
    color: var(--berry);
    text-decoration: none;
    font-weight: 600;
}

.page-hero .breadcrumb a:hover {
    text-decoration: underline;
}

/* =========================================================
   TEXT BLOCKS / OBSAH PODSTRÁNEK
   ========================================================= */

.content-block {
    background: var(--paper);
    padding: 48px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
    position: relative;
}

.content-block h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--ink);
}

.content-block h3::before {
    content: "✿";
    color: var(--berry);
    margin-right: 10px;
    font-size: 1.4rem;
}

.content-block p {
    color: var(--ink);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.content-block strong {
    color: var(--ink);
    font-weight: 700;
}

.content-block ul {
    list-style: none;
    margin-bottom: 16px;
}

.content-block ul li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
    color: var(--ink);
    line-height: 1.7;
}

.content-block ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    background: var(--leaf);
    border-radius: var(--r-blob);
}

.content-block ul li:nth-child(2n)::before { background: var(--berry); }
.content-block ul li:nth-child(3n)::before { background: var(--sky); }
.content-block ul li:nth-child(4n)::before { background: var(--honey); }

.callout {
    background: linear-gradient(135deg, var(--honey) 0%, var(--berry) 100%);
    color: var(--paper);
    padding: 28px 32px;
    border-radius: var(--r-md);
    margin: 24px 0;
    box-shadow: var(--shadow-md);
    position: relative;
}

.callout::before {
    content: "!";
    position: absolute;
    top: -16px;
    left: 24px;
    width: 40px;
    height: 40px;
    background: var(--paper);
    color: var(--berry);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    box-shadow: var(--shadow-sm);
}

.callout h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
    margin-top: 8px;
}

/* =========================================================
   KONTAKT — speciální karty
   ========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    background: var(--paper);
    padding: 32px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 6px solid var(--honey);
}

.contact-card:nth-child(2) { border-top-color: var(--berry); }
.contact-card:nth-child(3) { border-top-color: var(--leaf); }
.contact-card:nth-child(4) { border-top-color: var(--sky); }

.contact-card:hover {
    transform: translateY(-6px) rotate(-1deg);
}

.contact-card .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--cream-warm);
    border-radius: var(--r-blob);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--berry);
}

.contact-card:nth-child(2) .icon { color: var(--berry); }
.contact-card:nth-child(3) .icon { color: var(--leaf-deep); }
.contact-card:nth-child(4) .icon { color: var(--sky-deep); }

.contact-card .icon svg {
    width: 28px;
    height: 28px;
}

.contact-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--ink-soft);
    margin-bottom: 4px;
}

.contact-card .value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    word-break: break-word;
}

.contact-card a.value {
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-card a.value:hover {
    color: var(--berry);
}

/* Tým */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.team-card {
    background: var(--paper);
    padding: 24px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    background: var(--honey);
    border-radius: var(--r-blob);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2rem;
}

.team-card:nth-child(2n) .team-avatar { background: var(--berry); color: var(--paper); border-radius: var(--r-blob-2); }
.team-card:nth-child(3n) .team-avatar { background: var(--leaf); color: var(--paper); }
.team-card:nth-child(4n) .team-avatar { background: var(--sky); color: var(--paper); border-radius: var(--r-blob-2); }
.team-card:nth-child(5n) .team-avatar { background: var(--plum); color: var(--paper); }

.team-card .role {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--ink-soft);
    margin-bottom: 4px;
}

.team-card .name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
}

/* =========================================================
   AKCE - kalendář
   ========================================================= */

.event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    background: var(--paper);
    padding: 24px 28px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    align-items: center;
    transition: transform 0.3s ease;
}

.event:hover {
    transform: translateX(8px);
}

.event-date {
    background: var(--berry);
    color: var(--paper);
    border-radius: var(--r-sm);
    padding: 12px 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transform: rotate(-3deg);
}

.event:nth-child(2n) .event-date { background: var(--leaf); transform: rotate(2deg); }
.event:nth-child(3n) .event-date { background: var(--sky); transform: rotate(-2deg); }
.event:nth-child(4n) .event-date { background: var(--honey); color: var(--ink); transform: rotate(3deg); }

.event-date .day {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.event-content h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--ink);
}

.event-content p {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.event-content .time {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: var(--cream-warm);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
}

@media (max-width: 600px) {
    .event {
        grid-template-columns: 80px 1fr;
        padding: 18px;
    }
    .event-date .day { font-size: 1.6rem; }
}

/* =========================================================
   JÍDELNÍČEK
   ========================================================= */

.menu-week {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.menu-day {
    background: var(--paper);
    padding: 24px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    position: relative;
}

.menu-day .day-name {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--berry);
    margin-bottom: 8px;
    line-height: 1;
}

.menu-day .day-date {
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin-bottom: 16px;
    font-weight: 600;
}

.menu-day .meal {
    padding: 12px 0;
    border-bottom: 1px dashed rgba(61, 40, 23, 0.15);
}

.menu-day .meal:last-child {
    border-bottom: none;
}

.menu-day .meal-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--leaf-deep);
    margin-bottom: 4px;
}

.menu-day .meal-content {
    font-size: 0.95rem;
    color: var(--ink);
}

/* =========================================================
   ANIMACE PŘI NAČTENÍ
   ========================================================= */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-up {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* =========================================================
   UTILITY
   ========================================================= */

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
