.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.card {
    transition: transform 0.3s;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

footer {
    margin-top: 50px;
}

.btn-primary {
    background-color: #333;
    border-color: #333;
}

.btn-primary:hover {
    background-color: #555;
    border-color: #555;
}

.btn-outline-dark:hover {
    background-color: #333;
    color: white;
}

.categorie-card-img {
    height: 500px;
    object-fit: cover;
    width: 100%;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.nos-categories-title {
    margin-top: 0px !important;
    position: relative;
  top: -10px;
}

body, h1, h2, h3, h4, h5, h6, .btn, .nav, .card, .form-label, .form-control {
    font-family: Cambria, 'Times New Roman', Times, serif;
} 