/* =====================
HEADER HERO
===================== */

.header-hero {
    background-image: url("/photos_site/nav.png");
    background-repeat: no-repeat;
    background-position: center;

    /* Mobile first */
    background-size: contain;
    height: clamp(400px, 40vw, 6000px);

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop : effet hero classique */
@media (min-width: 768px) {
    .header-hero {
        background-size: cover;
        height: 400px;
    }
}

/* =====================
HEADER TEXT
===================== */

.header-text {
    text-align: center;
    color: #5b6f68;
}

.header-text h1 {
    font-family: var(--font-title);
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    margin-bottom: 0.25rem;
}

.header-text h2 {
    font-family: var(--font-title);
    font-size: clamp(0.9rem, 3vw, 1.25rem);
    font-weight: 300;
}


/* =====================
NAVBAR
===================== */

.navbar {
    padding: 0.75rem 1rem;
}

.navbar-toggler {
    border: none;
}

.nav-link {
    font-family: var(--font-text);
    font-size: 1.25rem;
    padding: 0.75rem 1rem;
}

/* Couleur de fond au survol des liens de la navbar */
.nav-link:hover {
    background-color: #f5f0e6;
    transition: background-color 0.3s ease; /* effet doux */
}

/* =========================
NAVBAR DESKTOP
========================= */
@media (min-width: 992px) {
    /* Taille des liens plus grande */
    .navbar .nav-link {
        font-size: 1.5rem; /* plus lisible sur desktop */
        padding: 0.75rem 1.5rem; /* plus d’espace horizontal entre les liens */
    }

    /* Espacement supplémentaire entre les items (optionnel) */
    .navbar-nav .nav-item {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
}
