@import url('https://fonts.cdnfonts.com/css/league-spartan');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    /* Colors */
    --primary-color: #ff645c;
    --text-color: #000000;
    --light-text-color: #7F7F7F;
    --bg-primary-color: #FFE9E6;

    /* Fonts */
    --header-font: "League Spartan", Arial, sans-serif;
    --body-font: "League Spartan", Arial, sans-serif;
    --text-font: "League Spartan", Arial, sans-serif;

    /* Sizes */
    --text-size: 1rem;
    --text-size-bold: 0.9rem;
    --label-size: 0.875rem;
}

p,
span {
    font-family: var(--body-font);
}

h1,
h2,
h3 {
    font-family: var(--header-font);
}

/* NAVBAR */
.navbar {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid black;
}

.navbar-container {
    max-width: 1280px;
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0rem 0.5rem;
    scale: calc(0.7);
}

@media (min-width: 768px) {
    .navbar-container {
        padding: 0.8rem 6rem 0.5rem;
    }
}

@media (min-width: 768px) {
    .navbar-container {
        scale: calc(1);
    }
}

@media (min-width: 1700px) {
    .navbar-container {
        scale: calc(1.1);
    }
}

.nav-logo {
    height: 2.5rem;
}

/* CONTACT INFO */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.contact-info-item {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    font-size: var(--text-size);
}

.contact-info-item .item-icon {
    height: 1rem;
    color: var(--primary-color);
    aspect-ratio: 1 / 1;
}

/* FOOTER */
.footer {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #303333;
    color: white;
}

.footer-container {
    max-width: 1280px;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0rem;
    scale: calc(0.7);
}

.copyright {
    text-align: center;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-container {
        padding: 1rem 6rem;
        scale: calc(1);
        flex-direction: row;
    }

    .contact-info {
        flex-direction: row;
    }

    .copyright {
        margin-bottom: 0rem;
        text-align: left;
    }
}

@media (min-width: 1700px) {
    .footer-container {
        scale: calc(1.1);
    }
}

/* FORMULAIRE */
.form-header {
    display: flex;
    flex-direction: column;
    gap: 0.4em;
}

.asterisk {
    color: var(--primary-color);
    font-weight: bolder;
}

.required-info {
    font-size: 0.8em;
}

.form-identity {
    display: flex;
    flex-direction: row;
    gap: 0.8em;
}

/* INPUT */
.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex: 1;
}

.form-field label {
    text-transform: uppercase;
    font-family: var(--body-font);
    letter-spacing: 0.02em;
}

.form-field input[type="text"],
.form-field input[type="email"] {
    padding: 0.5em 0.9em;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    flex: 1;
}

input::placeholder {
    color: rgba(0, 0, 0, 0.25);
}

.form-choice {
    font-family: var(--body-font);
}

/* BUTTON */
.form-btn {
    align-content: center;
    background-color: var(--primary-color);
    border: none;
    color: white;
    border-radius: 5px;
    text-transform: uppercase;
    padding: 1rem 1.2em 0.8rem;
    font-weight: bold;
    font-family: var(--body-font);
    letter-spacing: .1em;
    transition: all 0.3s ease;
}

.form-btn:hover {
    cursor: pointer;
    filter: brightness(0.8);
}