/* ////////////////////////////////////////////////////////
   SECTION : HERO BANNER
   //////////////////////////////////////////////////////// */
.landing-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    gap: 2rem;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--noir);
}

.brand-highlight {
    color: var(--bleu-escrime);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 2.5rem;
}

/* ////////////////////////////////////////////////////////
   SECTION : BOUTONS & VISUEL
   //////////////////////////////////////////////////////// */
.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-hero {
    font-size: 1.2rem;
    padding: 15px 30px;
}

.btn-outline {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid var(--bleu-escrime);
    color: var(--bleu-escrime);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline:hover {
    background-color: var(--bleu-escrime);
    color: white;
}

.hero-visual {
    flex: 1;
    text-align: center;
}

.floating-logo {
    max-width: 300px;
    animation: float 4s ease-in-out infinite;
}

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

/* // RESPONSIVE // */
@media (max-width: 992px) {
    .landing-hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    .hero-actions {
        justify-content: center;
    }
}