:root {
    --primary-blue: #012241;
    --secondary-blue: #071533;
    --primary-yellow : #fdaf1f;
    --alt-bg-color : #f5f5f5;
    --primary-gray: #666666;
}

::selection {
    background-color: var(--primary-blue);
    color: #fff;
}

.text-right {
    text-align: right;
}

.marge-section {
    margin-bottom: 150px;
}

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.container-wide {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

.menu {
    margin-top: 30px;
    margin-bottom: 30px;
}

.menu > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-menu {
    height: 50px;
    width: auto;
}

.cont-item-menu {
    margin-bottom: 0
}

.cont-item-menu > li {
    display: inline;
    margin: 0 10px;
}

.slt-langue {
    border: none;
    outline: transparent;
    font-weight: 500;
}

.item-menu {
    text-decoration: none;
    color: var(--secondary-blue);
    font-weight: 500;
}

.item-menu:hover {
    color: var(--secondary-blue);
    text-decoration: underline;
    text-decoration-color: var(--primary-yellow); /* jaune */
    text-decoration-thickness: 4px;
    text-underline-offset: 15px;
}

.cont-ext-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lien-submit {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: none;
    background-color: var(--primary-yellow);
    color: var(--secondary-blue);
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: none;
    background-color: var(--primary-yellow);
    color: var(--secondary-blue);
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
}

.lien-submit:hover, .btn-submit:hover {
    color: var(--secondary-blue);
    opacity: 0.9;
    transform: translateY(-2px);
}

.hero-home {
    position: relative; /* important */
    height: 90vh;
    width: 100%;
    background-image: url(../images/hero/banner-home.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* overlay */
.hero-home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40vw;
    height: 100%;

    background: linear-gradient(
        to right,
        rgba(1, 34, 65, 0.95) 0%,
        rgba(1, 34, 65, 0.8) 40%,
        rgba(1, 34, 65, 0.4) 70%,
        rgba(1, 34, 65, 0) 100%
    );

    z-index: 1;
}

.hero-home .container,
.hero-home .content {
    position: relative;
    z-index: 2;
    height: 100%;
}

.cont-txt-hh {

}

.cont-txt-hh > h4 {
    color: #fff;
    font-size: 35px;
}

.cont-txt-hh > h1 {
    color: #fff;
    font-size: 70px;
    font-weight: 600;
}

.cont-txt-hh > h1 > span, .cont-txt-hh > h4 > span {
    color: var(--primary-yellow);
}

.cont-txt-hh > p {
    color: #fff;
    font-size: 25px;
    margin-bottom: 50px;
}

.und-titre {
    background-color: var(--primary-yellow);
    width: 5vw;
    height: 10px;
    display: block;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.cont-service {
    background-color: var(--primary-blue);
    padding: 30px;
    border-radius: 20px;
}

.cont-service {
    display: grid;
    gap: 20px;
}

.cont-item-service {
    display: flex;
    gap: 20px;
}

.sep-item-service {
    display: block;
    width: 1px;
    height: 100%;
    background-color: #fff;
}

.item-service {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    flex: 1;
}

.cont-icn-item-service {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-yellow);
    font-size: 20px;

    flex-shrink: 0; /* évite qu’il se déforme */
    transition: 0.3s ease;
}

.titre-section {
    text-align: center;
    display: grid;
    justify-items: center;
    margin-bottom: 50px;
}

.titre-section > h2 {
    font-weight: bolder;
    color: var(--secondary-blue);
    margin-bottom: 20px;
}

.sep-titre {
    background-color: var(--primary-yellow);
    width: 5vw;
    height: 5px;
    display: block;
    border-radius: 10px;
}

.img-sct {
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 300px;
}

.icn-sct {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary-blue);

    flex-shrink: 0;
    transition: 0.3s ease;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin-top: -60px;
}

.cont-img-sct {
    display: grid;
    justify-items: center;
    margin-bottom: 20px;
}

.item-sct {
    text-align: center;
}

.item-sct > h4 {
    font-weight: bolder;
}

.sct-avtg {
    background-color: var(--primary-blue);
    padding-top: 50px;
    padding-bottom: 50px;
}

.cont-avtg {
    display: flex;
    gap: 20px;
}

.item-avtg {
    display: flex;
    gap: 20px;
    flex: 1;
}

.item-avtg > i {
    color: var(--primary-yellow);
    font-size: 50px;
}

.txt-item-avtg {
    color: #fff;
}

.sep-item-avtg {
    display: block;
    width: 1px;
    align-self: stretch;
    background-color: #fff;
}

.sct-itrt {
    margin-top: 50px;
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;

    display: flex;
    align-items: center;
    justify-content: space-between; /* 🔥 important */
    gap: 20px;
}

.txt-itrt {
    display: flex;
    align-items: center;
    gap: 20px;
}

.content-itrt {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.txt-itrt i {
    color: var(--primary-blue);
    font-size: 60px;
}

.txt-itrt h2 {
    color: var(--primary-blue);
    font-weight: bolder;
    margin: 0;
}

.txt-itrt h2 span {
    color: var(--primary-yellow);
}

.txt-itrt p {
    color: var(--primary-gray);
    margin: 0;
}

.pd-page {
    margin: 30px;
}

.pd-page > div {
    display: grid;
    justify-items: center;
}

.cont-logo-pdp {
    text-align: center;
    margin-bottom: 20px;
}

.cont-logo-pdp > img {
    height: 80px;
    width: auto;
}

.rs-pdp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.rs-pdp > a {
    text-decoration: none;
    color: var(--primary-blue);
    font-size: 20px;

    width: 50px;
    height: 50px;
    border: 1px solid var(--primary-gray);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0; /* évite qu’il se déforme */
    transition: 0.3s ease;
}

.rs-pdp > a:hover {
    border: 1px solid var(--primary-yellow);
    color: var(--primary-blue);
}

.contact-pdp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact-pdp > a {
    text-decoration: none;
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 500;
}

.lien-dev {
    text-decoration: underline;
    color: var(--primary-blue);
    font-weight: 500;
}

.lien-dev:hover {
    color: var(--primary-yellow);
}

/* PAGE LOGIN */
.login-page {
    background: linear-gradient(rgba(1,34,65,0.8), rgba(1,34,65,0.8)),
                url('../images/hero/banner-log.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
}

/* CONTAINER */
.login-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CARD */
.login-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* LOGO */
.logo-login {
    height: 60px;
}

/* INPUT */
.login-card label {
    font-weight: 500;
    color: var(--secondary-blue);
}

.login-card .form-control {
    height: 50px;
    border-radius: 8px;
}

/* INPUT ICON */
.input-group-text {
    background: #f5f5f5;
    border: none;
}

/* BUTTON */
.login-card .btn-submit {
    justify-content: center;
}

.forgot-link {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    transition: 0.3s;
}

.forgot-link:hover {
    color: var(--primary-yellow);
    text-decoration: underline;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.cont-forme-cdt {
    padding: 100px 0;
    background-color: var(--alt-bg-color);
}

.t-sct-form {
    font-weight: 500;
    color: var(--primary-yellow);
}

.cont-t-pc {
    text-align: center;
    margin-bottom: 80px;
}

.cont-t-pc > h2 {
    color: var(--primary-blue);
    font-weight: 500;
}

.sct-pb {
    background-color: var(--alt-bg-color);
    padding: 100px 0;
}

.item-parcours {
    position: relative;
    height: 350px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.type-item-parcours {
    background-color: var(--primary-yellow);
    padding: 15px 10px;
    width: auto;
    position: absolute;
    color: var(--primary-blue);
    font-weight: 500;
    left: 0;
    top: 30px;
}