/* Save this in css/style.css */
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --edu-blue: #39B5E6;
    /* From your logo's top circle */
    --edu-gold: #EAB531;
    /* From your logo's right circle */
    --edu-brown: #9E502B;
    /* From your logo's bottom circle */
    --bg-light: #F9FAFB;
    --text-main: #1A1A1A;
}

/* Custom Utility Classes for your brand */
.bg-edu-blue {
    background-color: var(--edu-blue);
}

.text-edu-blue {
    color: var(--edu-blue);
}

.bg-edu-gold {
    background-color: var(--edu-gold);
}

.text-edu-gold {
    color: var(--edu-gold);
}

.btn-primary {
    background-color: var(--edu-brown);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(158, 80, 43, 0.3);
}

/* Smooth Scrolling for that Premium feel */
html {
    scroll-behavior: smooth;
}

/* Infinite Logo Marquee */
/* Add this to your css/style.css */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes marquee2 {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(100%);
    }
}

.animate-marquee {
    display: flex;
    animation: marquee 30s linear infinite;
}

.animate-marquee2 {
    display: flex;
    animation: marquee2 30s linear infinite;
}

/* Optional: Pause on hover so people can see the logos clearly *
.group:hover .animate-marquee:hover .animate-marquee2:hover {
    animation-play-state: paused;
}*/


/* Bounce for Games *
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.group:hover .group-hover\:bounce {
    animation: bounce 0.6s infinite ease-in-out;
}

/* Game Icon */
/* 1. Define the Multicolor Aurora Shift */
@keyframes aurora-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* 2. Apply the Constant Glow */
.animate-aurora-glow {
    background-size: 200% 200%;
    /* Idle speed: 10 seconds for a full color cycle */
    animation: aurora-shift 10s ease infinite;
    transition: animation-duration 0.5s ease-in-out;
}

/* 3. The "Power Up" on Hover */
.group:hover .animate-aurora-glow {
    /* Fast speed: 2 seconds for a full color cycle */
    animation-duration: 2s;
    /* Increase brightness slightly on hover */
    filter: brightness(1.2);
}


/* Gallery */
.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    border-color: transparent;
    transform: scale(1.05);
}