/******************************
  HERO HEADER — VERSION STABLE
*******************************/

.dclik-header {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;

    /* Fond + couleurs */
    background: #0a0a0a;
    color: #fff;

    /* Hauteur écran par défaut */
    min-height: 100vh;

    /* Padding desktop */
    padding: 8rem 5% 6rem;
}

/*************
   iPhone fix
**************/
@supports (min-height: 100svh) {
    .dclik-header {
        min-height: 100svh;
    }
}

/*************
  Background
**************/
.dclik-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 20% 30%, rgba(99,102,241,0.18), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(236,72,153,0.15), transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(34,211,238,0.13), transparent 70%),
        #0a0a0a;
}

/*************
  Badge
**************/
.dclik-badge {
    position: absolute;
    top: 3rem;
    right: 3rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(4, 238, 145, 0.35);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: #04ee91;
    font-size: .9rem;
    font-weight: 600;
}

/*************
  Contenu
**************/
.dclik-hero-content {
    position: relative;
    z-index: 12;
    max-width: 900px;
}

.dclik-hero-content h1 {
    font-size: 6rem;
    font-weight: 900;
    margin: 0 0 2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.dclik-hero-content h1 span {
    color: #fff;
}

.dclik-highlighted-main {
    background: linear-gradient(135deg, #04ee91, #008b8d);
    -webkit-background-clip: text;
    color: transparent;
}

.dclik-highlighted-social {
    color: #ffad00;
    text-shadow: 0 0 30px rgba(255, 173, 0, 0.6);
}

.dclik-hero-paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.88);
    margin-bottom: 3rem;
}

.dclik-hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.dclik-hero-btn {
    background: linear-gradient(135deg, #7b23f4, #222edb);
    color: #fff;
    text-decoration: none;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dclik-cta-surge {
    text-decoration: none;
    color: #fff;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    border: 2px solid #04ee91;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/***************************
   RESPONSIVE : TABLETTES
****************************/
@media (max-width: 1024px) {
    .dclik-header {
        padding: 6rem 2rem;
    }
    .dclik-hero-content h1 {
        font-size: 4rem;
    }
}

/****************************
   RESPONSIVE : MOBILES
*****************************/
@media (max-width: 768px) {
    .dclik-header {
        padding: 5rem 1.5rem 3rem;

        /* IMPORTANT : remettre la hauteur d'écran */
        min-height: 100vh;
    }

    @supports (min-height: 100svh) {
        .dclik-header {
            min-height: 100svh;
        }
    }

    .dclik-hero-content h1 {
        font-size: 2.5rem;
    }

    .dclik-hero-paragraph {
        font-size: 1rem;
    }

    .dclik-hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .dclik-hero-btn,
    .dclik-cta-surge {
        width: 100%;
        text-align: center;
    }

    .dclik-badge {
        top: 1rem;
        right: 1rem;
        font-size: .75rem;
        padding: .75rem 1.5rem;
    }
}

/***************************
   RESPONSIVE : VERY SMALL
****************************/
@media (max-width: 480px) {
    .dclik-hero-content h1 {
        font-size: 2rem;
    }
}

/*************************************
   SUPPRESSION DES MARGES GUTENBERG
*************************************/
.entry-content > .wp-block-html:first-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
