@font-face {
    font-family: 'Playfair';
    src: url("../fonts/PlayfairDisplay-Black-yJy1oKE.ttf") format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
:root {
        /* --primary-color: #007bff; */
        --primary-color: #0D0D0D;
        /* --secondary-color: #6c757d; */
        --secondary-color: #3B82BF;
        /* --success-color: #28a745; */
        --success-color: #D96277;
        /* --light-blue: #e3f2fd; */
        --light-blue: #D9D9D9;
    }
/* note couleur 0D0D0D D9D9D9 3B82BF 2D4B73 D96277 */

body {
    font-family: 'Playfair', sans-serif;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.8rem;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.1);
}
/* .nav-item:over {
    transform: scale(1.4);
} */

.hero-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, #bbdefb 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-image img {
    height: 400px; 
    width: auto; 
    transition: transform 0.3s ease;
    cursor: pointer;
}

.hero-image:hover img {
    border: 2px solid red;
    transform: scale(1.2);
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.contact-section {
    background: var(--light-blue);
}

.contact-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info .mb-3 {
    display: flex;
    align-items: flex-start;
}

.contact-info .mb-3 i {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info .address-block {
    flex: 1;
    line-height: 1.4;
}

.contact-info .horaire-block {
    flex: 1;
    line-height: 1.4;
}

.btn-success-gradient {
    background: linear-gradient(45deg, var(--success-color), #20c997);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.btn-success-gradient:hover {
    background: linear-gradient(45deg, #228b22, var(--success-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
    color: white;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #0056b3);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.stats-counter {
    text-align: center;
    padding: 2rem;
}

.counter-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.about-section {
    padding: 80px 0;
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.form-group .form-control {
    width: 100%;
}