/* assets/css/style.css */

body {
    padding-top: 70px; /* pour compenser la navbar fixe */
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* HERO */
.hero-section {
    background: url("../img/hero-taxi.jpg") center/cover no-repeat fixed;
    min-height: 75vh;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Titres */
h1, h2, h3, .navbar-brand {
    letter-spacing: 0.03em;
}

/* Cartes */
.card {
    border-radius: 0.6rem;
}

/* Table tarifs */
#tarifs table {
    border-radius: 0.6rem;
    overflow: hidden;
}

/* Footer */
footer {
    font-size: 0.9rem;
}
