@import url("/view/fonts/font.css");

:root {
    --color-white: #ffffff;
    --color-black: #000000;
    --color-orange: #F9B233;
    --header-height: 97px;
    --background-image-blur-pixel: 5px;
    --title-font-weight: 700;
    --content-width: 1280px;
    --font-style: normal;
    --line-height: normal
}


body {
    font-family: "Sanchez", serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    color: var(--color-white);
}

main {
    width: var(--content-width);
    margin: auto;

    background-position: top center;
    background-attachment: fixed;
}

main#mainConcept::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;

    display: block;
    background-image: url("/view/medias/erreurCameras.png");
    background-size: cover;
    width: 100%;
    height: 100%;

    transform: scale(1.05);

    -webkit-filter: blur(var(--background-image-blur-pixel));
    -moz-filter: blur(var(--background-image-blur-pixel));
    -o-filter: blur(var(--background-image-blur-pixel));
    -ms-filter: blur(var(--background-image-blur-pixel));
    filter: blur(var(--background-image-blur-pixel));
}

main#mainAccueil::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;

    display: block;
    background-image: url("/view/medias/background_accueil.png");
    background-size: cover;
    width: 100%;
    height: 100%;

    transform: scale(1.05);

    -webkit-filter: blur(var(--background-image-blur-pixel));
    -moz-filter: blur(var(--background-image-blur-pixel));
    -o-filter: blur(var(--background-image-blur-pixel));
    -ms-filter: blur(var(--background-image-blur-pixel));
    filter: blur(var(--background-image-blur-pixel));
}

header,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Saira Stencil", sans-serif;
}

h1 {
    color: var(--color-orange);
}

header {
    justify-content: center;
    height: var(--header-height);
    width: 100%;
    background-color: var(--color-black);
    padding: 10px 16px 10px 16px;
    z-index: 1000;

    font-size: 32px;
    font-style: var(--font-style);
    font-weight: var(--title-font-weight);
    line-height: var(--line-height);
}

header nav {
    display: flex;
    justify-content: right;
    align-items: center;
    flex-wrap: wrap;
    /* max-width: 1180px;
    margin: 0 auto; */
    padding-right: 100px;
    height: var(--header-height);
    gap: 32px;
}

header a {
    text-decoration: none;
    color: var(--color-white);
    inset: 0 0 auto 0;
}

header a:visited {
    color: var(--color-white);
}

#logoLockdown {
    position: absolute;
    width: 114px;
    height: 77px;
    z-index: 1001;
    top: 20px;
}

#rightPartOfHeader {
    position: absolute;
    right: 20px;
    top: calc(var(--header-height)/2);
}

footer {
    height: 429px;
    padding: 40px;
    background-color: var(--color-black);
    transform: scale(1.05);
}

a {
    text-decoration: none;
    color: var(--color-white);
}

p {
    font-size: 28px;
    font-style: var(--font-style);
    font-weight: 400;
    line-height: var(--line-height);
}

h1 {
    font-size: 64px;
    font-style: var(--font-style);
    font-weight: var(--title-font-weight);
    line-height: var(--line-height);
}

h2 {
    font-size: 40px;
    font-style: var(--font-style);
    font-weight: var(--title-font-weight);
    line-height: var(--line-height);
}

.orangeColor {
    color: var(--color-orange);
}

section {
    margin-bottom: 40px;
}

.concept_grid_2columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 10px;
}

.flexFullCentered {
    display: flex;
    align-items: center;
    justify-content: center;
}

.concept_section_red_background {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

#conceptReviewSectionBackground {
    height: 590px;
}

#conceptContactSectionBackground {
    height: 204px;
}

#conceptReserverSectionBackground {
    height: 235px;
}

.lastSection {
    margin-bottom: 0px;
}

.concept_section_red_background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: #a12d22;
    filter: blur(2px);
    z-index: -1;
    transform: scale(1.05);
}


.concept_grid_3columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: var(--content-width);
    margin: 0 auto;
    width: 100%;
}

.acceuil_cards {
    width: 100%;
    max-width: 372px;
    height: 544px;
    border-radius: 40px;
    background: rgba(72, 72, 72, 0.48);
    margin: 0 auto 30px auto;
}

.accueil_cards_title {
    margin: 16px 0px;
    font-size: 32px;
    font-family: "Saira Stencil", sans-serif;
    font-weight: var(--title-font-weight);
    line-height: var(--line-height);
    font-style: var(--font-style);
}

.accueil_cards_text {
    padding: 0px 20px;
}

.concept_review_card {
    width: 100%;
    max-width: 372px;
    height: 372px;
    border-radius: 40px;
    background: rgba(72, 72, 72, 0.48);
}

.concept_review_name {
    font-size: 32px;
    font-weight: var(--title-font-weight);
    padding: 0px 16px;
    margin: 20px 0px 0px 0px;
}

.concept_review_littleName {
    font-size: 16px;
    font-weight: var(--title-font-weight);
    padding: 0px 16px;
    margin: 0;
}

.concept_review_ratings {
    padding: 6px 16px;
}

.concept_review_text {
    font-size: 16px;
    padding: 12px 16px 0px 16px;
}

.stylizedButtons {
    position: relative;
}

.stylizedButtons span {
    position: absolute;
    text-decoration: none;
    color: var(--color-white);
    font-family: "Saira Stencil", sans-serif;
    font-size: 40px;
    font-style: var(--font-style);
    font-weight: var(--title-font-weight);
    line-height: var(--line-height);
}

#contactTextForButton {
    left: 38px;
    top: 8px;
}

#reserverTextForButton {
    left: 25px;
    top: 9px;
}

#decouvrirTextForButton {
    left: 37px;
    top: 15px;
    font-size: 32px;
}

#smallReserverTextForButton {
    left: 45px;
    top: 17px;
    font-size: 30px;
}

#smallConceptTextForButton {
    left: 53px;
    top: 16px;
    font-size: 30px;
}

.stylizedButtons span.smallInfoTextForButton {
    left: 23px;
    top: 21px;
    font-size: 24px;
}

#voirPlusAvisTextForButton {
    left: 16px;
    top: 20px;
    font-size: 26px;
}

#vousInscrireTextForButton {
    left: 24px;
    top: 18px;
    font-size: 28px;
}

.maxWidthContent {
    width: 1280px;
    margin: auto;
}

.marginTop60px {
    margin-top: 60px;
}

.marginBottom30px {
    margin-bottom: 30px;
}



















footer #coryright {
    font-size: 20px;
}

footer a u {
    font-size: 20px;
}

footer p {
    font-size: 24px;
    margin-top: 0px;
    margin-bottom: 16px;
}

footer a {
    font-size: 24px;
}

footer .footerlistDiv {
    padding-bottom: 24px;
}

#footerNewsletterInputDiv {
    position: relative;
}

#footerNewsletterInput {
    position: absolute;
    top: 7px;
    left: 10px;
    height: 30px;
    width: 185px;

    background-color: var(--color-black);
    color: var(--color-white);
    border: 0px;
}