/* Animation Styles */

/* Fade in animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 160, 23, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 160, 23, 0);
    }
}

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover animations for specific elements */
.scientist-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sacha-inchi-badge {
    margin: 20px 0;
}

.bg-gold {
    background-color: var(--accent-gold) !important;
}

/* Video container styles */
.video-container {
    position: relative;
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.video-placeholder {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.6);
}

/* Ingredients section animation */
.ingredients-section {
    transition: all 0.3s ease;
}

.ingredients-section:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Transformation benefits */
.transformation-benefits {
    transition: all 0.3s ease;
}

/* Responsive animations */
@media (max-width: 576px) {
    .video-container {
        height: 250px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 24px;
    }
}