/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f4f6f9;
    color: #333;
}

a {
    text-decoration: none;
}

/* =========================
   HEADER
========================= */
.header {
    background-color: #EB5C56;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: relative;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Logo */
.logo img {
    width: 120px;
    height: auto;
}

/* =========================
   MENU BURGER
========================= */
.menu-toggle {
    font-size: 26px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* =========================
   NAVIGATION
========================= */
.nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #383D45;
    text-align: center;
    z-index: 1000;
}

.nav a {
    display: block;
    padding: 14px;
    color: white;
    font-weight: 500;
    transition: background 0.3s ease;
}

.nav a:hover {
    background-color: #F3C137;
    color: #383D45;
}

/* =========================
   TITRE PAGE
========================= */
.styled-title {
    text-align: center;
    margin: 40px 20px 20px 20px;
    font-size: 28px;
    color: #383D45;
    font-weight: 600;
}

/* =========================
   CARTE
========================= */
#map {
    width: 90%;
    height: 75vh;
    margin: 30px auto;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* =========================
   POPUP LEAFLET
========================= */
.leaflet-popup-content-wrapper {
    border-radius: 12px;
}

.popup-card {
    font-size: 14px;
}

.popup-card h3 {
    margin-bottom: 8px;
    color: #EB5C56;
}

.popup-card p {
    margin: 4px 0;
}

/* =========================
   FOOTER
========================= */
.footer {
    background-color: #EB5C56;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.footer a {
    color: white;
    font-weight: 500;
}

.footer a:hover {
    text-decoration: underline;
}

/* =========================
   VERSION DESKTOP
========================= */
@media (min-width: 3000px) {

    .menu-toggle {
        display: none;
    }

    .nav {
        display: flex !important;
        position: static;
        flex-direction: row;
        width: auto;
        background: none;
    }

    .nav a {
        padding: 0 15px;
    }
}