@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@1,800&family=Nunito:wght@400;1000&display=swap');

body {
    margin: 0;
}

header {
    display: flex;
    background: #F5EBDC;
    height: 60px;
    justify-content: space-between;
    align-items: center;
}

.menuburger a:hover {
    filter: brightness(1.1);
    cursor: pointer;
    box-shadow: -4px 4px 5px .05rem black;

}

.menuburger a {
    color: #502314;
    text-decoration: none;
    display: block;
    padding: 10px 20px;
    border-bottom: 2px solid rgb(80, 35, 20, .5);
    max-width: 300px;
    background: white;
    font-family: Nunito;
    font-weight: 1000;
    width: 150px;
}

.menuburger input[type="checkbox"],
.menuburger .fa-bars {
    position: absolute;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
}

.menuburger .fa-bars {
    font-size: 48px;
    pointer-events: none;
}

.menuburger input[type="checkbox"] {
    opacity: 0;
}

#menuburger-nothing {
    display: block;
    border-bottom: 3px solid rgb(80, 35, 20);
    padding: 10px 20px;
    max-width: 300px;
    background: white;
    height: 10px;
}

.menuburger {
    color: white;
    position: relative;
    margin-left: 20px;
    margin-bottom: 40px;
}

.menuburger nav {
    display: none;
}

.nav-absolute {
    position: absolute;
    top: 34px;
    left: -60px;
}

.menuburger li {
    list-style: none;
    width: 150px;
}

.menuburger input:checked~nav {
    display: block;
}

.menuburger input:checked~.fa-bars {
    display: none;
}

#image-logo {
    width: 120px;
    position: absolute;
    left: 190px;
    top: 0px;
}

.logo-menu {
    display: flex;
    align-items: center;
}


.menuflex ul {
    display: flex;
    padding: 0;
    justify-content: center;
    margin-right: 20px;
    gap: 20px;
}

.menuflex li {
    font-family: Nunito;
    font-weight: 1000;
    font-size: 11pt;
    list-style: none;
}

.menuflex li:hover {
    font-size: 12pt;
}

.menuflex a {
    color: #502314;
    text-decoration: none;
    padding: 0;
}

#btn-contact {
    background: #502314;
    color: #F5EBDC;
    padding: 5px 10px;
    border-radius: 4px;
}

.menuflex a:hover {
    filter: brightness(1.5);
}

/*---------------- fin CSS header ------------- */

main {
    background: #FAF5ED;
    margin: 0;
    padding: 50px 100px 60px 100px;
}

main h1 {
    font-family: Nunito;
    font-weight: 1000;
    font-size: 24pt;
    color: #502314;
    text-align: center;
    margin-bottom: 30px;
}

#text-intro-contact {
    font-family: Nunito;
    font-weight: 400;
    font-size: 12pt;
    text-align: center;
    margin: auto;
}

.container-form {
    font-family: Nunito;
    font-weight: 400;
    font-size: 12pt;
    background-color: #BB1E32;
    color: white;
    padding: 10px 90px 40px 90px;
    text-align: center;
    border-radius: 40px;
    box-shadow: -5px 8px 13px 0.05rem #000000b8;
    margin-top: 40px;
}

.container-form h2 {
    text-align: center;
    margin-top: 10px;
    text-shadow: -1px 1px 1px black;
    font-size: 18pt;
}

.container-form input {
    align-self: center;
}

.container-form label b {
    text-shadow: -1px 1px 1px black;
}

.container-name div {
    display: flex;
    flex-direction: column;
}

.container-name input {
    border-radius: 6px;
    font-family: Nunito;
    font-weight: 400;
    font-size: 10pt;
    width: 500px;
    margin-top: 3px;
    margin-bottom: 16px;
    border: 2px solid white;
}

.container-name input::placeholder {
    font-family: Nunito;
    font-weight: 400;
    font-size: 10pt;
    opacity: .7;
    color: gray;
    font-style: italic;
}

#text-choix-burgers {
    font-family: Nunito;
    font-weight: 400;
    font-size: 12pt;
    text-shadow: -1px 1px 1px black;
    margin-top: 30px;
}

.container-burgers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
}

.burgers {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.burgers img {
    width: 250px;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: -5px 8px 13px 0.05rem #000000b8;
}

.burgers img:hover {
    width: 260px;

}

.container-burgers select {
    font-family: Nunito;
    font-weight: 400;
    font-size: 10pt;
    color: rgba(0, 0, 0, 0.671);
    border-radius: 6px;
    width: 150px;
    text-align: center;
    margin-bottom: 10px;
}

.text-desc-burgers {
    font-family: Nunito;
    font-weight: 400;
    font-size: 10pt;
    margin-bottom: 3px;
}

.container-title-burgers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 5px;
    font-size: 14pt;
}

.container-title-burgers b:hover {
    text-shadow: 1px 4px 4px black;
}

.container-textarea {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.container-textarea textarea {
    margin-top: 20px;
    margin-bottom: 40px;
    resize: none;
}

#btn-envoyer-commande {
    background: white;
    color: #502314;
    font-family: Nunito;
    font-weight: 1000;
    font-size: 14pt;
    padding: 5px 20px;
    border-radius: 30px;
    border: 5px solid #502314;
}

#btn-envoyer-commande:hover {
    font-size: 16pt;
    filter: brightness(1.5);
    cursor: pointer;
}

.container-contact {
    margin-top: 80px;
    background: #F5EBDC;
    text-align: center;
    padding: 40px 60px;
    border-top-right-radius: 180px;
    border-bottom-left-radius: 180px;
}

.container-contact h2 {
    font-family: Nunito;
    font-weight: 1000;
    font-size: 18pt;
    color: #502314;
    margin-bottom: 10px;
    margin-top: 0;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.32);

}

.container-contact h3 {
    font-family: Nunito;
    font-weight: 1000;
    font-size: 12pt;
    color: #BB1E32;
    margin-bottom: 10px;
    margin-top: 30px;
}

.container-contact p {
    font-family: Nunito;
    font-weight: 400;
    font-size: 12pt;
    color: black;
    margin: 0;
    line-height: 1.5;
}

.container-contact b {
    font-family: Nunito;
    font-size: 14pt;
    color: #502314;
}

#little-text {
    font-size: 9pt;
    opacity: .7;
}

.container-signup {
    background: #502314;
    color: white;
    text-align: center;
    margin: 100px -100px 50px -100px;
    padding: 40px 0px;
    height: 150px;
}

.container-signup h2 {
    margin: 0;
    font-family: Nunito;
    font-weight: 1000;
    font-size: 18pt;
}

.container-signup p {
    margin: auto;
    font-family: Nunito;
    font-weight: 400;
    font-size: 12pt;
    margin-top: 10px;
    margin-bottom: 30px;
    width: 700px;
}

.container-signup a {
    font-family: Nunito;
    font-weight: 1000;
    font-size: 14pt;
    background: #BB1E32;
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    border-radius: 10px;
}

.container-signup a:hover {
    font-size: 16pt;
    filter: brightness(1.2);
}

/*------------- fin CSS main ------------------ */
footer {
    background-color: #502314;
}

#logo-background {
    background-color: #F5EBDC;
    border-radius: 30px;
    width: fit-content;
}

#logo-background img {
    width: 80px;
    margin: auto;
    margin-top: 5px;
}

.container-app {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    padding-top: 40px;
}

.left-app {
    display: flex;
}

.left-app p {
    font-family: Nunito;
    font-weight: 400;
    font-size: 8pt;
    color: white;
    margin-left: 20px;
    margin-right: 100px;
}

#download {
    width: 400px;
}

.line-footer {
    width: 95%;
    justify-content: center;
    height: 1px;
    background-color: #ffffff9d;
    border-radius: 5px;
}

.container-networks {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}

.container-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.container-networks p {
    font-family: Nunito;
    font-weight: 1000;
    font-size: 24pt;
    color: white;
    margin-bottom: 30px;
}

.container-networks img {
    width: 35px;
}

.container-links {
    display: flex;
    flex: 1;
    justify-content: center;
    margin: auto;
    gap: 80px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.container-links li {
    list-style: none;
    margin: 5px 0;
}

.container-links ul {
    padding: 0;
    text-align: left;
}

.container-links h4 {
    font-family: Nunito;
    font-weight: 1000;
    font-size: 12pt;
    color: white;
    margin: 0;
    text-align: left;
}

.container-links a {
    text-decoration: none;
    font-family: Nunito;
    font-weight: 400;
    font-size: 9pt;
    color: white;
}

.container-links a:hover {
    font-size: 10pt;
    text-shadow: -5px 4px 1px 0rem #00000091;
}

#last-line {
    margin-bottom: 0;
}

.container-mentions {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
}

.container-mentions nav {
    width: 800px;
    padding: 0;
}

.container-mentions ul {
    display: flex;
    padding: 0;
    text-align: center;
    margin-top: 5px;
}

.container-mentions li {
    list-style: none;
    flex: 1;

}

.container-mentions a {
    text-decoration: none;
    text-align: left;
    font-family: Nunito;
    font-weight: 400;
    font-size: 7pt;
    color: white;
}

.container-mentions p {
    font-family: Nunito;
    font-weight: 400;
    font-size: 7pt;
    color: white;
    width: 320px;
    margin-top: 5px;
}



/* RESPONSIVE */

@media screen and (max-width: 1150px) {
    .logo-menu img {
        display: none;
    }
}

/* max-width 850px*/

@media screen and (max-width: 990px) {
    header {
        display: flex;
        flex-direction: column;
        height: fit-content;
        justify-content: left;
        align-items: start;
        padding: 0;
        padding-top: 10px;
        padding-left: 30px;
    }

    .menuburger {
        width: 200px;
    }


    .menuflex ul {
        display: flex;
        flex-direction: column;
        justify-content: left;
    }

    .menuflex li {
        font-size: 16pt;
    }

    .menuflex li:hover {
        font-size: 18pt;
    }

    /* HEADER */
    .burgers {
        display: flex;
        flex-direction: column;
    }

    .burgers img {
        width: 180px;
    }

    .burgers img:hover {
        width: 190px;
    }

    .container-title-burgers label {
        font-size: 10pt;
    }

    .text-desc-burgers {
        font-size: 8pt;
    }

    .burgers select {
        font-size: 8pt;
    }


    /* FOOTER */

    footer {
        padding-top: 20px;
    }

    .container-app {
        display: flex;
        align-items: center;
        flex-direction: column;
        margin: auto;
        width: fit-content;
        align-items: center;
        padding: 0;
    }

    .left-app {
        display: flex;
        width: 550px;
        justify-content: center;
        align-items: center;
    }

    .left-app p {
        margin: 0;
        margin-left: 10px;
        width: 380px;
        text-align: center;
    }

    .container-app img {
        margin-top: 30px;
    }

    .container-links {
        display: flex;
        gap: 30px;
        width: fit-content;
    }

    .footer-links h2,
    .footer-links li {
        text-align: center;
    }

    .container-mentions ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .container-mentions li {
        font-size: 11pt;
        line-height: .7;
        margin-bottom: 15px;
    }

}



@media screen and (max-width: 850px) {

    .container-name input {
        width: 420px;
    }

    .container-form img {
        width: 140px;
    }

    .container-title-burgers label {
        font-size: 8pt;
    }

    .text-desc-burgers {
        font-size: 6pt;
    }

    .burgers select {
        font-size: 6pt;
    }
}


@media screen and (max-width: 500px) {

    header {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menuburger {
        position: absolute;
        top: 0;
        left: 0;
    }

    .menuflex {
        padding: 0;
        margin: auto;
        margin-top: 20px;
    }

    /* HEADER */
    .container-form h2 {
        font-size: 14pt;
    }

    .container-name b {
        font-size: 8pt;
    }

    .container-name input {
        width: 150%;
    }

    .container-burgers img {
        width: 68px;
    }

    .container-burgers {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: start;
    }

    .container-burgers img:hover {
        width: 110%;
    }

    .container-title-burgers label {
        font-size: 6pt;
    }

    .text-desc-burgers {
        font-size: 4pt;
    }

    .burgers select {
        font-size: 4pt;
        width: 80%;
    }

    #btn-envoyer-commande {
        font-size: 8pt;
        border: 1px;
        border-radius: 50px;
    }

    #btn-envoyer-commande:hover {
        font-size: 9pt;
    }

    .container-textarea {
        width: 100%;
    }

    .container-textarea b {
        font-size: 10pt;
    }

    .container-signup {
        width: fit-content;
    }

    .container-contact {
        border-bottom-left-radius: 50px;
        border-top-right-radius: 50px;
    }

    .container-contact p {
        font-size: 10pt;
    }

    .container-contact h3 {
        font-size: 10pt;
    }

    .container-contact b {
        font-size: 12pt;
    }

    .container-signup p {
        width: 80%;
        font-size: 8pt;
    }

    .container-signup h2 {
        font-size: 14pt;
    }

    .container-signup a {
        font-size: 12pt;
    }

    .container-signup a:hover {
        font-size: 13pt;
    }

    /* FOOTER */

    .download-container {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    #download {
        width: 60%;
        margin: auto;
    }


    .left-app p {
        font-size: 7pt;
        margin: auto;
    }

    .left-app {
        margin-left: 0;
        margin-top: 20px;
        width: 90%;
        padding: 0;
        justify-self: left;
    }

    #logo-background img {
        width: 70px;
    }

    #logo-background {
        border-radius: 15px;
    }

    .container-networks p {
        font-size: 16pt;
    }

    .container-networks img {
        width: 20px;
    }

    .container-links h4 {
        font-size: 9pt;
        text-align: center;
    }

    .container-links {
        gap: 10px;
    }

    .footer-links a {
        font-size: 7pt;
        text-align: center;
    }

    .footer-links a:hover {
        font-size: 7.5pt;

    }

    .container-mentions a {
        font-size: 5pt;
        text-align: center;
    }

    .container-mentions li {
        margin-bottom: 3px;
    }

    .container-mentions p {
        font-size: 5pt;
        text-align: right;
    }
}



@media screen and (max-width: 360px) {

    main {
        padding: 50px 20px 60px 20px;
    }

    main h1 {
        font-size: 26px;
    }

    main h2 {
        font-size: 22px;
    }

    main p {
        font-size: 13px;
    }

    .container-form {
        width: fit-content;
        margin: 0;
        margin-top: 20px;
        padding: 10px 20px;
    }

    .container-form input {
        width: 140px;
    }

    .container-form label {
        font-size: 13px;
    }

    .container-form input::placeholder {
        font-size: 10px;
    }

    .burgers label {
        font-size: 6px;
    }

    .container-title-burgers label {
        font-size: 8px;
    }

    .container-title-burgers input {
        margin: 0;
        width: fit-content;
    }

    .burgers select {
        font-size: 6px;
        color: black;
        text-align: center;
        width: 80px;
    }

    .container-textarea {
        font-size: 13px;
        font-weight: 400;
        width: 100%;
    }

    textarea::placeholder {
        font-size: 10px;
        font-family: Nunito;
        font-style: italic;
    }

    .container-contact {
        width: fit-content;
    }

    .container-contact p {
        font-size: 13px;

    }

    .container-signup {
        width: 100%;
        margin: 0;
        margin-left: -20px;
        padding: 80px 20px;
        padding-top: 20px;
        margin-top: 30px;
    }

    .container-signup p {
        font-size: 13px;
    }

    /* FOOTER */

    footer {
        width: 100%;
    }

    footer img {
        width: 100%;
    }

    footer div {
        width: 100%;
    }

    footer p {
        width: 100%;
    }

    #logo-background {
        width: fit-content;
    }

    .left-app {
        width: 100%;
    }

    .left-app p {
        font-size: 8px;
        width: fit-content;
    }

    .container-mentions li {
        gap: 2px;
    }

    .container-links li {
        font-size: 6px;
    }

    .container-mentions li {
        font-size: 4px;
        margin-bottom: 10px;
        line-height: 1.3;
    }
}