/* Styles pour la page d'accueil de Stellaflow */

/* --- HERO SECTION --- */
.hero-header {
    position: relative;
    z-index: 2; /* Devant les particules */
}

@keyframes float-stella {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-stella-float {
    animation: float-stella 5s ease-in-out infinite;
    max-width: 450px;
}

/* --- NAVBAR --- */
.navbar-transparent {
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar-sticky {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* --- WHAT'S STELLA SECTION --- */
.card-step {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem; /* 12px */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(255, 255, 255, 0.5);
}

.card-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
}

.home-icon-shape {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
}

.home-icon-shape svg {
    width: 28px;
    height: 28px;
    color: white;
}


/* --- VIDEO SECTION --- */
.video-container {
    position: relative;
    cursor: pointer;
}

.video-thumbnail-link {
    display: block;
    position: relative;
}

.video-thumbnail-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem; /* Match l'image */
    transition: background-color 0.3s ease;
}

.video-thumbnail-link:hover::before {
    background-color: rgba(0, 0, 0, 0.4);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cb0c9f; /* Couleur primaire */
    font-size: 2rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    pointer-events: none; /* Le lien <a> gère le clic */
}

.video-thumbnail-link:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: white;
}

/* S'assurer que la modale ne garde pas la vidéo en cours de lecture */
.modal#videoModal {
    z-index: 1060; /* S'assurer qu'elle est au-dessus de tout */
}

.modal#videoModal .modal-body iframe {
    width: 100%;
    height: 100%;
}

/* --- PRICING SECTION --- */
.card-pricing {
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-pricing:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
}

.card-pricing-featured {
    border: 2px solid var(--bs-primary);
    transform: scale(1.05);
}

.card-pricing-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-pricing .list-unstyled li span:first-child {
    font-size: 1.2rem;
}