/* ============================================
   SECTION HERO (logo + titre + slogan)
   ============================================ */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px 20px;
    position: relative;
    z-index: 3;
    gap: 6px;
}

/* Logo */
.logo {
    width: 300px;
    filter: drop-shadow(0 0 18px rgba(201, 168, 76, 0.4));
    user-select: none;
}

/* Ornement */
.ornement-1 {
    width: 60px;
    height: auto;
    margin-top: -25px;
    margin-bottom: 15px;
    user-select: none;
}

.ornement-2 {
    width: 60px;
    height: auto;
    user-select: none;
    transform: scaleY(-1); /* met l'image en miroir */
}

/* Sous-titre "Club de dressage..." */
.subtitle {
    font-family: var(--font-cinzel);
    font-size: 15px;
    letter-spacing: 0.25em;
    color: var(--texte-doux);
    text-transform: uppercase;
    user-select: none;
}

/* Double titre */
.double-title {
    position: relative;
    display: inline-block;
    user-select: none;
    margin-top: 50px;
    margin-bottom: 10px;
}

.title-ghost {
    font-family: var(--font-titre);
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 700;
    color: var(--or-fantome);
    letter-spacing: 0.15em;
    /* margin-top: -15px; */
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.title-main {
    font-family: var(--font-titre);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 400;
    color: var(--or);
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
    margin-top: 10px;
    margin-bottom: 0;
    padding: 16px 0;
    text-shadow: 0 0 40px rgba(201, 168, 76, 0.3);
}

/* Depuis 2015 */
.since {
    font-family: var(--font-cinzel);
    font-size: 11px;
    letter-spacing: 0.3em;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--or-clair);
    text-transform: uppercase;
    user-select: none;
}

/* Slogan */
.slogan {
    font-family: var(--font-corps);
    font-style: italic;
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--or-clair);
    letter-spacing: 0.04em;
    user-select: none;
}

/* ============================================
   HERO BANNER (image sous le texte)
   ============================================ */
.hero-banner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-top: -250px;
    z-index: 1;
    user-select: none;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

/* Fondu noir en HAUT de l'image */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, var(--noir), transparent);
    z-index: 2;
}

@media (max-width: 768px) {
    .logo {
        width: 150px;
        margin-bottom: 16px;
    }

    .ornement-1 {
        display: none;
    }

    .ornement-2 {
        display: none;
    }

    .double-title {
        margin-top: 10px;
        margin-bottom: 8px;
    }

    .subtitle {
        font-size: 10px;
        margin-bottom: 16px;
    }

    .title-ghost {
        font-size: clamp(40px, 12vw, 80px);
        letter-spacing: 0.08em;
    }

    .title-main {
        font-size: 8vw;
        letter-spacing: 0.05em;
    }

    .hero-banner {
        margin-top: 25px;
    }

    .hero {
        padding: 60px 16px 10px;
        gap: 4px;
    }

        .since {
        font-size: 10px;
    }

}