@font-face {
    font-family: 'Lil Grotesk';
    src: url('../lilgrotesk/LilGrotesk-Regular.otf') format('truetype');
}

@font-face {
    font-family: 'Blinds Audience';
    src: url('../blindsaudience/Blinds\ Audience.otf') format('woff');
}

body {
    background-color: white;
    color: #996D2F;
    font-family: 'Lil Grotesk', sans-serif;
    margin: 0;
    padding: 0 1em;
    box-sizing: border-box;
    overflow-x: hidden;
    max-width: 100%;
}

h1 {
    color: #996D2F;
    font-weight: 700;
    font-family: 'Blinds Audience', sans-serif;
    text-align: center;
    margin: 1em 0;
}

h2 {
    color: #996D2F;
    font-weight: 500;
    font-family: 'Blinds Audience', sans-serif;
    font-size: 1.2em;
    text-transform: uppercase;
    margin: 1.5em 0 1em 0;
}

.review {
    width: 100%;
    border: 1px solid #996D2F;
    border-width: 1px 0;
    box-sizing: border-box;
    padding: 1em 0;
    margin-bottom: 1em;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid #996D2F;
    transition: background-color 0.2s ease-in-out;
    margin-right: 0.5em;
    vertical-align: middle;
}

input[type="checkbox"]:checked {
    background-color: #996D2F;
    border-color: #996D2F;
}

input[type="text"],
input[type="date"],
input[type="number"],
textarea {
    width: 20%;
    box-sizing: border-box;
    margin-bottom: 1em;
    border: 1px solid #996D2F;
    border-radius: 10px;
    padding: 0.5em;
    font-family: 'Blinds Audience', sans-serif;
    font-size: 1em;
}

input[type="text"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
textarea:focus {
    outline: none;
    border-color: #996D2F;
    box-shadow: 0 0 5px rgba(153, 109, 47, 0.5);
}

.form-button {
    background: #996D2F;
    border-radius: 0px 10px 0px 10px;
    border: none;
    color: white;
    font-size: 1em;
    margin: 1em 0;
    padding: 0.5em 2em;
    font-family: 'Blinds Audience', sans-serif;
    cursor: pointer;
}

#tellUsMore {
    width: 100%;
    min-height: 50px;
    max-height: 300px;
    resize: vertical;
    overflow-y: auto;
}

/* Styles pour les écrans larges (desktop) */
@media screen and (min-width: 701px) {
    body {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2em;
    }

    h1 {
        font-size: 2.5em;
    }

    input[type="checkbox"] + label {
        display: inline-block;
        margin-right: 1em;
    }

    .form-button {
        width: auto;
    }
}

/* Styles pour les écrans mobiles */
@media screen and (max-width: 700px) {
    body {
        padding: 0 0.5em;
    }

    h1 {
        font-size: 2em;
        margin: 0.5em 0;
    }

    h2 {
        font-size: 1.2em;
        margin: 1em 0 0.5em 0;
    }

    input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }

    input[type="checkbox"] + label {
        display: flex;
        align-items: center;
        margin-bottom: 0.5em;
    }

    input[type="text"],
    input[type="date"],
    input[type="number"],
    textarea {
        font-size: 16px;
        padding: 0.8em;
    }
    input[type="text"],
input[type="date"],
input[type="number"], 
input[type="email"], 
input[type="tel"], 
textarea {
    width: 100%;
}

    .form-button {
        width: 100%;
        padding: 1em;
        font-size: 1.1em;
    }
}