/* ========================================
   Elžbietkin čarovný svet - Landing Page
   ======================================== */

:root {
    --primary: #FF6B9D;
    --secondary: #7DD3C0;
    --accent: #FFD93D;
    --purple: #A78BFA;
    --pink-light: #FFE4EC;
    --forest: #2D5A27;
    --cream: #FFF9F0;
    --text: #4A3728;
    --shadow: rgba(255, 107, 157, 0.3);
}

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

html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Baloo 2', 'Comic Neue', cursive;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor-glow {
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, opacity 0.3s ease;
    opacity: 0.8;
}

body:hover .cursor-glow {
    transform: scale(2);
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
}

.floating-flower {
    position: absolute;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.4;
    animation: floatFlower 15s ease-in-out infinite;
}

.floating-flower:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.floating-flower:nth-child(2) { left: 30%; top: 60%; animation-delay: -3s; }
.floating-flower:nth-child(3) { left: 70%; top: 30%; animation-delay: -6s; }
.floating-flower:nth-child(4) { left: 50%; top: 80%; animation-delay: -9s; }
.floating-flower:nth-child(5) { left: 85%; top: 50%; animation-delay: -12s; }

@keyframes floatFlower {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-30px) rotate(15deg); opacity: 0.6; }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,249,240,0.1) 0%, rgba(255,249,240,0.25) 100%);
}

.hero-content {
    text-align: center;
    padding: 2rem;
    z-index: 1;
}

.elzbietka-hero {
    margin-bottom: 1rem;
    animation: jumpIn 1s ease-out;
}

.elzbietka-hero img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    animation: wave 2s ease-in-out infinite;
}

@keyframes jumpIn {
    0% { transform: translateY(100px); opacity: 0; }
    60% { transform: translateY(-20px); }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes wave {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

.hero-title {
    font-size: 4rem;
    color: var(--primary);
    text-shadow: 3px 3px 0 #fff, -1px -1px 0 #fff;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--forest);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

.hero-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px var(--shadow);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 1rem;
    color: var(--text);
}

.scroll-arrow {
    font-size: 2rem;
    color: var(--primary);
}

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

/* ========================================
   SECTIONS GENERAL
   ======================================== */
section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

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

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

.section-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,249,240,0.6);
}

.section-title {
    font-size: 3rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0 #fff;
}

.section-desc {
    font-size: 1.4rem;
    text-align: center;
    color: var(--text);
    margin-bottom: 3rem;
}

/* ========================================
   AUDIO SECTION
   ======================================== */
.audio-section .section-bg::after {
    background: linear-gradient(180deg, rgba(253,243,225,0.4) 0%, rgba(255,228,236,0.4) 100%);
}

.audio-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.audio-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    max-width: 360px;
    width: 100%;
    text-align: center;
}

.audio-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 20px 60px rgba(255,107,157,0.25);
}

.audio-cover {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.audio-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.audio-desc {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.audio-sub {
    font-size: 0.9rem;
    color: var(--purple);
    font-weight: 600;
    margin-bottom: 1rem;
}

.audio-play-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.audio-play-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* ========================================
   STORY INTRO SECTION
   ======================================== */
.story-intro {
    min-height: 120vh;
    padding: 6rem 2rem;
}

.story-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.story-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,249,240,0.3) 0%, rgba(255,228,236,0.3) 100%);
}

.story-content {
    max-width: 1200px;
    width: 100%;
}

.books-open {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.book-page {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    background: rgba(255,249,240,0.9);
    border-radius: 20px 40px 40px 20px;
    padding: 2rem;
    position: relative;
    box-shadow: 
        8px 8px 0 rgba(255,107,157,0.2),
        inset -4px 0 0 rgba(0,0,0,0.05);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.book-page:hover {
    transform: translateY(-5px) rotate(-1deg);
}

.book-page:last-child:hover {
    transform: translateY(-5px) rotate(1deg);
}

.listen-story-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.2rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Baloo 2', cursive;
}

.listen-story-link:hover {
    background: var(--accent);
    color: var(--text);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255,107,157,0.4);
}

.book-left {
    animation-delay: 0.2s;
    transform: perspective(1000px) rotateY(-15deg);
}

.book-right {
    animation-delay: 0.5s;
    transform: perspective(1000px) rotateY(-10deg);
}

@keyframes bookOpen {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateY(-45deg) translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateY(0deg) translateX(0);
    }
}

.book-page::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(90deg, #8B4513 0%, #A0522D 50%, #8B4513 100%);
    border-radius: 10px 0 0 10px;
}

.page-content {
    padding: 2.5rem 2rem 2.5rem 3rem;
}

.elzbietka.cameo {
    position: absolute;
    top: -30px;
    right: 20px;
    width: 80px;
    animation: peek 2s ease-in-out infinite;
}

.elzbietka.cameo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

@keyframes peek {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.abc-illustration {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 100px;
    animation: float 3s ease-in-out infinite;
}

.abc-illustration img {
    width: 100%;
}

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

.book-page h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.book-page h4 {
    font-size: 1.2rem;
    color: var(--purple);
    margin-bottom: 1rem;
    font-weight: 600;
}

.book-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    text-align: justify;
}

/* Floating hearts */
.floating-hearts {
    position: absolute;
    top: 20px;
    left: 50%;
    display: flex;
    gap: 1rem;
}

.heart {
    font-size: 1.5rem;
    animation: pulseHeart 1.5s ease-in-out infinite;
}

.heart:nth-child(1) { animation-delay: 0s; }
.heart:nth-child(2) { animation-delay: 0.3s; }
.heart:nth-child(3) { animation-delay: 0.6s; }

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

/* Floating letters */
.floating-letters {
    position: absolute;
    top: 20px;
    right: 30%;
    display: flex;
    gap: 0.5rem;
}

.letter {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
    animation: bounceLetter 2s ease-in-out infinite;
}

.letter:nth-child(1) { animation-delay: 0s; color: #FF6B9D; }
.letter:nth-child(2) { animation-delay: 0.2s; color: #7DD3C0; }
.letter:nth-child(3) { animation-delay: 0.4s; color: #FFD93D; }
.letter:nth-child(4) { animation-delay: 0.6s; color: #A78BFA; }

@keyframes bounceLetter {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Audio promo bridge */
.audio-promo {
    background: linear-gradient(135deg, var(--pink-light) 0%, #FFF0F5 50%, #FFE4EC 100%);
    border-radius: 30px;
    padding: 2rem 3rem;
    text-align: center;
    max-width: 700px;
    margin: 3rem auto 0;
    box-shadow: 0 10px 40px rgba(255,107,157,0.2);
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
}

.elzbietka-listen {
    width: 120px;
    margin: 0 auto 1rem;
    animation: listenBounce 2s ease-in-out infinite;
}

.elzbietka-listen img {
    width: 100%;
}

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

.audio-promo p {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.audio-promo strong {
    color: var(--primary);
}

.listen-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 30px var(--shadow); }
    50% { box-shadow: 0 10px 50px var(--shadow), 0 0 0 10px rgba(255,107,157,0.1); }
}

.listen-btn:hover {
    transform: scale(1.1);
}

/* ========================================
   BOOKS SECTION
   ======================================== */
.books-section .section-bg::after {
    background: linear-gradient(180deg, rgba(255,249,240,0.4) 0%, rgba(125,211,192,0.15) 100%);
}

.bookshelf {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1100px;
}

.book-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    max-width: 320px;
}

.book-item:hover {
    transform: scale(1.05) rotate(-2deg);
}

.book-cover {
    width: 180px;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: var(--pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.book-info {
    text-align: center;
}

.book-info h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.book-info p {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.book-price {
    display: block;
    font-size: 1.5rem;
    color: var(--forest);
    font-weight: bold;
    margin-bottom: 1rem;
}

.buy-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px var(--shadow);
}

/* New Book - Gift Style */
.book-new {
    background: linear-gradient(135deg, var(--purple) 0%, var(--primary) 100%);
    color: white;
}

.book-new .book-info h3,
.book-new .book-info p {
    color: white;
}

.book-gift {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
}

.gift-box {
    font-size: 5rem;
    animation: shake 2s ease-in-out infinite;
}

.gift-ribbon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 60px;
    background: var(--accent);
}

@keyframes shake {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.book-soon {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: white;
    color: var(--primary);
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
}

/* ========================================
   BALLOONS SECTION
   ======================================== */
.balloons-section .section-bg::after {
    background: linear-gradient(180deg, rgba(20,20,40,0.7) 0%, rgba(40,30,60,0.8) 100%);
}

.balloons-section .section-title {
    color: var(--accent);
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

.balloons-section .section-desc {
    color: #FFE4EC;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}

.balloon-shop {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.balloon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    animation: floatBalloon 3s ease-in-out infinite;
    position: relative;
}

.balloon:nth-child(2) { animation-delay: -1s; }
.balloon:nth-child(3) { animation-delay: -2s; }

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

.balloon-fallback {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.balloon img {
    width: 80px;
    height: auto;
    margin-bottom: 0.5rem;
    display: none;
}

.balloon-label {
    font-size: 1.3rem;
    color: white;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.balloon-btn {
    padding: 0.5rem 1.5rem;
    background: var(--accent);
    color: var(--text);
    border-radius: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.balloon:hover .balloon-btn {
    transform: scale(1.2);
    background: var(--primary);
    color: white;
}

/* ========================================
   SHOPS CAROUSEL
   ======================================== */
.shops-carousel {
    background: linear-gradient(135deg, #FFE4EC 0%, #F8E8FF 50%, #E8F4F8 100%);
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
}

.shops-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--purple), var(--secondary), var(--accent));
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.carousel-title {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0 #fff;
}

.carousel-subtitle {
    font-size: 1.2rem;
    color: var(--text);
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    animation: scrollCarousel 40s linear infinite;
    width: max-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.shop-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: white;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    min-width: 140px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid var(--color, var(--primary));
}

.shop-logo:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.shop-icon {
    width: 64px;
    height: 64px;
    background: var(--color, var(--primary));
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    font-family: 'Baloo 2', cursive;
    border-radius: 8px 16px 16px 8px;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.15), inset -3px 0 0 rgba(0,0,0,0.15);
    position: relative;
    transition: transform 0.3s ease;
}

.shop-icon::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 8px;
    width: 4px;
    height: 48px;
    background: rgba(255,255,255,0.25);
    border-radius: 2px;
}

.shop-logo:hover .shop-icon {
    transform: rotate(-5deg) scale(1.1);
}

.shop-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
}

.shop-logo:hover .shop-name {
    color: var(--color, var(--primary));
}

/* Duplikacja dla płynnego przewijania */
.carousel-track::after {
    content: '';
    flex-shrink: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,249,240,0.5) 0%, rgba(255,107,157,0.15) 100%);
}

.footer-content {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.author-section h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.author-name {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 0 #fff;
}

.portfolio-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--forest) 100%);
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(45,90,39,0.3);
    transition: all 0.3s ease;
}

.portfolio-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(45,90,39,0.4);
}

.events-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.8rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Baloo 2', cursive;
    transition: all 0.3s ease;
}

.events-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255,107,157,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text);
    opacity: 0.7;
    margin: 0;
}

.footer-publisher-link {
    font-size: 0.85rem;
    color: var(--text);
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.footer-publisher-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ========================================
   EVENTS MODAL
   ======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: modalPop 0.3s ease;
}

@keyframes modalPop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--pink-light);
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--text);
    opacity: 0.7;
    margin-bottom: 2rem;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.2rem;
    background: var(--cream);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.event-item:hover {
    transform: translateX(5px);
}

.event-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--forest) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.event-info h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.event-info p {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.8;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.event-status {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

/* Music Toggle */
.music-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.music-toggle:hover {
    transform: scale(1.1);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .elzbietka-hero img {
        max-width: 200px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .audio-cards,
    .bookshelf,
    .balloon-shop {
        flex-direction: column;
        align-items: center;
    }
    
    .audio-card,
    .book-item {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-btn {
        padding: 0.8rem 2rem;
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}