/*!
Theme Name: Ohio-Child
Theme URI: http://ohio.colabr.io/
Author: Colabrio
Author URI: http://colabr.io/
Description: Ohio is a WordPress theme bundled with premium plugins to build a modern and functional website.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: ohio
Text Domain: ohio-child
Tags: ajax, customizer, ecommerce, portfolio, minimal, page builder, responsive, multipurpose, shop, store, woocommerce, wpml

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/
/* =================================
   Multiply Studio - Video Hover
   ================================= */

.multiply-hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.25s ease; /* ← Fade doux à l'entrée */
    z-index: 0;
    pointer-events: none;
}

/* Vidéo visible avec transition */
.video-playing .multiply-hover-video {
    opacity: 1;
    transition: opacity 0.25s ease; /* ← Fade IN */
}

/* EXIT instantané */
.portfolio-item:not(.video-playing) .multiply-hover-video {
    transition: opacity 0s !important; /* ← OUT instantané */
}

/* Image cachée avec fade au hover */
.video-playing img:not(.multiply-hover-video) {
    opacity: 0;
    transition: opacity 0.25s ease; /* ← Fade doux */
}

/* Images Ohio - pas de transition */
.portfolio-item.has-video .image-holder > img.portfolio-archive-image {
    transition: none !important;
    transform: none !important;
}

/* Cache la 2ème image Ohio */
.portfolio-item.has-video .image-holder img.portfolio-archive-image:nth-child(2) {
    display: none !important;
}

/* Image visible */
.portfolio-item.has-video:hover .image-holder img:not(.multiply-hover-video) {
    opacity: 1 !important;
}


/* =================================
   Multiply Studio - Chabot - Uniquement le prompt
   ================================= */

/* Style pour le conteneur IA Lab */
.multiply-ia-lab-container {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #333;
}

/* Style pour la zone de chat */
#multiply-chatbot-container {
    margin: 30px 0;
}

#chatbot-messages {
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Messages du bot */
#chatbot-messages div {
    font-size: 16px;
    line-height: 1.6;
    margin: 15px 0;
}

/* Messages de l'utilisateur */
#chatbot-messages div[style*="text-align: right"] {
    color: #666;
}

/* Bouton Envoyer */
#send-button {
    transition: all 0.3s ease;
}

#send-button:hover {
    background: #FFC700;
    transform: translateY(-1px);
}

/* Input field */
#user-input {
    transition: all 0.3s ease;
    border-color: #ddd;
}

#user-input:focus {
    outline: none;
    border-color: #6c63ff;
    box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.1);
}

