/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to right, #ff512f, #f09819);
    color: #333;
    scroll-behavior: smooth;
    line-height: 1.6;
    font-size: 16px;
    background-attachment: fixed;
    background-size: cover;
}

/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    padding: 1rem 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #ff512f;
    text-shadow: 2px 2px 10px rgba(255, 105, 180, 0.8);
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: #ffffff;
    font-size: 1rem;
    margin-left: 1rem;
    transition: color 0.4s ease;
}

.navbar-nav .nav-link:hover {
    color: #f09819;
    text-shadow: 0px 0px 5px rgba(255, 105, 180, 0.6);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 81, 47, 0.9), rgba(240, 152, 25, 0.9)), url('path_to_your_image.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: #ffffff;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.7);
    background-attachment: fixed;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.5s ease-in-out, glow 2s ease-in-out infinite alternate;
}

.hero p {
    font-size: 1.75rem;
    margin-top: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 2s ease-in-out;
}

.hero .btn-primary {
    background-color: #cb3214;
    border: none;
    color: #ffffff;
    padding: 0.85rem 2.75rem;
    border-radius: 50px;
    font-size: 1.3rem;
    transition: background 0.4s ease, transform 0.4s ease;
    margin-top: 40px;
    box-shadow: 0 10px 25px rgba(255, 81, 47, 0.5);
}

.hero .btn-primary:hover {
    background-color: #f09819;
    transform: translateY(-7px);
}

/* Responsive Hero Text */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.25rem;
    }
}

/* About Section */
.about-section {
    background: linear-gradient(to right, #ffffff, #f09819);
    padding: 6rem 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 81, 47, 0.15), transparent);
    transform: translateX(-50%);
    z-index: -1;
}

.about-section img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-section img:hover {
    transform: scale(1.07);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: #ff512f;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 10px rgba(240, 152, 25, 0.6);
    animation: fadeInUp 1.5s ease-in-out;
}

.about-section p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    animation: fadeInUp 2s ease-in-out;
}

.about-section p strong {
    color: #ff512f;
    font-weight: 700;
}

.about-section p em {
    color: #f09819;
    font-style: italic;
}

 /* Services Section  */

.services-section {
    background: linear-gradient(135deg, #ff512f, #f09819);
    padding: 6rem 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
    z-index: 0;
    pointer-events: none; /* Désactive les interactions sur cet élément */
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 2;
}

.button-container {
    position: relative;
    z-index: 3; /* S'assure que le bouton est au-dessus des autres éléments */
}

.button-container button {
    width: 100%;
    z-index: 4;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    color: #ff512f;
    margin-bottom: 1.5rem;
}

.service-card p {
    font-size: 1.1rem;
    color: #333;
}

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



/* Gallery Section */
.gallery-section {
    background: #ffffff;
    padding: 6rem 0;
    position: relative;
}

.gallery-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: #ff512f;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 10px rgba(240, 152, 25, 0.6);
}

.gallery-section img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s, box-shadow 0.4s;
}

.gallery-section img:hover {
    transform: scale(1.07);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}




/* Responsive Image Spacing */
@media (max-width: 768px) {
    .gallery-section .col-md-4 {
        margin-bottom: 20px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #ff512f, #f09819);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(200, 200, 200, 0.3), transparent);
    z-index: 1;
}

.testimonials-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.testimonial-item {
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s, opacity 0.4s;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-item p {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
}

.testimonial-item span {
    display: block;
    margin-top: 1.5rem;
    font-weight: bold;
    color: #ff512f;
}

.testimonial-item.active {
    transform: scale(1.07);
    opacity: 1;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #ff512f, #f09819);
    padding: 6rem 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form button {
    background-color: #ff512f;
    border: none;
    padding: 0.85rem 2.75rem;
    border-radius: 50px;
    font-size: 1.3rem;
    transition: background 0.4s ease, transform 0.4s ease;
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.5);
}

.contact-form button:hover {
    background-color: #f09819;
    transform: translateY(-7px);
}

.contact-section .btn-success {
    font-size: 1rem; /* Reduced font size */
    padding: 0.6rem 2rem; /* Reduced padding */
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(50, 205, 50, 0.5);
}

.contact-section .btn-success:hover {
    background-color: #28a745;
    transform: translateY(-7px);
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

footer a {
    color: #ff512f;
    transition: color 0.4s ease;
}

footer a:hover {
    color: #f09819;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 81, 47, 0.7), 0 0 40px rgba(240, 152, 25, 0.7);
    }
    to {
        text-shadow: 0 0 40px rgba(255, 81, 47, 1), 0 0 60px rgba(240, 152, 25, 1);
    }
}

/* Updated Image Sizes */
.about-section img,
.service-card img,
.gallery-section img {
    max-width: 80%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin: 0 auto;
    display: block;
}

/* Contact and WhatsApp Buttons */
.contact-form .btn-primary {
    background-color: #ff512f;
    border: none;
    padding: 0.85rem 2.75rem;
    border-radius: 50px;
    font-size: 1.3rem;
    transition: background 0.4s ease, transform 0.4s ease;
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.5);
    width: 100%;
    text-align: center;
}

.contact-form .btn-primary:hover {
    background-color: #f09819;
    transform: translateY(-7px);
}

/* Additional WhatsApp Button Styling */
.contact-form .btn-success {
    margin-top: 1rem;
    padding: 0.6rem 2rem; /* Reduced padding */
    border-radius: 50px;
    font-size: 1rem; /* Reduced font size */
    text-align: center;
    box-shadow: 0 10px 25px rgba(50, 205, 50, 0.5);
    width: 100%;
}

.contact-form .btn-success:hover {
    background-color: #28a745;
    transform: translateY(-7px);
}



.text-center a {
    text-decoration: none; /* Supprime le soulignement des liens */
}

.text-center a img {
    border: none; /* Supprime toute bordure autour des images */
    display: inline-block; /* Assure que l'image ne prend pas de place excessive */
    vertical-align: middle; /* Aligne correctement les images */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.text-center a img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
