/* Global Theme Configuration */
/* Colors, typography, spacing, radii, shadows – easy to tweak in one place */

:root {
    /* Brand colors */
    --color-primary: #008080; /* Teal */
    --color-primary-warm: #00A8A8; /* Warmer Teal for child-friendly sections */
    --color-secondary: #FF6F61; /* Soft Coral */
    --color-text: #2F4F4F; /* Dark Slate Gray */
    
    /* Child-friendly accent colors */
    --color-accent-yellow: #FFE066; /* Soft Yellow */
    --color-accent-yellow-light: #FFF8E1; /* Light Yellow Background */
    --color-accent-orange: #FFB84D; /* Warm Orange */

    /* Neutrals */
    --color-bg: #ffffff;
    --color-muted: #64748b; /* slate-500 */
    --color-border: #e2e8f0; /* slate-200 */
    --color-surface: #f8fafc; /* slate-50 */

    /* Status */
    --color-success: #16a34a; /* green-600 */
    --color-warning: #d97706; /* amber-600 */
    --color-danger:  #dc2626; /* red-600 */

    /* Typography */
    --font-family-sans: 'Roboto', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
    --font-family-heading: 'Poppins', 'Roboto', system-ui, -apple-system, sans-serif;
    --line-height: 1.5;
    --font-size-body: 16px;
    --font-size-h1: 36px; /* Increased from 32px */
    --font-size-h2: 32px; /* Increased from 28px */
    --font-size-h3: 26px; /* Increased from 24px */
    --font-size-h4: 22px; /* Increased from 20px */
    --font-size-h5: 18px;
    --font-size-h6: 16px;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;

    /* Spacing scale (4px baseline) */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 28px;
    --space-8: 32px;

    /* Radii */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 10px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.12);

    /* Focus ring (high contrast) */
    --focus-ring: 0 0 0 3px rgba(0,128,128,0.35);
}

/* Base */
html { font-family: var(--font-family-sans); }
body {
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: var(--line-height);
    font-size: var(--font-size-body);
    padding-top: 70px; /* Space for fixed header */
}

/* Floating/Sticky Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Academics Dropdown Menu */
.academics-menu {
    position: relative;
}

.academics-menu:hover .academics-dropdown,
.academics-menu:focus-within .academics-dropdown {
    display: block;
}

/* Bridge the gap between trigger and dropdown to prevent hover loss */
.academics-menu::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
    background: transparent;
}

.academics-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 0;
    z-index: 50;
    margin-top: 0;
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 0.375rem;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    min-width: 160px;
}

/* Keep dropdown visible when hovering over it */
.academics-dropdown:hover {
    display: block;
}

/* Staff Page Card Enhancements */
.staff-card {
    position: relative;
    cursor: pointer;
    outline: none;
}

.staff-card:focus {
    outline: none;
}

.staff-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.staff-image {
    will-change: transform;
    backface-visibility: hidden;
}

.staff-card:hover .staff-image {
    transform: scale(1.05);
}

.staff-card:hover .staff-image-wrapper .absolute {
    opacity: 1;
}

.staff-card:hover {
    border-color: #008080;
}

/* Smooth transitions for staff cards */
.staff-card,
.staff-image,
.staff-card .absolute {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.academics-dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: background-color 0.2s;
}

.academics-dropdown a:hover {
    background-color: #f0fdfa;
    color: #0d9488;
}

/* Page Loader */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 50%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
    overflow: hidden;
}

#page-loader::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 128, 128, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Progressive Learning Journey Loader */
.loader-container {
    position: relative;
    width: 300px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-journey-path {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, rgba(0, 128, 128, 0.2), rgba(0, 128, 128, 0.8), rgba(0, 128, 128, 0.2));
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-primary), #00b3b3);
    border-radius: 2px;
    animation: progressFill 2s ease-in-out forwards;
    box-shadow: 0 0 10px rgba(0, 128, 128, 0.5);
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loader-journey-icon {
    position: absolute;
    top: -18px;
    left: 0;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.4);
    animation: journeyMove 2s ease-in-out forwards, iconPulse 1.5s ease-in-out infinite;
    transform: translateX(-20px);
}

@keyframes journeyMove {
    0% { left: 0; transform: translateX(-20px) scale(0.8); }
    100% { left: 160px; transform: translateX(-20px) scale(1); }
}

@keyframes iconPulse {
    0%, 100% { transform: translateX(-20px) scale(1); box-shadow: 0 4px 12px rgba(0, 128, 128, 0.4); }
    50% { transform: translateX(-20px) scale(1.1); box-shadow: 0 6px 20px rgba(0, 128, 128, 0.6); }
}

.loader-text {
    margin-top: 20px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-align: center;
    opacity: 0;
    animation: textFadeIn 0.5s ease-out 0.3s forwards;
}

.loader-subtext {
    margin-top: 8px;
    color: #64748b;
    font-size: 14px;
    opacity: 0;
    animation: textFadeIn 0.5s ease-out 0.6s forwards;
}

@keyframes textFadeIn {
    to { opacity: 1; }
}

.loader-dots {
    display: inline-block;
    animation: dotsPulse 1.4s ease-in-out infinite;
}

@keyframes dotsPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Parallax Effects - REMOVED to prevent irregular scroll movements */

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 0%,
        #e0e0e0 50%,
        #f0f0f0 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
}

.skeleton-text {
    height: 1em;
    margin-bottom: 0.5em;
    border-radius: 4px;
}

.skeleton-text:last-child {
    width: 80%;
}

.skeleton-card {
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: white;
}

h1, h2, h3 { font-family: var(--font-family-heading); }
h1 { font-size: var(--font-size-h1); font-weight: var(--font-weight-bold); letter-spacing: -0.02em; }
h2 { font-size: var(--font-size-h2); font-weight: var(--font-weight-bold); letter-spacing: -0.01em; }
h3 { font-size: var(--font-size-h3); font-weight: var(--font-weight-medium); }
h4 { font-size: var(--font-size-h4); font-weight: var(--font-weight-medium); }
h5 { font-size: var(--font-size-h5); font-weight: var(--font-weight-medium); }
h6 { font-size: var(--font-size-h6); font-weight: var(--font-weight-medium); }

a { color: var(--color-primary); }
a:hover { color: #046a6a; }

/* Utility helpers (lightweight, complement Tailwind) */
.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background-color: #047474; }

.btn-secondary {
    background-color: var(--color-secondary);
    color: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { filter: brightness(0.95); }

.card {
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* Accessible focus outline - Enhanced for better visibility */
:where(a, button, [role="button"], input, textarea, select):focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
    border-radius: var(--radius-sm);
    outline-offset: 2px;
}

/* Skip to content link - Enhanced */
a[href="#main"] {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    border-radius: var(--radius-sm);
}

a[href="#main"]:focus {
    top: 0;
}

/* Ensure all interactive elements are keyboard accessible */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Academics Dropdown Menu - Stay open on hover */
nav .group:hover .menu-dropdown,
.menu-dropdown:hover {
    display: block !important;
}

nav .group .menu-dropdown {
    transition: opacity 0.2s ease-in-out;
}

/* Swiper Hero Slider Styles - Enhanced with smooth transitions */
.hero-swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-swiper .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-swiper .swiper-slide {
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    will-change: opacity;
}

.hero-swiper .swiper-slide-active {
    opacity: 1;
}

.hero-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease-in-out;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Smooth fade effect */
.hero-swiper.swiper-fade .swiper-slide {
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-swiper.swiper-fade .swiper-slide-active,
.hero-swiper.swiper-fade .swiper-slide-duplicate-active {
    opacity: 1;
}

/* Transition state */
.hero-swiper .swiper-slide.transitioning img {
    transform: scale(1.02);
}

/* Optimize performance */
.hero-swiper .swiper-slide img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Slide Caption Styles - Blended with theme */
.hero-swiper .slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2.5rem;
    background: linear-gradient(to top, rgba(0, 128, 128, 0.85) 0%, rgba(0, 128, 128, 0.75) 50%, rgba(0, 128, 128, 0.4) 80%, transparent 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
    z-index: 2;
}

.hero-swiper .slide-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-swiper .slide-description {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.5;
    max-width: 600px;
}

/* Caption animation on slide change */
.hero-swiper .swiper-slide:not(.swiper-slide-active) .slide-caption {
    opacity: 0;
    transform: translateY(20px);
}

.hero-swiper .swiper-slide-active .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile responsive caption */
@media (max-width: 768px) {
    .hero-swiper .slide-caption {
        padding: 1.5rem 1.5rem;
        background: linear-gradient(to top, rgba(0, 128, 128, 0.9) 0%, rgba(0, 128, 128, 0.8) 60%, rgba(0, 128, 128, 0.5) 85%, transparent 100%);
    }
    
    .hero-swiper .slide-title {
        font-size: 1.5rem;
        margin-bottom: 0.375rem;
    }
    
    .hero-swiper .slide-description {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Swiper Navigation Arrows - Enhanced transitions */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: white;
    background: rgba(0, 128, 128, 0.7);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-top: 0;
    transform: translateY(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.hero-swiper:hover .swiper-button-next,
.hero-swiper:hover .swiper-button-prev {
    opacity: 1;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: var(--color-primary);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.4);
}

.hero-swiper .swiper-button-next:hover:after {
    transform: translateX(2px);
}

.hero-swiper .swiper-button-prev:hover:after {
    transform: translateX(-2px);
}

.hero-swiper .swiper-button-prev {
    left: 20px;
}

.hero-swiper .swiper-button-next {
    right: 20px;
}

/* Swiper Pagination Dots - Position adjusted for captions */
.hero-swiper .swiper-pagination {
    bottom: 140px !important;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.7);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.hero-swiper .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(0, 128, 128, 0.6);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 36px;
        height: 36px;
    }
    
    .hero-swiper .swiper-button-next:after,
    .hero-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
    
    .hero-swiper .swiper-button-prev {
        left: 10px;
    }
    
    .hero-swiper .swiper-button-next {
        right: 10px;
    }
    
    .hero-swiper .swiper-pagination {
        bottom: 120px !important;
    }
    
    .hero-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.animated {
    opacity: 1;
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delay for child elements */
.animate-delay-100 {
    transition-delay: 100ms;
}

.animate-delay-200 {
    transition-delay: 200ms;
}

.animate-delay-300 {
    transition-delay: 300ms;
}

.animate-delay-400 {
    transition-delay: 400ms;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fade-in-up,
    .fade-in-left,
    .fade-in-right,
    .fade-in,
    .scale-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Modal Styles */
#formModal {
    animation: fadeIn 0.3s ease-out;
}

#formModal.hidden {
    display: none !important;
}

#formModal .bg-white {
    animation: slideUp 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    #formModal,
    #formModal .bg-white {
        animation: none;
    }
}


/* Manager Message Section - Gradient Background */
.section-manager-message {
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.08) 0%, rgba(255, 111, 97, 0.08) 50%, rgba(0, 128, 128, 0.12) 100%);
    position: relative;
}

/* Daily Life Section Background */
.section-daily-life {
    position: relative;
    overflow: hidden;
}

.section-daily-life::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/hero/hero-2-students-class.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.14; /* slightly less transparent for better presence */
    pointer-events: none;
}

/* Child-Friendly Enhancements */

/* Playful button styles */
.btn-cta-primary {
    background-color: var(--color-secondary);
    color: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(255, 111, 97, 0.3);
    padding: 0.875rem 2rem;
    font-weight: var(--font-weight-bold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-cta-primary:hover {
    background-color: #FF5740;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 111, 97, 0.4);
}

.btn-cta-primary:active {
    transform: translateY(0);
}

/* Bounce animation for playful interactions */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.bounce-on-hover:hover {
    animation: bounce 0.5s ease;
}

/* Warmer section backgrounds */
.section-child-friendly {
    background: linear-gradient(135deg, var(--color-accent-yellow-light) 0%, #fff 50%, rgba(0, 168, 168, 0.05) 100%);
    position: relative;
}

.section-child-friendly::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 224, 102, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

/* Enhanced program cards */
.program-card {
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 168, 168, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-card:hover::before {
    opacity: 1;
}

/* Decorative badges */
.badge-playful {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--color-accent-yellow) 0%, var(--color-accent-orange) 100%);
    color: #2F4F4F;
    font-weight: var(--font-weight-bold);
    font-size: 0.75rem;
    box-shadow: 0 2px 8px rgba(255, 224, 102, 0.3);
}

/* Enhanced shadows with color tints */
.shadow-teal {
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.15);
}

.shadow-coral {
    box-shadow: 0 4px 12px rgba(255, 111, 97, 0.2);
}

.shadow-yellow {
    box-shadow: 0 4px 12px rgba(255, 224, 102, 0.25);
}

/* Playful scale animation */
.scale-playful {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scale-playful:hover {
    transform: scale(1.05);
}

/* Warmer gradient backgrounds */
.gradient-warm {
    background: linear-gradient(135deg, rgba(255, 224, 102, 0.15) 0%, rgba(255, 111, 97, 0.1) 50%, rgba(0, 168, 168, 0.1) 100%);
}

/* Decorative corner elements */
.decorative-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.1;
    pointer-events: none;
}

.decorative-corner-top-right {
    top: 0;
    right: 0;
    background: radial-gradient(circle, var(--color-accent-yellow) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
}

.decorative-corner-bottom-left {
    bottom: 0;
    left: 0;
    background: radial-gradient(circle, var(--color-primary-warm) 0%, transparent 70%);
    border-radius: 0 100% 0 0;
}

