body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.menu{
    /*background: #d1b054;*/
    background: #edb528;
}
/* Navbar */
.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-link {
    font-weight: bold;
    color: white;
}

.btn-demander-devis{
    color: white;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: #0d6efd !important;
}

.navbar-logo {
    height: 80px;
    width: auto;
    margin-right: 10px;
    border-radius: 40px;
}

/* Hero section */
section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

section.bg-light {
    background-color: #f8f9fa !important;
}

.display-5 {
    line-height: 1.2;
}

.hero-image {
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .1);
    width: 100%;
}

/* Cards */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .15);
}

/* Galerie */
.object-fit-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.ratio img {
    transition: transform 0.3s ease;
}

.ratio img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    font-size: 0.9rem;
}

footer h5 {
    font-weight: 600;
}

footer a {
    color: #bbb;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

/* Boutons */
.btn-lg {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
}

footer {
    background-color: #212529;
    color: white;
    padding: 1.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .display-5 {
        font-size: 1.8rem;
    }

    nav .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    .brand-name{
        font-size: medium;
        font-weight: bold;
    }
}