/* File: assets/css/main.css */
/* Alpha and Omega School Management System Styles */
/* Colors matched to official school emblem: Royal Blue & Golden Yellow */

:root {
    /* Official School Colors - Matching Emblem */
    --royal-blue: #4169E1;       /* Royal Blue #4169E1 */
    --golden-yellow: #FFF200;    /* Pure yellow from emblem accents */
    --bright-yellow: #FFED00;    /* Bright yellow variant */
    --light-blue: #4169E1;       /* Unified to Royal Blue */
    --dark-navy: #2f52c7;        /* Darker shade of Royal Blue */
    --light-gray: #f8fafc;
    --white: #ffffff;
    --black: #000000;
    --text-dark: #2f52c7;
    --text-light: #4169E1;
    
    /* Brand color aliases for consistency */
    --primary-blue: #4169E1;     /* Royal Blue - main brand color */
    --secondary-blue: #4169E1;   /* Unified to Royal Blue */
    --gold: #FFF200;             /* Golden Yellow */
    
    /* Orange Gradient Colors - Client Requested Original Gradient */
    --vibrant-orange: #FF6B35;   /* Vibrant orange */
    --bright-orange: #FF8C42;    /* Bright orange */
    --sunset-orange: #FFA500;    /* Sunset orange */
    --deep-orange: #FF4500;      /* Deep orange-red */
    --coral-orange: #FF7F50;     /* Coral orange */
    
    --warning: #FF8C42;          /* Orange for warnings */
    --success: #10b981;
    --danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-gray);
    border-top: 3px solid var(--royal-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--deep-orange) 50%, var(--dark-navy) 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 140px; /* Account for both navbars */
    color: var(--white);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 140, 66, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 20%, rgba(255, 242, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--golden-yellow);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--light-blue);
    margin-bottom: 1rem;
    font-weight: 500;
    font-style: italic;
}

.school-motto {
    font-size: 1.2rem;
    color: var(--golden-yellow);
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding: 12px 20px;
    background: rgba(255, 242, 0, 0.15);
    border-radius: 12px;
    border-left: 4px solid var(--golden-yellow);
}

.hero-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.btn-hero {
    background: var(--golden-yellow);
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    color: var(--royal-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 8px 8px 0;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-hero:hover {
    background: linear-gradient(135deg, var(--bright-orange) 0%, var(--sunset-orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    color: var(--white);
}

.btn-hero.btn-secondary {
    background: transparent;
    border: 3px solid var(--golden-yellow);
    color: var(--golden-yellow);
}

.btn-hero.btn-secondary:hover {
    background: var(--golden-yellow);
    color: var(--royal-blue);
}

.floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Mission and Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.mission-vision-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(46, 49, 146, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid rgba(46, 49, 146, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--royal-blue), var(--vibrant-orange), var(--golden-yellow));
}

.mission-vision-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
    border-color: var(--vibrant-orange);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--royal-blue);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 1.5rem;
}

.card-description {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Curriculum Section */
.curriculum-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.curriculum-item {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    margin-bottom: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(46, 49, 146, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--light-blue);
}

.curriculum-item:hover {
    transform: translateX(12px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
    border-left-color: var(--vibrant-orange);
}

.curriculum-icon {
    font-size: 2.5rem;
    color: var(--light-blue);
    margin-right: 2rem;
    width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.curriculum-text h5 {
    color: var(--royal-blue);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.curriculum-text p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Activities Section */
.cocurricular-section {
    padding: 80px 0;
    background: var(--white);
}

.activity-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(46, 49, 146, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
    border: 2px solid rgba(46, 49, 146, 0.1);
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--vibrant-orange), var(--sunset-orange));
}

.activity-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
    border-color: var(--vibrant-orange);
}

.activity-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--vibrant-orange);
    text-shadow: 2px 2px 4px rgba(255, 107, 53, 0.3);
}

.activity-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

.activity-description {
    color: var(--text-dark);
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--deep-orange) 50%, var(--dark-navy) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,242,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--golden-yellow), var(--bright-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Quality Section */
.quality-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.quality-logo {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(46, 49, 146, 0.1);
    transition: all 0.3s ease;
    min-width: 120px;
    border: 2px solid transparent;
}

.quality-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 49, 146, 0.15);
    border-color: var(--golden-yellow);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-navy) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 242, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 174, 239, 0.08) 0%, transparent 50%);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    color: var(--golden-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background: #4169E1;
    color: white;
    padding: 80px 0 40px;
}

.footer h5 {
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.8;
}

.footer a:hover {
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding: 30px 0;
    margin-top: 50px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form Styles */
.form-control {
    border-radius: 25px;
    border: 2px solid var(--golden-yellow);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 20px;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
    border-color: var(--golden-yellow);
    box-shadow: 0 0 0 0.2rem rgba(255, 242, 0, 0.25);
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* Button Styles */
.btn-primary {
    background: var(--royal-blue);
    border-color: var(--royal-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-navy);
    border-color: var(--dark-navy);
}

.btn-warning {
    background: var(--golden-yellow);
    border-color: var(--golden-yellow);
    color: var(--royal-blue);
    font-weight: 600;
}

.btn-warning:hover {
    background: var(--bright-yellow);
    border-color: var(--bright-yellow);
    color: var(--royal-blue);
}

.btn-info {
    background: var(--light-blue);
    border-color: var(--light-blue);
    color: var(--white);
}

.btn-info:hover {
    background: #0099CC;
    border-color: #0099CC;
}

/* Alert Styles */
.alert-primary {
    background: rgba(46, 49, 146, 0.1);
    border-color: var(--royal-blue);
    color: var(--royal-blue);
}

.alert-warning {
    background: rgba(255, 242, 0, 0.2);
    border-color: var(--golden-yellow);
    color: var(--dark-navy);
}

.alert-info {
    background: rgba(0, 174, 239, 0.1);
    border-color: var(--light-blue);
    color: var(--royal-blue);
}

/* Badge Styles */
.badge-primary {
    background: var(--royal-blue);
}

.badge-warning {
    background: var(--golden-yellow);
    color: var(--royal-blue);
}

.badge-info {
    background: var(--light-blue);
}

/* Card Styles */
.card {
    border: 2px solid rgba(46, 49, 146, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(46, 49, 146, 0.08);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 25px rgba(46, 49, 146, 0.15);
    border-color: var(--golden-yellow);
}

.card-header {
    background: var(--royal-blue);
    color: var(--white);
    border-bottom: 3px solid var(--golden-yellow);
}

/* Table Styles */
.table thead th {
    background: var(--royal-blue);
    color: var(--white);
    border-bottom: 3px solid var(--golden-yellow);
}

.table-striped tbody tr:nth-of-type(odd) {
    background: rgba(46, 49, 146, 0.03);
}

.table-hover tbody tr:hover {
    background: rgba(255, 242, 0, 0.1);
}

/* Navbar Styles 
.navbar {
    background: var(--royal-blue) !important;
}*/

.navbar-brand {
    color: var(--golden-yellow) !important;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: var(--black) !important;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: var(--golden-yellow) !important;
}

.navbar-nav .nav-link.active {
    color: var(--golden-yellow) !important;
    font-weight: 600;
}

/* Dropdown Styles */
.dropdown-menu {
    border: 2px solid var(--royal-blue);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(46, 49, 146, 0.2);
}

.dropdown-item:hover {
    background: rgba(255, 242, 0, 0.2);
    color: var(--royal-blue);
}

.dropdown-item.active {
    background: var(--royal-blue);
    color: var(--white);
}

/* Pagination Styles */
.page-link {
    color: var(--royal-blue);
    border-color: rgba(46, 49, 146, 0.2);
}

.page-link:hover {
    background: rgba(255, 242, 0, 0.2);
    border-color: var(--golden-yellow);
    color: var(--royal-blue);
}

.page-item.active .page-link {
    background: var(--royal-blue);
    border-color: var(--royal-blue);
}

/* Progress Bar Styles */
.progress {
    background: rgba(46, 49, 146, 0.1);
    border-radius: 10px;
}

.progress-bar {
    background: linear-gradient(90deg, var(--vibrant-orange), var(--bright-orange), var(--sunset-orange));
}

/* Emblem Section */
.emblem-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 40px 0 30px;
    text-align: center;
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(90deg, var(--vibrant-orange), var(--sunset-orange), var(--golden-yellow)) 1;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}

.school-emblem-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: fadeInUp 1s ease-out;
}

.school-emblem {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(46, 49, 146, 0.2));
    transition: all 0.4s ease;
    margin-bottom: 15px;
}

.school-emblem:hover {
    transform: scale(1.08) translateY(-5px);
    filter: drop-shadow(0 12px 30px rgba(46, 49, 146, 0.3));
}

.emblem-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--royal-blue);
    margin-top: 10px;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.emblem-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Countdown Section */
.countdown-section {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-navy) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--vibrant-orange);
    border-bottom: 5px solid var(--sunset-orange);
}

.countdown-alert {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--bright-orange), var(--sunset-orange));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--golden-yellow), var(--vibrant-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(2px 2px 4px rgba(255, 107, 53, 0.3));
}

.countdown-cta {
    background: linear-gradient(135deg, var(--bright-orange), var(--sunset-orange));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.countdown-cta:hover {
    background: linear-gradient(135deg, var(--vibrant-orange), var(--deep-orange));
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

/* Monthly Updates Section */
.monthly-updates-section {
    padding: 80px 0;
    background: var(--white);
}

.update-item {
    border-left: 5px solid var(--bright-orange);
    transition: all 0.3s ease;
}

.update-item:hover {
    border-left-color: var(--deep-orange);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.update-category {
    background: linear-gradient(135deg, var(--vibrant-orange), var(--bright-orange));
    color: var(--white);
    font-weight: 700;
}

.update-title {
    color: var(--royal-blue);
}

.update-read-more {
    color: var(--royal-blue);
    font-weight: 600;
}

.view-all-btn {
    background: var(--royal-blue);
    color: var(--white);
}

.view-all-btn:hover {
    background: var(--golden-yellow);
    color: var(--royal-blue);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .hero-section {
        margin-top: 120px;
        padding: 50px 0 60px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .school-motto {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .mission-vision-card,
    .activity-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .curriculum-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .curriculum-icon {
        margin: 0 0 1rem 0;
        width: auto;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .btn-hero {
        width: 100%;
        margin: 0 0 1rem 0;
        justify-content: center;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .emblem-section {
        padding: 30px 0 25px;
    }

    .school-emblem {
        width: 140px;
        height: 140px;
    }

    .emblem-title {
        font-size: 1.1rem;
    }

    .emblem-subtitle {
        font-size: 0.85rem;
    }
    
    .countdown-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .mission-vision-card,
    .activity-card {
        padding: 1.5rem;
    }
    
    .emblem-section {
        padding: 25px 0 20px;
    }

    .school-emblem {
        width: 120px;
        height: 120px;
    }

    .emblem-title {
        font-size: 1rem;
    }

    .emblem-subtitle {
        font-size: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
}

/* Utility Classes */
.text-royal-blue {
    color: var(--royal-blue) !important;
}

.text-golden-yellow {
    color: var(--golden-yellow) !important;
}

.text-light-blue {
    color: var(--light-blue) !important;
}

.text-orange {
    color: var(--vibrant-orange) !important;
}

.text-bright-orange {
    color: var(--bright-orange) !important;
}

.bg-royal-blue {
    background-color: var(--royal-blue) !important;
}

.bg-golden-yellow {
    background-color: var(--golden-yellow) !important;
}

.bg-light-blue {
    background-color: var(--light-blue) !important;
}

.bg-orange {
    background-color: var(--vibrant-orange) !important;
}

.bg-orange-gradient {
    background: linear-gradient(135deg, var(--vibrant-orange), var(--bright-orange)) !important;
}

.bg-sunset-gradient {
    background: linear-gradient(135deg, var(--bright-orange), var(--sunset-orange), var(--golden-yellow)) !important;
}

.border-royal-blue {
    border-color: var(--royal-blue) !important;
}

.border-golden-yellow {
    border-color: var(--golden-yellow) !important;
}

.border-light-blue {
    border-color: var(--light-blue) !important;
}

.border-orange {
    border-color: var(--vibrant-orange) !important;
}

/* Animation Keyframes */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes sparkle {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}