/* Jelly Cafe - Main Stylesheet */

/* Glass Card Component */
.glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}
.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
    opacity: 0.03;
    pointer-events: none;
}

/* Organic Shapes */
.organic-shape-1 { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
.organic-shape-2 { border-radius: 30% 70% 70% 30% / 50% 60% 40% 50%; }

/* Scroll Reveal Animation */
.scroll-reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.scroll-reveal.active { opacity: 1; transform: translateY(0); }

/* Material Symbols */
.material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

/* Parallax Background */
.parallax-bg { transform: translateY(var(--scroll-y, 0)); }

/* Jelly Bounce Animation */
@keyframes jelly-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.hover-jelly:hover { animation: jelly-bounce 0.4s ease-in-out; }

/* Hero Coverflow Carousel */
.coverflow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.coverflow-card {
    position: absolute;
    top: 50%;
    width: 65%;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out, opacity 0.5s ease-in-out, z-index 0.5s step-end;
    user-select: none;
}
.coverflow-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.coverflow-prev {
    left: 25%;
    transform: translate(-50%, -50%) scale(0.8);
    filter: blur(5px);
    opacity: 0.65;
    z-index: 1;
}
.coverflow-prev:hover {
    opacity: 0.85;
    filter: blur(3px);
}
.coverflow-center {
    left: 50%;
    transform: translate(-50%, -50%) scale(1.05);
    filter: blur(0);
    opacity: 1;
    z-index: 3;
    cursor: default;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}
.coverflow-next {
    left: 75%;
    transform: translate(-50%, -50%) scale(0.8);
    filter: blur(5px);
    opacity: 0.65;
    z-index: 1;
}
.coverflow-next:hover {
    opacity: 0.85;
    filter: blur(3px);
}
.coverflow-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}
.coverflow-indicator.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

/* Lightbox Modal */
.lightbox-modal { display: none; }
.lightbox-modal.active { display: flex; }
