/* ==========================================================
   GRILLE GLOBALE B612 — DESKTOP
========================================================== */

:root {

    --b612-container-width: 1280px;
    --b612-container-gutter: 40px;

}


/* ==========================================================
   CONTENEUR COMMUN
========================================================== */

.b612-container {

    width:
        calc(
            100% -
            (var(--b612-container-gutter) * 2)
        );

    max-width:
        var(--b612-container-width);

    margin-left: auto;
    margin-right: auto;

    box-sizing: border-box;
}


/* ==========================================================
   B612 HOME — DESKTOP
   Zone gauche du moteur de recherche
   ========================================================== */


/* ==========================================================
   HERO
========================================================== */

.b612-hero {

    position: relative;

    height: 990px;

    overflow: hidden;

    background-image:
        url("../img/hero-b612.png");

    background-size:
        cover;

    background-position:
        center center;

    background-repeat:
        no-repeat;

    color:
        #ffffff;
}


/* ==========================================================
   CORPS DU HERO
========================================================== */

.b612-hero__body {

    position: relative;

    display: flex;

    min-height: 820px;

    padding:
        40px max(
            var(--b612-container-gutter),
            calc((100vw - var(--b612-container-width)) / 2)
        )
        80px;

    box-sizing: border-box;
}

/* ==========================================================
   CONTENU — ZONE GAUCHE
========================================================== */

.b612-hero__content {

    position: relative;

    z-index: 5;

    width: 50%;

    max-width: 720px;

    padding-top: 55px;
}


.b612-hero__content h1 {

    margin: 0;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 4.5rem;

    font-weight: 500;

    line-height: 4.25rem;

    letter-spacing: -0.025em;
}


.b612-hero__intro {

    margin:
        32px 0 35px;

    font-family:
        'Inter',
        sans-serif;

    font-size: 16px;

    line-height: 1.6;
}


/* ==========================================================
   RECHERCHE AVANCÉE
========================================================== */

.b612-search-advanced {

    position: relative;

    width: 100%;
}


/* ==========================================================
   GRAND CHAMP BLANC
========================================================== */

.b612-search-advanced__searchbox {

    position: relative;

    display: flex;

    align-items: center;

    width: 100%;

    height: 64px;

    background: #ffffff;

    border-radius: 34px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.20);

    overflow: hidden;
}


/* ==========================================================
   CHAMP TEXTE
========================================================== */

.b612-search-advanced__input {

    width: 100%;

    height: 100%;

    padding:
        0 76px 0 28px;

    border: 0;

    outline: none;

    background: transparent;

    color: #172033;

    font-family:
        'Inter',
        sans-serif;

    font-size: 15px;
}


.b612-search-advanced__input::placeholder {

    color: #8b9099;
}


/* ==========================================================
   BOUTON DE RECHERCHE
========================================================== */

.b612-search-advanced__submit {

    position: absolute;

    top: 50%;

    right: 6px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 46px;

    height: 46px;

    padding: 0;

    margin: 0;

    transform:
        translateY(-50%);

    border: none;

    border-radius: 50%;

    background: #11152a;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}


.b612-search-advanced__submit
.fa-magnifying-glass {

    color: #ffffff;

    font-size: 15px;

    line-height: 1;
}


.b612-search-advanced__submit:hover {

    background: #555a65;

    transform:
        translateY(-50%);

    box-shadow:
        0 0 0 2px
        rgba(255,255,255,0.18);
}


/* ==========================================================
   CATÉGORIE
========================================================== */

.b612-search-advanced__category {

    display: flex;

    align-items: center;

    gap: 120px;

    margin-top: 40px;
}


.b612-search-advanced__category-label {

    font-family:
        'Inter',
        sans-serif;

    font-size: 11px;

    color:
        rgba(255,255,255,0.85);
}


.b612-search-advanced__select {

    height: 28px;

    padding:
        0 28px 0 10px;

    border:
        1px solid
        rgba(255,255,255,0.25);

    border-radius: 4px;

    background:
        rgba(7,18,31,0.75);

    color: #ffffff;

    font-family:
        'Inter',
        sans-serif;

    font-size: 11px;
}


/* ==========================================================
   UNIVERS
========================================================== */

.b612-hero__universes-title {

    margin:
        50px 50px 25px 0;

    font-family:
        'Inter',
        sans-serif;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.14em;

    color:
        rgba(255,255,255,0.9);
}


.b612-hero__universes-list {

    display: flex;

    flex-wrap: nowrap;

    gap: 20px;
}


.b612-hero__universe {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    width: 100px;

    height: 100px;

    gap: 7px;

    padding: 8px;

    box-sizing: border-box;

    border:
        1px solid
        rgba(255,255,255,0.18);

    border-radius: 12px;

    background:
        rgba(10,25,45,0.18);

    color: #ffffff;

    text-decoration: none;

    font-family:
        'Inter',
        sans-serif;

    font-size: 10px;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.b612-hero__universe:hover {

    background:
        rgba(255,255,255,0.10);

    border-color:
        rgba(255,255,255,0.50);

    transform:
        translateY(-2px);
}


.b612-hero__universe-icon {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 40px;

    height: 40px;

    font-size: 31px;

    line-height: 1;
}


/* ==========================================================
   ZONE VISUELLE
========================================================== */

.b612-hero__visual {

    position: absolute;

    top: 0;

    right: 0;

    width: 58%;

    height: 100%;

    pointer-events: none;
}


/* ==========================================================
   INDICATEUR LATÉRAL
========================================================== */

.b612-hero__indicator {

    position: absolute;

    right: 25px;

    bottom: 45px;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 12px;

    transform: rotate(-90deg);

    transform-origin: right bottom;

    font-family:
        'Inter',
        sans-serif;

    font-size: 10px;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.b612-hero__indicator-line {

    display: block;

    width: 60px;

    height: 1px;

    background:
        rgba(255,255,255,0.5);
}
