/* ========== 1. BASE ========== */

body {
    margin: 0;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}


/* ========== 2. HEADER ========== */

header {
    background-color: #a47864;
    text-align: center;
    padding: 10px 0;
}

.devise {
    font-size: 3em;
    color: yellow;
    font-weight: bold;
}


/* ========== 3. LANGUAGE BUTTONS ========== */

.language-buttons {
    margin-top: 10px;
}

.language-buttons button {
    padding: 8px 12px;
    margin: 0 5px;
    border: none;
    border-radius: 5px;
    background-color: green;
    color: red;
    cursor: pointer;
}

.language-buttons button:hover {
    background-color: #000000;
    color: #ffffff;
}


/* ========== 4. LANGUAGE SELECTOR ========== */

#langSelect {
    font-size: 32px;
    font-weight: 800;
    padding: 14px 48px 14px 18px;
    border: 2px solid #888;
    border-radius: 12px;
    background-color: white;
    color: black;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ff0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#langSelect:hover {
    background-color: darkgreen;
    color: red;
    border-color: #555;
}

#langSelect option {
    font-size: 32px;
    font-weight: 800;
}


/* ========== 5. CUSTOM ARROW ========== */

.lang-selector {
    position: relative;
    display: inline-block;
}

.lang-selector select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.lang-selector::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid red;
    pointer-events: none;
}


/* ========== 6. MAIN MENU ========== */

.menu-container {
    display: flex;
    justify-content: center;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
    max-width: 1200px;
    margin: 0;
    padding: 30px 0 0;
}

.menu-item {
    font-weight: bolder;
}

.menu-link {
    color: black;
    font-size: 2em;
    font-weight: bolder;
    text-decoration: none;
}

.menu-link:hover {
    text-decoration: none;
}


/* ========== 7. SPECIAL TEXT ========== */

.roman-text {
    margin-top: 20px;
    font-family: "Times New Roman", serif;
    font-size: 5em;
    color: #ffffff;
    text-align: center;
}


/* ========== 8. IFRAME ========== */

iframe {
    width: 100%;
    height: 80vh;
    border: none;
}


/* ========== 9. FOOTER ========== */

footer {
    background-color: #a47864;
    color: #ffff00;
    text-align: center;
    padding: 10px;
}