/* ================= HEADER ================= */

/* Image header */
.header-img {
    height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .header-img {
        height: 220px;
    }
    .logo {
        height: 100px;
    }
}

/* Logo desktop */
.logo {
    height: 160px;
}

/* Bloc texte (titre + baseline) en bas du header */
.header-text {
    background: rgba(0, 0, 0, 0.45); /* bande sombre transparente derrière le texte */
}

/* Titre principal */
.site-title {
    font-family: 'Poppins', sans-serif; /* ou 'Poppins' si tu préfères */
    font-size: 2.3rem;
    color: #fff;
    letter-spacing: 2px;
    word-break: keep-all;       /* évite les coupures moches */
    white-space: normal;        /* permet le retour à la ligne propre */
    margin-bottom: 0.5rem;
}

/* Baseline */
.site-baseline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #f8f9fa;
    margin-bottom: 0;
}

/* Responsive titres */
@media (max-width: 768px) {
    .site-title {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    .site-baseline {
        font-size: 0.85rem;
    }
    .logo {
    height: 100px;
}
}

/* ================= NAVBAR ================= */
.nav-link {
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Rendre le menu langue plus lisible */
.dropdown-menu {
    min-width: 140px;
}

/* ================= PRODUITS ================= */
.product-img {
    max-height: 400px;
    object-fit: contain;
}

/* ================= PANIER ================= */
.cart-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

/* ================= TITRES DE SECTIONS ================= */
.section-title {
    font-weight: 700;
    border-left: 6px solid #198754; /* vert Bootstrap */
    padding-left: 12px;
    margin-bottom: 1.5rem;
}

/* ================= PAGINATION ================= */
.pagination .page-link {
    color: #198754; /* vert Bootstrap */
    border: 1px solid #198754;
    background-color: #fff;
    border-radius: 8px;
    margin: 0 4px;
}

.pagination .page-link:hover {
    background-color: #198754;
    color: #fff;
}

.pagination .active .page-link {
    background-color: #198754;
    border-color: #198754;
    color: #fff;
    font-weight: bold;
}

.pagination .disabled .page-link {
    color: #6c757d;
    border-color: #dee2e6;
    background-color: #f8f9fa;
}

