h3 {
    font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    font-size: 36px;
    color: #ab7c46;
    text-align: center;
    margin: 40px 0 20px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

p {
    text-align: center;
}

/* ========== TABLE ========== */
table {
    width: 80%;
    margin: 30px auto;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}

/* Style des cellules */
table td {
    padding: 20px;
    text-align: center;
    background-color: #fff8f0;
    color: #333;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

/* Effet hover sur les cellules */
table td:hover {
    background-color: #fce6d0;
    transform: translateY(-3px);
    cursor: pointer;
}
/* Lien normal */
table td a {
    color: #000;
    /* noir */
    text-decoration: none;
    /* supprime le soulignement */
    display: block;
    /* pour que le lien occupe toute la cellule */
    width: 100%;
    height: 100%;
}

/* Lien au survol */
table td a:hover {
    color: #8B4513;
    /* marron */
}

/* Lien visité */
table td a:visited {
    color: #8B4513;
    /* marron après clic */
}
/* ========== CAROUSEL ========== */
#carouselExampleCaptions {
    max-width: 1000px;
    margin: 0 auto;
}

#carouselExampleCaptions .carousel-inner img {
    max-height: 500px;
    object-fit: cover;
    transition: transform 0.3s, background-color 0.3s, filter 0.3s;
}

/* Effet hover comme la table */
#carouselExampleCaptions .carousel-item:hover img {
    transform: translateY(-3px);
    filter: brightness(0.9);
    cursor: pointer;
}

/* Style du texte */
#carouselExampleCaptions .carousel-caption h5 {
    font-size: 30px;
}

#carouselExampleCaptions .carousel-caption p {
    font-size: 15px;
}

/* Style du lien (comme ta table) */
#carouselExampleCaptions .carousel-caption a {
    color: #fff;
    text-decoration: none;
}

#carouselExampleCaptions .carousel-caption a:hover {
    color: #fce6d0;
}

.btn-menu {
    background-color: white;
    border: 2px solid #ab7c46;
    color: #ab7c46;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
    /* important pour centrer */
    margin: 0 auto 20px auto;
    /* centre horizontalement */
    transition: all 0.3s;
}

.btn-menu:hover,
.btn-menu.active {
    background-color: #ab7c46;
    color: white;
}
/* ========== CARTES ========== */
.row {
    margin-top: 30px;
    margin-bottom: 30px;
}

.card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    max-width: 90%;
    margin: 0 auto 20px auto;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.card-img-top {
    height: 400px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
    text-align: center;
}

.card-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.card-text {
    font-size: 16px;
    color: #555;
}
.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}