body {
    background-color: #30361B;
    color: white;
    margin: 0%;
    font-family: 'Risque';
    /* font-size: 1.5em; */
    font-size: clamp(1rem, 1vw + 0.8rem, 2.5rem);

}

#presentation_right{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

a {
    color: white;
    text-decoration: none;
    transition: all 1s ease-out;
}

a:hover {
    text-decoration: underline;
}

a:active {
    color: black;
}

h2 {
    font-size: 2em;
}

section.main>section:before {
    border-top: #AAAAAA 1px solid;
    position: absolute;
    left: 25%;
    width: 50%;
    content: "";
    height: 1px;
    text-align: center;
}

ul {
    list-style-type: none;
}

img {
    max-width: 100%;
    height: auto;
}

section p {
    padding: 1%;
}

section.main section {
    text-align: center;
    margin: 2%;
}

/* Header style */

.lang span {
    color: transparent;
}

.lang a {
    text-decoration: none;
}

header {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.517), rgba(150, 150, 150, 0)),
        url("../pages/media/img/food/mix_food.jpg");
    background-origin: border-box;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    margin: 0%;
    padding: 1%;
    margin-bottom: 2%;
    text-align: center;
    max-width: 100%;

}

.delivery {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 10%;
}

.delivery a {
    flex: 1;
    display: block;

}

.delivery article {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;

}

.logo_delivery {
    max-height: 60px;
    max-width: 120px;
    width: auto;
    height: auto;
    margin-bottom: 0.75rem;
    object-fit: contain;
}

/* Texte */
.delivery p {
    margin: 0;
}

/* Mobile */
@media (max-width: 600px) {
    .delivery {
        flex-direction: column;
    }
}

.logo-wrapper {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.logo_delivery {
    max-height: 100%;
    max-width: 120px;
    object-fit: contain;
}


section.presentation {
    display: grid;
    grid-template-columns: 60% 40%;
    justify-content: center;
    align-items: center;
    margin: 2%;
}

section.presentation p {
    padding: 0%;
    margin: 0%;
    /* font-size: 150%; */
}

.logo {
    background-image:
        url("../pages/media/img/palmanovah_logo.jpg");
    background-origin: border-box;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    border-radius: 50%;
    height: 0px;
    font-size: 0em;
    color: transparent;
    -webkit-text-stroke: 0px black;
    width: clamp(80px, 20vw, 180px);
    padding-bottom: clamp(80px, 20vw, 180px);

}

footer {
    font-size: small;
    background-color: rgba(0, 0, 0, 0.4);
    margin: 0%;
    color: #AAAAAA;
    padding: 1%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    text-align: center;
    max-width: 100%;
}

footer > *
{
    width: 30%;
}

footer a {
    color: #AAAAAA;
    text-decoration: none;
}

/* ===== MENU ===== */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

/* ===== LANG SELECTOR ===== */
.lang {
    position: relative;
}

/* drapeau courant */
.lang-current {
    width: 40px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.lang-current::after {
    content: "▼";
    font-size: 10px;
    margin-left: 4px;
    color: white;
}

/* dropdown */
.lang-dropdown {
    position: absolute;
    top: 120%;
    left: 0;

    display: flex;
    flex-direction: column;
    gap: 6px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.25s ease;
}

/* ouverture */
.lang:hover .lang-dropdown,
.lang:focus-within .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* liens */
.lang-dropdown a {
    width: 27px;
    height: 22px;
    display: flex;
}

/* ===== FLAGS ===== */
.flag {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: rgba(0, 0, 0, 0.6);
    background-size: cover;
    background-position: center;
}

.flag.fr {
    background-image: url("../pages/media/img/flags/france.png");
}

.flag.en {
    background-image: url("../pages/media/img/flags/uk.png");
}

.flag.tr {
    background-image: url("../pages/media/img/flags/turkey.png");
}