/* animations.css */

/* Fade-in animation */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

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

/* Slide-in-up animation */
.slide-in-up {
    animation: slideInUp 1s ease-in-out;
}

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

/* Slide-in-left animation */
.slide-in-left {
    animation: slideInLeft 1s ease-in-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide-in-right animation */
.slide-in-right {
    animation: slideInRight 1s ease-in-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pulse animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Add animations to elements */
.hero-content h1 {
    animation: slideInUp 1s ease-in-out;
}

.hero-content .tagline {
    animation: slideInUp 1s ease-in-out 0.5s;
    animation-fill-mode: backwards;
}

.hero-buttons .btn {
    animation: slideInUp 1s ease-in-out 1s;
    animation-fill-mode: backwards;
}

.service-card {
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
}

.gallery-item {
    transition: transform 0.3s ease-in-out;
}

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

.team-member {
    transition: transform 0.3s ease-in-out;
}

.team-member:hover {
    transform: translateY(-10px);
}

.class-card {
    transition: transform 0.3s ease-in-out;
}

.class-card:hover {
    transform: translateY(-10px);
}

.package-card {
    transition: transform 0.3s ease-in-out;
}

.package-card:hover {
    transform: translateY(-10px);
}

.process-step {
    transition: transform 0.3s ease-in-out;
}

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