/* ============================================================
   page-hero.css — Bannière uniforme GoDataTravel
   Style basé sur le héros de la page d'accueil (index.html)
   ============================================================ */

/* ─── Conteneur principal ─────────────────────────────────── */
.page-hero {
    background-image:
        linear-gradient(-45deg,
            rgba(30,58,95,0.95),
            rgba(30,87,153,0.90),
            rgba(37,99,235,0.88),
            rgba(30,87,153,0.90),
            rgba(30,58,95,0.95));
    background-size: 300% 300%;
    background-position: 0% 50%;
    animation: pgHeroGradient 12s ease infinite;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 2rem 70px;
}

/* ─── Lueur orange haut-droite ───────────────────────────── */
.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249,115,22,0.30) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pgHeroGlow 8s ease-in-out infinite;
    pointer-events: none;
}

/* ─── Lueur orange bas-gauche ────────────────────────────── */
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(249,115,22,0.22) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pgHeroGlow 10s ease-in-out infinite reverse;
    pointer-events: none;
}

/* ─── Ligne d'accent animée en bas ───────────────────────── */
.page-hero .hero-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        #f97316 20%,
        #ffb347 50%,
        #f97316 80%,
        transparent 100%);
    background-size: 200% 100%;
    animation: pgHeroLine 3s linear infinite;
    z-index: 20;
    pointer-events: none;
}

/* ─── Contenu centré ─────────────────────────────────────── */
.page-hero .hero-content {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

/* ─── Titre H1 ───────────────────────────────────────────── */
.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1rem;
}

/* ─── Accents couleur dans le titre ─────────────────────── */
.page-hero h1 .hero-orange,
.page-hero h1 em.hero-orange {
    color: #f97316;
    -webkit-text-fill-color: #f97316;
    font-style: normal;
}

.page-hero h1 .hero-gold {
    color: #f5a500;
    -webkit-text-fill-color: #f5a500;
}

/* ─── Sous-titre ─────────────────────────────────────────── */
.page-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.88);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* ─── Badge / eyebrow (ex: blog, about) ─────────────────── */
.page-hero .hero-badge,
.page-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249,115,22,0.15);
    border: 1px solid rgba(249,115,22,0.35);
    color: #fb923c;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

/* ─── Boutons CTA dans la bannière ──────────────────────── */
.page-hero .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.page-hero .btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 14px 30px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(249,115,22,0.38);
}

.page-hero .btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249,115,22,0.50);
}

.page-hero .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    color: white;
    padding: 14px 28px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.35);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

.page-hero .btn-ghost:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.70);
    transform: translateY(-2px);
}

/* ─── S'assurer que tout contenu passe par-dessus les glows ─ */
.page-hero > *:not(.hero-accent-line) {
    position: relative;
    z-index: 10;
}

/* ─── Animations ─────────────────────────────────────────── */
@keyframes pgHeroGradient {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

@keyframes pgHeroGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.1); }
}

@keyframes pgHeroLine {
    0%   { background-position: -200% 0; }
    100% { background-position:  200% 0; }
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
    .page-hero {
        min-height: 28vh;
        padding: 100px 1rem 50px;
    }

    .page-hero::before,
    .page-hero::after {
        width: 250px;
        height: 250px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .page-hero .hero-btns {
        flex-direction: column;
        align-items: center;
    }
}


/* ============================================================
   VARIANTE : about-hero (layout 2 colonnes préservé)
   Le fond, les glows et la ligne d'accent sont standardisés.
   ============================================================ */
.about-hero {
    background-image:
        linear-gradient(-45deg,
            rgba(30,58,95,0.95),
            rgba(30,87,153,0.90),
            rgba(37,99,235,0.88),
            rgba(30,87,153,0.90),
            rgba(30,58,95,0.95));
    background-size: 300% 300%;
    background-position: 0% 50%;
    animation: pgHeroGradient 12s ease infinite;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(249,115,22,0.28) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(45px);
    animation: pgHeroGlow 8s ease-in-out infinite;
    pointer-events: none;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(249,115,22,0.20) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(45px);
    animation: pgHeroGlow 10s ease-in-out infinite reverse;
    pointer-events: none;
}

.about-hero .hero-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        #f97316 20%,
        #ffb347 50%,
        #f97316 80%,
        transparent 100%);
    background-size: 200% 100%;
    animation: pgHeroLine 3s linear infinite;
    z-index: 20;
    pointer-events: none;
}
