:root {
    --noir: #000000;
    --rose-reggaeton: #cfa3a0;
    --beige-rose: #ecc6bb;
    --rose-pale: #fcebeb;
    --rose-charmant: #faefed;
    --dore: #d7b388;
}

body {
    font-family: 'Candara', sans-serif;
    background-color: var(--noir);
    color: #fff;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Georgia', serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Navbar */
.navbar {
    border-bottom: 1px solid rgba(215, 179, 136, 0.3);
    padding: 1rem 0;
    background-color: var(--noir);
}

.navbar-brand {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dore) !important;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--rose-pale) !important;
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin: 0 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--dore) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--dore);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    color: var(--dore);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(215, 179, 136, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)),
        url('/api/placeholder/1200/800') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, var(--noir) 120%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-subtitle {
    color: var(--rose-reggaeton);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.hero-title {
    font-size: 3.5rem;
    /* Desktop */
    color: #fff;
    line-height: 1.1;
}

/* ✅ Tablette (moins de 992px) */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* ✅ Mobile (moins de 768px) */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
}


.hero-description {
    color: var(--rose-pale);
    font-size: 1.1rem;
}


.hero-image-container {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Buttons */
.btn-outline-custom {
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--dore);
    border: 1px solid var(--dore);
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-outline-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(215, 179, 136, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-outline-custom:hover {
    background-color: rgba(215, 179, 136, 0.1);
    box-shadow: 0 0 15px rgba(215, 179, 136, 0.3);
    color: var(--dore);
}

.btn-outline-custom:hover::before {
    left: 100%;
}

.btn-custom {
    background-color: var(--dore);
    color: var(--noir);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
}

.btn-custom:hover {
    background-color: #c9a677;
    color: var(--noir);
}


.espacement {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* ✅ Version tablette (moins de 992px) */
@media (max-width: 991.98px) {
    .espacement {
        padding-top: 150px;
        padding-bottom: 60px;
    }
}

/* ✅ Version mobile (moins de 768px) */
@media (max-width: 767.98px) {
    .espacement {
        padding-top: 150px;
        padding-bottom: 40px;
    }
}


/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--rose-charmant);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--dore);
}

/* Services */
.service-card {
    background-color: rgba(207, 163, 160, 0.05);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--rose-reggaeton), var(--dore));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--dore);
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--rose-charmant);
}

.service-description {
    color: var(--rose-pale);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}



/* Gallery */
.gallery {
    padding: 5rem 0;
    background-color: rgba(207, 163, 160, 0.02);
}

.gallery-filter .btn {
    background: none;
    border: none;
    color: var(--rose-pale);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    margin: 0 0.25rem 0.5rem;
}

.gallery-filter .btn.active,
.gallery-filter .btn:hover {
    background-color: var(--dore);
    color: var(--noir);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    aspect-ratio: 1;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: .9;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-title {
    color: var(--rose-pale);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
    padding: 0 1rem;
}

.gallery-category {
    color: var(--dore);
    font-size: 0.9rem;
}

/* Testimonials */
.testimonial {
    text-align: center;
    padding: 2rem;
    background-color: rgba(207, 163, 160, 0.05);
    border-radius: 10px;
    height: 100%;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--rose-pale);
}

.testimonial-author {
    color: var(--dore);
    font-weight: 600;
}

/* Badge */
.badge-custom {
    display: inline-block;
    padding: 0.3rem 1rem;
    background-color: var(--noir);
    color: var(--dore);
    border: 1px solid var(--dore);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 0 5px rgba(215, 179, 136, 0.2);
}

/* Contact Form */
.form-control {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(207, 163, 160, 0.2);
    border-radius: 5px;
    color: var(--rose-pale);
    font-family: 'Candara', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--dore);
    box-shadow: 0 0 0 2px rgba(215, 179, 136, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background-color: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(215, 179, 136, 0.3);
}

.footer-logo {
    color: var(--dore);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
    font-family: 'Georgia', serif;
}

.footer-description {
    color: var(--rose-pale);
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--dore);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-link {
    margin-bottom: 0.8rem;
}

.footer-link a {
    color: var(--rose-pale);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link a:hover {
    color: var(--dore);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(215, 179, 136, 0.1);
    border-radius: 50%;
    color: var(--dore);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--dore);
    color: var(--noir);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(215, 179, 136, 0.1);
    color: var(--rose-pale);
    font-size: 0.9rem;
}

/* Animation utility classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}



/* formulaire */

.pagetitle h1 {
    font-family: 'Georgia', serif;
    color: var(--dore);
    font-weight: 500;
    font-size: 2rem;
    border-bottom: 2px solid var(--rose-reggaeton);
    padding-bottom: 10px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.order-card {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 25px;
    border: none;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(215, 179, 136, 0.3);
}

.order-card:hover {
    box-shadow: 0 10px 30px rgba(215, 179, 136, 0.2);
}

.product-form {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: var(--border-radius);
    padding: 30px;
    border-left: 5px solid var(--dore);
}

.client-form {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: var(--border-radius);
    padding: 30px;
    border-left: 5px solid var(--rose-reggaeton);
    margin-bottom: 25px;
}

.products-table {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: var(--border-radius);
    padding: 30px;
    height: auto;
    min-height: 490px;
    display: flex;
    flex-direction: column;
    border-left: 5px solid var(--rose-reggaeton);
}

.table-container {
    overflow-y: auto;
    flex-grow: 1;
    margin-bottom: 15px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.table-container thead {
    position: sticky;
    top: 0;
    background-color: rgba(20, 20, 20, 0.9);
    z-index: 10;
}

#tableProduit tr {
    transition: var(--transition);
    border-bottom: 1px solid rgba(215, 179, 136, 0.1);
}

#tableProduit tr:hover {
    background-color: rgba(215, 179, 136, 0.05);
}

.form-label {
    color: var(--dore);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control,
.form-select {
    border: 1px solid rgba(215, 179, 136, 0.3);
    border-radius: 8px;
    padding: 12px;
    transition: var(--transition);
    background-color: rgba(10, 10, 10, 0.9);
    color: var(--rose-pale);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--dore);
    box-shadow: 0 0 0 3px rgba(215, 179, 136, 0.15);
    background-color: rgba(20, 20, 20, 0.9);
}

.btn-add {
    background-color: transparent;
    color: var(--dore);
    font-weight: 500;
    transition: var(--transition);
    border-radius: 30px;
    padding: 12px;
    border: 1px solid var(--dore);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-add::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(215, 179, 136, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-add:hover {
    background-color: rgba(215, 179, 136, 0.1);
    box-shadow: 0 0 15px rgba(215, 179, 136, 0.3);
    color: var(--dore);
}

.btn-add:hover::before {
    left: 100%;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-weight: 600;
    transition: var(--transition);
    opacity: 0.6;
    cursor: not-allowed;
    border-radius: 30px;
    background-color: var(--dore);
    color: var(--noir);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn.active {
    opacity: 1;
    cursor: pointer;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(215, 179, 136, 0.3);
}

.submit-btn.active:hover {
    background-color: #c9a677;
}

.empty-cart {
    text-align: center;
    padding: 50px 0;
    color: var(--rose-reggaeton);
}

.empty-cart i {
    font-size: 3rem;
    color: var(--dore);
    margin-bottom: 15px;
}

.total-section {
    margin-top: auto;
    padding-top: 15px;
    border-top: 2px dashed rgba(215, 179, 136, 0.3);
    text-align: right;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--dore);
}

.accordion-button {
    background-color: transparent;
    color: var(--rose-pale);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(215, 179, 136, 0.05);
    color: var(--dore);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--dore);
}

.accordion-item {
    border: 1px solid rgba(215, 179, 136, 0.3);
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(10, 10, 10, 0.9);
}

.accordion-body {
    background-color: rgba(10, 10, 10, 0.9);
    color: var(--rose-pale);
}

/* Section titre stylisée */
h4 {
    color: var(--dore);
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 25px;
    font-weight: 500;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}

h4:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--rose-reggaeton);
    bottom: 0;
    left: 0;
}

.action-btn {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background-color: rgba(215, 179, 136, 0.1);
    color: var(--dore);
    border: none;
}

.action-btn:hover {
    background-color: var(--dore);
    color: var(--noir);
}

.table {
    color: var(--rose-pale);
}

.table thead th {
    background-color: rgba(20, 20, 20, 0.9);
    color: var(--dore);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border: none;
}

.input-group-text {
    background-color: rgba(215, 179, 136, 0.1);
    color: var(--dore);
    border: 1px solid rgba(215, 179, 136, 0.3);
}

/* Ajustements responsifs */
@media (max-width: 767px) {
    .pagetitle h1 {
        font-size: 1.6rem;
    }

    .products-table {
        height: auto;
        min-height: 350px;
        padding: 20px;
    }

    .product-form {
        padding: 20px;
    }

    .client-form {
        padding: 20px;
    }

    .submit-btn {
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .product-form {
        padding: 15px;
        border-left: 3px solid var(--dore);
    }

    .client-form {
        padding: 15px;
        border-left: 3px solid var(--rose-reggaeton);
    }

    .products-table {
        padding: 15px;
        border-left: 3px solid var(--rose-reggaeton);
    }

    .empty-cart {
        padding: 30px 0;
    }

    .empty-cart i {
        font-size: 2.5rem;
    }

    h4 {
        font-size: 1.2rem;
    }
}

/* Styles personnalisés pour Selectize */
.selectize-input {
    background-color: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(215, 179, 136, 0.3);
    border-radius: 8px;
    color: var(--rose-pale);
}

.selectize-input.focus {
    border-color: var(--dore);
    box-shadow: 0 0 0 3px rgba(215, 179, 136, 0.15);
}

.selectize-dropdown {
    background-color: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(215, 179, 136, 0.3);
    border-radius: 8px;
    color: var(--rose-pale);
}

.selectize-dropdown-content .option {
    color: var(--rose-pale);
}

.selectize-dropdown-content .option.active {
    background-color: rgba(215, 179, 136, 0.2);
    color: var(--dore);
}


/* Section Boutique */
.shop-info {
    padding: 2rem;
    background-color: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
    height: 100%;
}

.shop-title {
    color: var(--dore);
    font-weight: 700;
}

.shop-description {
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.shop-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.shop-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(20, 20, 30, 0.7);
    color: #fff;
    padding: 0.5rem 1rem;
    text-align: center;
    font-style: italic;
}

/* Événements */
.events-title {
    color: var(--dore);
    margin-top: 3rem;
}

.event-card {
    position: relative;
    background-color: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.event-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--dore);
    color: #14141e;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.event-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dore);
}

.event-title {
    color: var(--dore);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.event-date {
    color: #a0a0a0;
    font-style: italic;
    margin-bottom: 1rem;
}

.event-description {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

/* À propos */
.about-subtitle {
    color: var(--dore);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-content {
    padding: 2rem;
    background-color: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
}

.about-mission {
    padding: 3rem;
    background-color: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
}

.value-card {
    background-color: rgba(40, 40, 50, 0.6);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--dore);
    margin-bottom: 1rem;
}

.value-title {
    color: var(--dore);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Qui sommes-nous */
.team-member {
    background-color: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-image {
    padding: 1.5rem;
    text-align: center;
}

.team-image img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 3px solid var(--dore);
}

.team-info {
    padding: 1.5rem;
}

.team-name {
    color: var(--dore);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-position {
    color: #a0a0a0;
    font-style: italic;
    margin-bottom: 1rem;
}

.team-bio {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.approach-step {
    background-color: rgba(40, 40, 50, 0.6);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.approach-step:hover {
    transform: translateY(-5px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--dore);
    color: #14141e;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.step-title {
    color: var(--dore);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Nous contacter */
.contact-info {
    background-color: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
}

.contact-subtitle {
    color: var(--dore);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.contact-details li i {
    color: var(--dore);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-link-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--dore);
    color: #14141e;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    background-color: #fff;
    color: #14141e;
}

.contact-form-container {
    background-color: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
}

.contact-form-detailed .form-label {
    color: var(--dore);
    font-weight: 600;
}

.contact-form-detailed .form-control,
.contact-form-detailed .form-select {
    background-color: rgba(20, 20, 30, 0.7);
    border: 1px solid #2a2a40;
    border-radius: 5px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.contact-form-detailed .form-control:focus,
.contact-form-detailed .form-select:focus {
    border-color: var(--dore);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.contact-form-detailed .form-check-input:checked {
    background-color: var(--dore);
    border-color: var(--dore);
}

.contact-map {
    margin-top: 3rem;
}

.map-placeholder {
    border-radius: 10px;
    overflow: hidden;
}

/* Animation de fondu */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .about-mission,
    .contact-form-container,
    .contact-info {
        padding: 1.5rem;
    }

    .team-image img {
        width: 150px;
        height: 150px;
    }

    .step-number {
        width: 50px;
        height: it auto (default)50px;
        font-size: 1.2rem;
    }
}



/* /* evenement * */

.event-gallery .event-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1/1;
}

.event-gallery img {
    transition: transform 0.5s ease;
    height: 100%;
    object-fit: cover;
}

.event-gallery .event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-gallery .event-thumbnail:hover img {
    transform: scale(1.1);
}

.event-gallery .event-thumbnail:hover .event-overlay {
    opacity: 1;
}

/* Event cards */
.event-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.event-img {
    height: 250px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.event-card:hover .event-img {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0;
    }

    .header-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .subtitle {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .event-img {
        height: 200px;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .display-6 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .event-gallery .col-6 {
        width: 100%;
    }
}

.about-padding{
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-padding{
        padding-top: 0;
        padding-bottom: 0;
    }
}