/* Sticky Footer & Global Cleanups */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: "Roboto Light", sans-serif;
    /* Default font */
}

main {
    flex: 1;
    /* Pushes footer down */
}

footer {
    margin-top: auto;
}

@media screen and (min-width: 901px) {


    /* Conteneur de la barre de recherche */
    .search-container {
        display: flex;
        align-items: center;
        border: 2px solid #ddd;
        border-radius: 25px;
        padding: 5px;
        background-color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Style du champ de texte de la barre de recherche */
    #search {
        border: none;
        padding: 10px;
        font-size: 16px;
        outline: none;
        width: 200px;
    }

    /* Style du bouton de recherche */
    .button-search {
        background-color: #4CAF50;
        color: white;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        border-radius: 5px;
    }

    .button-search:hover {
        background-color: #45a049;
    }


    /* fin test */
    /* Footer css */
    footer {
        background-color: #0C1E00;
        color: white;
    }

    .footer-title {
        font-family: "Arsenica", serif;
        text-align: center;
        margin: 0;
        padding-top: 1em;
        font-size: 1.5em;
    }

    .footer-super {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding-top: 1em;
        padding-bottom: 0;
        text-align: left;
    }

    .footer-item {
        display: grid;
        padding-top: 1em;
    }

    footer a {
        color: white;
        text-decoration: none;
    }

    footer img {
        margin-top: 1em;
    }

    .footer-item {
        padding: 1em;
    }

    .footer-item-left {
        padding: 1em;
        text-align: right;
    }

    footer h2 {
        font-weight: lighter;
        color: white;
        font-size: 4em;
        text-align: center;
        font-family: "Arsenica", serif;
        margin: 0;
        padding-bottom: 0.5em;
    }

    /* Footer end */
    /* Header css */
    header {
        background-color: #0C1E00;
        color: white;
    }

    .header-global {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5em;
    }

    .header-logo>a {
        color: white;
        font-size: 30px;
        font-family: "Arsenica", serif;
        text-decoration: none;
        border-bottom: none;
    }

    .header-right {
        display: flex;
        align-items: center;
    }

    header div a {
        padding: 0.7em;
        color: white;
        text-decoration: none;
    }

    .header-right a:hover {
        border-bottom: 1px solid #E63F04;
    }

    /* Header end */
}

/* Mobile Styles */
@media screen and (max-width: 900px) {

    /* Header */
    header {
        background-color: #0C1E00;
        color: white;
        padding: 1em;
    }

    .header-global {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1em;
    }

    .header-logo>a {
        color: white;
        font-size: 2em;
        font-family: "Arsenica", serif;
        text-decoration: none;
    }

    .header-right {
        display: flex;
        flex-direction: column;
        gap: 0.5em;
        text-align: center;
    }

    .header-right a {
        color: white;
        text-decoration: none;
        padding: 0.5em;
        font-size: 1.2em;
    }

    /* Footer */
    footer {
        background-color: #0C1E00;
        color: white;
        padding: 2em 1em;
        text-align: center;
    }

    .footer-title {
        font-family: "Arsenica", serif;
        font-size: 2em;
        margin-bottom: 1em;
    }

    .footer-super {
        display: flex;
        flex-direction: column;
        gap: 2em;
    }

    .footer-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-item-left {
        text-align: center;
    }

    footer h2 {
        font-family: "Arsenica", serif;
        font-size: 3em;
        margin-bottom: 0.5em;
        line-height: 1;
    }
}