/* ============================================================
   PronoFury — Feuille de styles principale
   Palette : vert foncé #1a4d2e | blanc #ffffff | doré #d4af37
============================================================ */

/* --- Variables ------------------------------------------- */
:root {
    --pf-green-dark:   #1a4d2e;
    --pf-green-mid:    #2d7a4f;
    --pf-green-light:  #3da06b;
    --pf-gold:         #d4af37;
    --pf-gold-hover:   #f0cc55;
    --pf-white:        #ffffff;
    --pf-gray-light:   #f4f6f4;
    --pf-gray-dark:    #1c1c1c;
    --pf-text-muted:   #8a9b8e;

    --pf-font-main:    'Segoe UI', system-ui, -apple-system, sans-serif;
    --pf-radius:       0.5rem;
    --pf-radius-lg:    1rem;
    --pf-shadow:       0 4px 20px rgba(0, 0, 0, 0.25);
    --pf-transition:   0.2s ease;
}

/* --- Reset & base ---------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--pf-font-main);
    background-color: var(--pf-gray-light);
    color: var(--pf-gray-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Utilitaires ----------------------------------------- */
.pf-gold        { color: var(--pf-gold); }
.pf-green       { color: var(--pf-green-dark); }
.bg-pf-dark     { background-color: var(--pf-green-dark); }

/* --- Navbar ---------------------------------------------- */
.pf-navbar {
    background-color: var(--pf-green-dark);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.pf-logo-icon {
    font-size: 1.4rem;
}

.pf-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pf-white);
    letter-spacing: 0.5px;
}

.pf-navbar .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: color var(--pf-transition);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.pf-navbar .nav-link:hover,
.pf-navbar .nav-link.active {
    color: var(--pf-gold);
}

/* Bouton doré */
.btn-pf-gold {
    background-color: var(--pf-gold);
    color: var(--pf-green-dark);
    border: none;
    transition: background-color var(--pf-transition), transform var(--pf-transition);
}

.btn-pf-gold:hover {
    background-color: var(--pf-gold-hover);
    color: var(--pf-green-dark);
    transform: translateY(-1px);
}

/* --- Hero ------------------------------------------------ */
.pf-hero {
    background: linear-gradient(135deg, var(--pf-green-dark) 0%, var(--pf-green-mid) 60%, #1e6b3a 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
    color: var(--pf-white);
}

/* Motif terrain de foot en arrière-plan */
.pf-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 70%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 49px,
            rgba(255,255,255,0.04) 49px,
            rgba(255,255,255,0.04) 50px
        );
    pointer-events: none;
}

/* Cercle décoratif */
.pf-hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(212, 175, 55, 0.12);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.pf-hero-content {
    position: relative;
    z-index: 1;
}

.pf-hero-badge {
    display: inline-block;
    background-color: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--pf-gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 2rem;
    margin-bottom: 1.25rem;
}

.pf-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.pf-hero h1 .pf-gold {
    display: block;
}

.pf-hero p.lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 520px;
    margin-bottom: 2rem;
}

.pf-hero-actions .btn {
    padding: 0.7rem 1.6rem;
    font-size: 1rem;
    border-radius: var(--pf-radius);
}

.pf-hero-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

.pf-hero-actions .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--pf-white);
}

/* Stats dans le hero */
.pf-hero-stats {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pf-stat-item .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--pf-gold);
    line-height: 1;
}

.pf-stat-item .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
}

/* Ballon décoratif dans le hero */
.pf-hero-ball {
    font-size: clamp(5rem, 15vw, 10rem);
    line-height: 1;
    opacity: 0.15;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    pointer-events: none;
    user-select: none;
}

/* --- Sections -------------------------------------------- */
.pf-section {
    padding: 4rem 0;
}

.pf-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pf-green-dark);
    margin-bottom: 0.5rem;
}

.pf-section-title span {
    color: var(--pf-gold);
}

.pf-section-subtitle {
    color: var(--pf-text-muted);
    margin-bottom: 2.5rem;
}

/* --- Cards features -------------------------------------- */
.pf-feature-card {
    background: var(--pf-white);
    border-radius: var(--pf-radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--pf-shadow);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform var(--pf-transition), box-shadow var(--pf-transition);
    height: 100%;
}

.pf-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pf-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--pf-radius);
    background-color: rgba(26, 77, 46, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.pf-feature-card h3 {
    font-size: 1.1rem;
    color: var(--pf-green-dark);
    margin-bottom: 0.5rem;
}

.pf-feature-card p {
    font-size: 0.9rem;
    color: var(--pf-text-muted);
    margin-bottom: 0;
}

/* --- Section CTA ----------------------------------------- */
.pf-cta {
    background: linear-gradient(135deg, var(--pf-green-dark), var(--pf-green-mid));
    color: var(--pf-white);
    padding: 4rem 0;
    text-align: center;
}

.pf-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pf-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* --- Footer ---------------------------------------------- */
.pf-footer {
    background-color: #111d14;
    color: rgba(255, 255, 255, 0.75);
    margin-top: auto;
}

.pf-footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.4rem;
    transition: color var(--pf-transition);
}

.pf-footer-link:hover {
    color: var(--pf-gold);
}

.pf-footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
}

.pf-social-link {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--pf-transition), transform var(--pf-transition);
    display: inline-block;
}

.pf-social-link:hover {
    color: var(--pf-gold);
    transform: translateY(-2px);
}

/* --- Responsive ------------------------------------------ */
@media (max-width: 767.98px) {
    .pf-hero {
        padding: 3rem 0;
        text-align: center;
    }

    .pf-hero p.lead {
        margin-left: auto;
        margin-right: auto;
    }

    .pf-hero-actions {
        justify-content: center;
    }

    .pf-hero-ball {
        display: none;
    }

    .pf-hero-stats {
        justify-content: center;
    }
}
