body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #e3cd9b;
    color: #000000;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
}

header {
    background: #032816;
    color: #e3cd9b;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.header-text {
    margin-left: 20px;
}

.catchy-text {
    background: #5b431f;
    color: #e3cd9b;
    padding: 0.5rem;
    text-align: center;
    font-weight: 500;
    font-size: 1.2rem;
}

main {
    padding: 1rem;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

section {
    background: #e3cd9b;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 5px;
}

h1, h2 {
    text-align: center;
}

#horaires img {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    #horaires img {
        max-width: 100%;
    }

    header {
        flex-direction: column;
    }

    .header-text {
        margin-left: 0;
    }
}

footer {
    text-align: center;
    padding: 1rem 0;
    background: #032816;
    color: #e3cd9b;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.contact-card {
    background: #5b431f;
    color: #e3cd9b;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.contact-card:hover {
    background: #032816;
    color: #e3cd9b;
    transform: translateY(-10px);
}

.contact-card:hover a {
    color: #e3cd9b;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
}

.contact-card a {
    color: #e3cd9b;
    text-decoration: none;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: auto;
    overflow: hidden;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 400px;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.carousel-control-prev {
    left: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.carousel-control-next {
    right: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.carousel-indicators button {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-indicators button.active {
    background-color: white;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}