/* Custom styles for Ma Fitness Gym */

/* Animation for fade in from down */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in-down {
    animation: fadeInDown 1s ease-out;
}

/* Animation for fade in from left */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.animate-fade-in-left {
    animation: fadeInLeft 1s ease-out;
}

/* Animation for fade in from right */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.animate-fade-in-right {
    animation: fadeInRight 1s ease-out;
}

/* Animation for zoom in */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.animate-zoom-in {
    animation: zoomIn 0.8s ease-out;
}

/* Custom hover effects for cards */
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Gradient background for header with more appealing colors */
.header-gradient {
    background: linear-gradient(135deg, #2c5282, #63b3ed);
}

/* Background for sections with a vibrant yet professional tone */
.section-bg {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('assets/images/gym-bg.jpg') no-repeat center center;
    background-size: cover;
}

/* Add more custom styles as needed */
