/* Custom Close Button */
#portfolioModal .btn-close {
    background-color: var(--primary-color);
    opacity: 1;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    transition: all 0.3s ease;
    z-index: 100; /* Ensure button is above other elements */
    /* Adjust vertical position to align with label */
    margin-top: -0.25rem;
}

#portfolioModal .btn-close::before,
#portfolioModal .btn-close::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 60%;
    background-color: white;
    transition: all 0.3s ease;
}

#portfolioModal .btn-close::before {
    transform: rotate(45deg);
}

#portfolioModal .btn-close::after {
    transform: rotate(-45deg);
}

#portfolioModal .btn-close:hover {
    background-color: var(--tertiary-color);
    transform: scale(1.1);
}

#portfolioModal .btn-close:focus {
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.3);
    outline: none;
}

/* Remove Bootstrap's default close button background */
#portfolioModal .btn-close {
    background-image: none;
}



/* Mobile-specific modal adjustments */
@media (max-width: 768px) {
    /* Make modal full screen on mobile */
    #portfolioModal .modal-dialog {
        margin: 0;
        max-width: 100%;
        height: 100%;
    }
    
    #portfolioModal .modal-content {
        height: 100%;
        border-radius: 0;
        border: none;
    }
    
    /* Header with proper spacing */
    #portfolioModal .modal-header {
        position: relative;
        background: white;
        border-bottom: 2px solid var(--secondary-color);
        padding: 1rem;
        display: flex;
        align-items: center;
        min-height: 60px;
    }
    
    /* Add padding to modal body */
    #portfolioModal .modal-body {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
        overflow-y: auto;
        height: 100%;
    }
    
    /* Adjust carousel for mobile */
    #portfolioCarousel {
        margin-bottom: 20px;
    }
    
    #portfolioCarousel img {
        max-height: 50vh;
    }
    
    /* Adjust modal title */
    #portfolioModalLabel {
        font-size: 1.25rem;
        line-height: 1.2;
    }
    
    /* Add swipe indicator at the top of modal */
    #portfolioModal .modal-header::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background-color: #ccc;
        border-radius: 2px;
    }
    

}



/* Improved modal backdrop interaction */
#portfolioModal {
    backdrop-filter: blur(3px);
}

/* Enable closing modal by clicking outside on mobile */
@media (max-width: 768px) {
    #portfolioModal .modal-dialog {
        pointer-events: none;
    }
    
    #portfolioModal .modal-content {
        pointer-events: auto;
    }
}/* Variables de couleur basées sur le logo Chromatix */
:root {
    --primary-color: #FF69B4; /* Rose/magenta du logo */
    --secondary-color: #87CEEB; /* Bleu clair du logo */
    --accent-color: #FFA500; /* Orange du logo */
    --tertiary-color: #9370DB; /* Violet du logo */
    --text-color: #333333;
    --light-gray: #f8f9fa;
    --dark-color: #000000;
}

/* Styles généraux */
body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Header et navigation */
header {
    background-color: white !important;
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* Override Bootstrap background */
header .navbar {
    background-color: transparent !important;
    padding: 0;
}

/* Enhanced header on scroll */
header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
}

.navbar {
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 50px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    margin: 0 0.3rem;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

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

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Active link styling */
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    width: 80%;
    background-color: var(--accent-color);
}

/* Mobile menu button enhancement */
.navbar-toggler {
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0.5rem 0.75rem;
    position: relative;
    transition: all 0.3s ease;
    background-color: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.navbar-toggler:hover {
    background-color: rgba(0,0,0,0.05);
    border-color: var(--primary-color);
}

/* Use Bootstrap's default hamburger icon with custom color */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 33, 33, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    display: inline-block;
}

/* Dark theme for navbar toggler on mobile */
@media (max-width: 991px) {
    .navbar-toggler {
        border-color: var(--dark-color) !important;
        padding: 0.375rem 0.75rem;
    }
    
    .navbar-toggler:hover,
    .navbar-toggler:focus {
        background-color: rgba(0,0,0,0.1);
        border-color: var(--primary-color) !important;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #8DC5A5 0%, #7FB3D5 50%, #9B59B6 100%);
    padding-top: 80px;
}

.hero-section h1 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

.hero-section p {
    color: #2c2c2c;
    font-size: 1.25rem;
    text-shadow: 0 1px 1px rgba(255,255,255,0.3);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--tertiary-color);
    border-color: var(--tertiary-color);
    transform: translateY(-2px);
}

/* About Section */
#apropos h2 {
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

#apropos h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.about-icon {
    color: var(--secondary-color);
}

/* Services Section */
#services {
    background-color: var(--light-gray);
}

#services h2 {
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

#services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.service-card {
    background-color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-icon {
    color: var(--accent-color);
    font-size: 2.5rem;
}

.service-card h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Portfolio Section */
#portfolio h2 {
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

#portfolio h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--tertiary-color);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 350px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.portfolio-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

.portfolio-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
    padding: 2rem;
    transition: opacity 0.3s ease;
}

.portfolio-overlay h5 {
    color: white;
    font-weight: 600;
    margin: 0;
    font-size: 1.25rem;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Project Number Badge */
.project-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 2;
}

/* Project Type Tag */
.project-type {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255,255,255,0.9);
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

/* Centered Second Row */
.centered-row {
    max-width: 850px;
    margin: 0 auto;
}

/* Responsive adjustment for portfolio layout */
@media (max-width: 768px) {
    .portfolio-item {
        height: 300px;
    }
    
    .centered-row {
        max-width: 100%;
    }
}

/* Portfolio Modal Styles */
#portfolioModal .modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

#portfolioModal .modal-header {
    border-bottom: 2px solid var(--secondary-color);
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(141,197,165,0.05) 0%, rgba(127,179,213,0.05) 50%, rgba(155,89,182,0.05) 100%);
    position: relative;
}

/* Enhanced Modal Title */
#portfolioModalLabel {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    width: calc(100% - 3rem); /* Leave space for close button */
    line-height: 2.5rem; /* Match close button height for better alignment */
}

#portfolioModalLabel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    border-radius: 2px;
    animation: slideInWidth 0.5s ease-out;
}

/* Project type indicators */
.modal-header .project-type-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* Center vertically */
    right: 5rem; /* Move left to avoid overlapping with close button */
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: fadeInRight 0.5s ease-out;
    z-index: 10; /* Keep below close button */
}



/* Animations */
@keyframes slideInWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseHighlight {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 30px rgba(255,105,180,0.3);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#portfolioModal .modal-body {
    padding: 2rem 2rem 2rem;
}

/* Carousel Indicators */
#portfolioCarousel .carousel-indicators {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 20px 0;
    justify-content: center;
    display: flex;
    gap: 8px;
    z-index: 15; /* Ensure indicators are above other elements */
}

#portfolioCarousel .carousel-indicators [data-bs-target] {
    width: 40px;
    height: 4px;
    margin: 0;
    background-color: #ddd;
    border: none;
    border-radius: 2px;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

#portfolioCarousel .carousel-indicators [data-bs-target]:hover {
    background-color: #bbb;
}

#portfolioCarousel .carousel-indicators .active {
    width: 60px;
    height: 6px;
    background-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.3);
}

/* Add animation to active indicator */
#portfolioCarousel .carousel-indicators .active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: slideIndicator 2s infinite;
}

@keyframes slideIndicator {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Carousel Controls positioning */
#portfolioCarousel {
    max-height: 60vh;
    overflow: visible;
    position: relative;
    margin-bottom: 55px; /* Space for indicators */
}

#portfolioCarousel .carousel-inner {
    max-height: 60vh;
}

#portfolioCarousel .carousel-item {
    max-height: 60vh;
}

#portfolioCarousel img {
    max-height: 60vh; /* Reduced from 70vh to ensure label visibility */
    width: auto;
    height: auto;
    object-fit: contain;
    background-color: #f8f9fa;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 20px;
}

/* Carousel Image Container */
.carousel-image-container {
    position: relative;
    width: 100%;
    max-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
}

.carousel-image-wrapper {
    position: relative;
    display: inline-block;
    max-height: 60vh;
    max-width: 100%;
}

.carousel-image-wrapper img {
    display: block;
    max-height: 60vh;
    max-width: 100%;
    width: auto;
    height: auto;
}

/* Carousel Labels */
.carousel-label {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 5px 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-weight: bold;
    font-size: 14px;
    border-radius: 5px;
    z-index: 4;
}

/* Before/After Slider Styles */
.before-after-slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    user-select: none;
}

.before-after-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background-color: #f8f9fa;
}

.before-after-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: cover;
}

#beforeImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

#beforeImage img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    min-width: 100%;
    max-width: none;
    object-fit: cover;
}

#afterImage {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.before-after-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: white;
    cursor: ew-resize;
    z-index: 3;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.before-after-slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.handle-arrow-left,
.handle-arrow-right {
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateY(-50%);
}

.handle-arrow-left {
    left: 12px;
    border-width: 6px 6px 6px 0;
    border-color: transparent #333 transparent transparent;
}

.handle-arrow-right {
    right: 12px;
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent #333;
}

/* Before/After Labels */
.before-label,
.after-label {
    position: absolute;
    top: 20px;
    padding: 5px 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-weight: bold;
    font-size: 14px;
    border-radius: 5px;
    z-index: 4;
}

.before-label {
    left: 20px;
}

.after-label {
    right: 20px;
}

/* Modal animation */
.modal.fade .modal-dialog {
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.modal.show .modal-dialog {
    transform: none;
}

/* Enhanced modal backdrop */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
}

/* Carousel Container styling */
#carouselContainer {
    position: relative;
}

/* Modal Body adjustments */
#portfolioModal .modal-body {
    padding: 2rem 2rem 2rem;
    min-height: 400px;
}

/* Project Description positioning */
.project-description {
    padding: 0.2rem 0;
    color: var(--text-color);
    font-size: 1.1rem;
    text-align: center;
    margin-top: 0px; /* Reduced spacing */
}

/* Contact Section */
#contact {
    background-color: var(--light-gray);
}

#contact h2 {
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

#contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Contact Introduction Text */
.contact-intro {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    line-height: 1.6;
    margin-bottom: 3rem !important;
    position: relative;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #8DC5A5 0%, #7FB3D5 50%, #9B59B6 100%);
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.contact-intro:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Add emphasis to key words */
.contact-intro::before {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: -10px;
    left: 10px;
}

.contact-intro::after {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    bottom: -30px;
    right: 10px;
    transform: rotate(180deg);
}

.contact-form .form-control {
    border-radius: 8px;
    border: 2px solid transparent;
    padding: 0.75rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255,105,180,0.25);
}

#contact .text-center a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

#contact .text-center a:hover {
    color: var(--tertiary-color);
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--dark-color) !important;
}

.social-links a {
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color) !important;
}

/* Mobile Navigation Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 10px 10px;
        z-index: 1000;
        transition: all 0.35s ease;
    }
    
    .navbar-collapse.collapsing {
        transition: all 0.35s ease;
    }
    
    .navbar-collapse.collapse.show {
        animation: slideDown 0.35s ease-out;
    }
    
    .navbar-nav {
        align-items: flex-start;
        padding: 0 1rem;
    }
    
    .navbar-nav .nav-link {
        display: block;
        width: 100%;
        padding: 0.8rem 1.2rem;
        margin: 0.2rem 0;
        text-align: left;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(255, 105, 180, 0.1);
        transform: translateX(5px);
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .nav-link.active {
        background-color: rgba(255, 105, 180, 0.15);
        border-left: 4px solid var(--primary-color);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
    
    .portfolio-item {
        margin-bottom: 1.5rem;
    }
    
    /* Extra small devices navigation */
    .navbar-brand img {
        height: 40px;
    }
    
    header {
        padding: 0.6rem 0;
    }
    
    .navbar-toggler {
        padding: 0.4rem 0.6rem;
    }
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-target {
    opacity: 0;
    transform: translateY(20px);
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Animation du header au scroll */
header {
    transition: transform 0.3s ease;
}

header.scroll-down {
    transform: translateY(-100%);
}

header.scroll-up {
    transform: translateY(0);
}

/* Espacements généreux pour un design minimaliste */
.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

h2 {
    margin-bottom: 3rem;
}

/* Assurer une bonne lisibilité */
p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}