/* style.css */
:root {
    --primary-color: #FF8A00;
    --secondary-color: #333333;
    --bg-color: #FFFFFF;
    --text-color: #333333;
    --light-gray: #F5F5F5;
    --border-color: #EEEEEE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Ajustements des textes */
h1, h2, h3, .project-title {
    text-transform: none;
    letter-spacing: 0.5px;
}

.projects-section h2, .projects-page h1, .why-us-section h2, 
.informations-page h1, .contact-page h1, .project-details h1 {
    font-size: 32px;
    margin-bottom: 40px;
}

p {
    line-height: 1.7;
    font-size: 15px;
}

/* Textes justifiés pour à propos et vision */
.about-content p, .our-vision p {
    text-align: justify;
}

/* Header */
header {
    background-color: #FFFFFF; /* Fond blanc solide */
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF; /* Assurer que le container est également blanc */
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s;
    color: #333333; /* Couleur de texte sombre pour contraster avec le fond blanc */
}

nav ul li a:hover {
    color: var(--primary-color);
}

.contact-info {
    text-align: right;
}


.contact-info a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Hero Banner */
.hero-banner {
    background-image: url('assets/images/projects/.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    position: relative;
    margin-top: 80px; /* Ajout de marge pour éviter que le contenu soit caché sous le header */
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2; /* axh 1 */
    max-width: 600px;
    color: white;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 300;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.stat-number::after {
    content: "+";
}

.stat-text {
    font-size: 16px;
    font-weight: 500;
}

/* Projects Section */
.projects-section, .projects-page {
    padding: 80px 0;
}

.projects-page {
    padding-top: 150px;
}

.projects-section h2, .projects-page h1 {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    position: relative;
    color: #333;
}

.projects-section h2::after, .projects-page h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

/* Nouveau design de la grille de projets */
.project-grid.new-design {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.project-card-new {
    flex: 0 0 calc(33.333% - 30px);
    margin: 15px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.project-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-image {
    height: 220px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card-new:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.project-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.project-desc {
    line-height: 1.6;
    font-size: 14px;
    font-style: normal;
    color: #666;
    margin-bottom: 15px;
}

.project-detail {
    margin-bottom: 10px;
    font-size: 14px;
}

.detail-label {
    font-weight: 600;
    color: #444;
}

.detail-value {
    color: #666;
}

.btn-more {
    margin-top: auto;
    align-self: flex-start;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-more:hover {
    background-color: #E67E00;
}

/* Ancien style de projet pour rétrocompatibilité */
.project-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.project-card {
    flex: 0 0 calc(33.333% - 30px);
    margin: 15px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-card img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center top;
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.play-button i {
    color: var(--primary-color);
    font-size: 30px;
}

.play-button:hover {
    background-color: var(--primary-color);
}

.play-button:hover i {
    color: white;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
}

.why-us-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    position: relative;
}

.why-us-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.why-us-content {
    display: flex;
    gap: 50px;
}

.why-us-text {
    flex: 1;
}

.why-us-item {
    display: flex;
    margin-bottom: 30px;
}

.number {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.why-us-item .content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.why-us-item .content p {
    font-size: 14px;
    line-height: 1.6;
}

.why-us-image {
    flex: 1;
}

.why-us-image img {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding-top: 60px;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-top .container {
    display: flex;
    justify-content: space-between;
}

.footer-map {
    flex: 1;
}

.footer-contact, .footer-links {
    flex: 1;
    padding-left: 30px;
}

.footer-contact h3, .footer-links h3 {
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-links a {
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background-color: #222;
    padding: 20px 0;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #444;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

/* Project Details */
.project-details {
    padding: 150px 0 80px;
}

.project-details h1 {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    position: relative;
}

.project-details h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}
 /*
.project-slider {
    margin-bottom: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.project-slider .slide img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    background-color: #f5f5f5;
}
*/

.project-slider {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-slider .slide img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

/* Bannière de localisation */
.location-banner {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 15px;
}

.project-info {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.project-description, .project-details-info {
    flex: 1;
}

.project-description h2, .project-details-info h2 {
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 10px;
}

.project-description h2::after, .project-details-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.project-details-info ul {
    margin-left: 20px;
}

.project-details-info ul li {
    margin-bottom: 10px;
    list-style: disc;
}

/* Informations Page */
.informations-page {
    padding: 150px 0 80px;
}

.informations-page h1 {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    position: relative;
}

.informations-page h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.about-us {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.about-image, .about-content {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-content h2, .our-vision h2, .our-values h2 {
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 10px;
}

.about-content h2::after, .our-vision h2::after, .our-values h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.our-vision {
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.value-item {
    flex: 0 0 calc(25% - 30px);
    margin: 15px;
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.value-item h3 {
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

/* CSS pour la section Notre équipe */
.our-team {
    margin-top: 80px;
    margin-bottom: 50px;
}

.our-team h2 {
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 10px;
}

.our-team h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 30px -15px 0;
    justify-content: space-between;
}

.team-member {
    flex: 0 0 calc(33.333% - 30px);
    margin: 15px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-photo {
    height: 250px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    padding: 20px 20px 5px;
    margin: 0;
}

.member-position {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    padding: 0 20px 10px;
    margin: 0;
}

.member-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    padding: 0 20px 20px;
    margin: 0;
}

/* Contact Page */
.contact-page {
    padding: 150px 0 80px;
}

.contact-page h1 {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    position: relative;
}

.contact-page h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

/* Bannière de contact */
.contact-banner {
    background-color: var(--primary-color);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 50px;
    text-align: center;
    color: white;
}

.contact-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-banner p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Sections de contact */
.contact-content {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-form-section, .contact-info-section {
    flex: 1;
}

/* Style des cartes */
.form-card, .info-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
}

.form-card h2, .info-card h2 {
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 10px;
    font-size: 22px;
}

.form-card h2::after, .info-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Style du formulaire */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
}

/* Messages de résultat */
.message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 14px;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Style des infos de contact */
.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-item .text h3 {
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    text-align: left;
    display: block;
    width: 100%;
}

.info-item .text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;        
    text-align: left;

}

.contact-info h2 {
    text-align: left;
}

.contact-info h2::after {
    margin-left: 0;
    margin-right: auto;
}


.opening-hours {
    line-height: 1.6;
    font-size: 14px;
    color: #666;
}

.day-range {
    font-weight: 600;
    color: #444;
}

.time-range {
    color: #666;
}


/* Liens sociaux */
.social-links {
    display: flex;
    margin-top: 30px;
    justify-content: flex-start;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: #666;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Map */
.map-container {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Styles de boutons unifiés */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}


/* Mise à jour du style pour le bouton CONTACTEZ-NOUS */
/* Style des boutons principaux */
.btn-primary {
    background-color: #FF8A00;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary:hover {
    background-color: #E67E00;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* Adapter le style pour les boutons dans les cards de projets */
.project-info .btn {
    margin-top: 10px;
    font-size: 14px;
    padding: 8px 20px;
}

/* Ajustement pour la section why-us */
.why-us-text .btn {
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .why-us-content, .contact-content, .about-us {
        flex-direction: column;
    }
    
    .why-us-image, .contact-info, .about-image {
        margin-top: 40px;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 180px;
    }
    
    .project-card-new, .project-card {
        flex: 0 0 calc(50% - 30px);
    }
    
    .value-item {
        flex: 0 0 calc(50% - 30px);
    }
    
    .team-member {
        flex: 0 0 calc(50% - 30px);
    }
    
    .contact-form-section, .contact-info-section {
        width: 100%;
    }
    
    .info-card {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 15px;
    }
    
    .contact-info {
        margin-top: 20px;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .footer-top .container {
        flex-direction: column;
    }
    
    .footer-contact, .footer-links {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .stats-grid {
        flex-direction: column;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .project-info {
        flex-direction: column;
    }
    
    .project-description, .project-details-info {
        margin-bottom: 30px;
    }
    
    .contact-banner {
        padding: 30px 20px;
    }
 
    .hero-content h1 {
        font-size: 32px;
    }
    
    .contact-banner h2 {
        font-size: 24px;
    }
    
    .contact-banner p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .project-card-new, .project-card {
        flex: 0 0 calc(100% - 30px);
    }
    
    .value-item {
        flex: 0 0 calc(100% - 30px);
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .team-member {
        flex: 0 0 calc(100% - 30px);
    }
    
    .contact-content {
        gap: 20px;
    }
    
    .form-card, .info-card {
        padding: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero-banner {
        height: 90vh;
    }
}

/* Amélioration de l'affichage des projets sur mobile */

/* Styles de base pour les cartes de projet sur mobile */
@media (max-width: 576px) {
    .project-card-new, .project-card {
        flex: 0 0 calc(100% - 30px);
        margin-bottom: 30px;
    }
    
    .project-image {
        height: 180px; /* Réduire légèrement la hauteur de l'image */
    }
    
    .project-content {
        padding: 15px; /* Réduire légèrement le padding */
    }
    
    .project-title {
        font-size: 20px; /* Réduire un peu la taille du titre */
        margin-bottom: 10px;
    }
    
    .project-detail {
        margin-bottom: 8px;
    }
    
    /* Version plus compacte pour les détails */
    .detail-label, .detail-value {
        display: inline; /* Les mettre sur une même ligne */
    }
    
    /* Bouton plus large */
    .btn-more {
        width: 100%;
        text-align: center;
        margin-top: 15px;
        padding: 10px;
    }
    
    /* Ajustements pour la page de liste des projets */
    .projects-page {
        padding-top: 120px;
        padding-bottom: 50px;
    }
    
    .projects-page h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    /* Ajustements pour l'affichage en page d'accueil */
    .projects-section {
        padding: 50px 0;
    }
    
    .projects-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    /* Bouton "Voir plus" plus visible */
    .text-center {
        margin-top: 20px;
    }
    
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
    }
}

/* Container pour le diaporama d'images */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Container pour le diaporama d'images */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Style de base pour chaque slide */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* Première image */
.hero-banner .slide:nth-child(1) {
    background-image: url('assets/images/projects/fac2.jpg');
}

/* Deuxième image */
.hero-banner .slide:nth-child(2) {
    background-image: url('assets/images/projects/fac1.jpg');
}

/* Troisième image */
.hero-banner .slide:nth-child(3) {
    background-image: url('assets/images/projects/VUE 2.jpg');
}

/* Style pour la slide active */
.slide.active {
    opacity: 1;
}

/* Calque sombre par-dessus les images */
.slideshow-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Titre du projet */
.project-details .project-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    text-align: left;
}

/* Section principale d'information */
.project-main-info {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
    gap: 30px;
}

/* Style des informations d'emplacement */
.location-info {
    display: flex;
    align-items: flex-start;
    flex: 1;
    min-width: 300px;
}

.location-info i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.location-info strong {
    display: block;
    font-size: 16px;
    margin-bottom: 3px;
}

.location-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Style des informations de surface */
.surface-info {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    background-color: #f8f8f8;
    padding: 10px 15px;
    border-radius: 6px;
}

.surface-info i {
    font-size: 18px;
    margin-right: 10px;
}

.surface-info strong {
    font-size: 18px;
}

/* Caractéristiques du bien */
.property-features {
    display: flex;
    flex-wrap: wrap;
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 30px;
    justify-content: space-between;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 10px;
}

.feature-item span {
    font-size: 15px;
    font-weight: 500;
}

/* Description du projet */
.project-description {
    margin-bottom: 40px;
    line-height: 1.8;
}

.project-description p {
    font-size: 15px;
    color: #444;
    margin-bottom: 15px;
}

/* Section des équipements */
.property-equipments {
    margin-bottom: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.property-equipments h3 {
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #333;
}

.equipments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.equipment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 calc(25% - 20px);
    text-align: center;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.equipment-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.equipment-item span {
    font-size: 14px;
    font-weight: 500;
}

/* Conteneur du bouton de contact */
.contact-btn-container {
    margin-top: 40px;
    margin-bottom: 20px;
}

.project-slider-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-slider {
    position: relative;
    height: 500px;
}

.project-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

.project-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.slider-nav:hover {
    background: var(--primary-color);
    color: white;
}

.slider-nav.prev {
    left: 15px;
}

.slider-nav.next {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active, .dot:hover {
    background: var(--primary-color);
}

/****/

.project-details .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Slider du projet */
.project-slider-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-slider {
    position: relative;
    height: 500px;
}

.project-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

.project-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation du slider */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.slider-nav:hover {
    background: var(--primary-color);
    color: white;
}

.slider-nav.prev {
    left: 15px;
}

.slider-nav.next {
    right: 15px;
}

/* Points de navigation */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active, .dot:hover {
    background: var(--primary-color);
}

/* Bannière de localisation */
.location-banner {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Titre du projet */
.project-details .project-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    text-align: left;
}

/* Section principale d'information */
.project-main-info {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
    gap: 30px;
}

/* Style des informations d'emplacement */
.location-info {
    display: flex;
    align-items: flex-start;
    flex: 1;
    min-width: 300px;
}

.location-info i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.location-info strong {
    display: block;
    font-size: 16px;
    margin-bottom: 3px;
}

.location-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Style des informations de surface */
.surface-info {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    background-color: #f8f8f8;
    padding: 10px 15px;
    border-radius: 6px;
}

.surface-info i {
    font-size: 18px;
    margin-right: 10px;
}

.surface-info strong {
    font-size: 18px;
}

/* Caractéristiques du bien */
.property-features {
    display: flex;
    flex-wrap: wrap;
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 30px;
    justify-content: space-between;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 10px;
}

.feature-item span {
    font-size: 15px;
    font-weight: 500;
}

/* Description du projet */
.project-description {
    margin-bottom: 40px;
    line-height: 1.8;
}

.project-description p {
    font-size: 15px;
    color: #444;
    margin-bottom: 15px;
}

/* Section des équipements */
.property-equipments {
    margin-bottom: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.property-equipments h3 {
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #333;
}

.equipments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.equipment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 calc(25% - 20px);
    text-align: center;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.equipment-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.equipment-item span {
    font-size: 14px;
    font-weight: 500;
}

/* Conteneur du bouton de contact */
.contact-btn-container {
    margin-top: 40px;
    margin-bottom: 20px;
}

.contact-btn-container .btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.contact-btn-container .btn-primary:hover {
    background-color: #E67E00;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .project-slider {
        height: 400px;
    }
    
    .property-features {
        flex-wrap: wrap;
    }
    
    .feature-item {
        flex: 0 0 50%;
    }
    
    .equipment-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .project-slider {
        height: 350px;
    }
    
    .project-main-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .surface-info {
        align-self: flex-start;
    }
    
    .feature-item {
        flex: 0 0 50%;
        padding: 8px 10px;
    }
    
    .project-details .project-title {
        font-size: 28px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .project-slider {
        height: 250px;
    }
    
    .equipment-item {
        flex: 0 0 100%;
    }
    
    .feature-item {
        flex: 0 0 100%;
    }
    
    .project-details {
        padding-top: 120px;
    }
    
    .location-banner {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .project-details .project-title {
        font-size: 24px;
    }
    
    .contact-btn-container .btn-primary {
        width: 100%;
        padding: 12px 20px;
    }
}

/* Section Mot du Président */
.president-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.president-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    position: relative;
    color: #333;
}

.president-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.president-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.president-image {
    flex: 0 0 40%;
    position: relative;
}

.president-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.president-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.1;
    border-radius: 10px;
    z-index: -1;
}

.president-text {
    flex: 0 0 55%;
}

.president-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-color);
}

.president-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.president-message p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
    color: #444;
    text-align: justify;
}

/* Version responsive */
@media (max-width: 992px) {
    .president-content {
        flex-direction: column;
    }
    
    .president-image {
        flex: 0 0 100%;
        margin-bottom: 30px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .president-text {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .president-section {
        padding: 50px 0;
    }
    
    .president-section h2 {
        font-size: 28px;
    }
    
    .president-text h3 {
        font-size: 22px;
    }
    
    .president-image::after {
        display: none;
    }
}

/***here***/

/* Styles pour le header et le menu mobile */
header {
    background-color: #FFFFFF;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF;
    flex-wrap: wrap;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s;
    color: #333333;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.contact-info {
    text-align: right;
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Styles pour le menu mobile */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.hamburger-icon, .close-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s, transform 0.3s;
    font-size: 24px;
    color: var(--primary-color);
}

.close-icon {
    opacity: 0;
    transform: scale(0);
}

body.menu-open .hamburger-icon {
    opacity: 0;
    transform: scale(0);
}

body.menu-open .close-icon {
    opacity: 1;
    transform: scale(1);
}

/* Ajustement pour assurer que les titres de page restent visibles */
.projects-page h1, .informations-page h1, .contact-page h1, .project-details h1 {
    margin-top: 120px; /* Augmenté pour plus d'espace entre le header et le titre */
}

/* Version responsive du header */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        position: fixed;
        top: 80px; /* Correspond à la hauteur du header */
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 999;
    }
    
    body.menu-open .header-content {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav ul li {
        margin: 10px 0;
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 8px 0;
    }
    
    .contact-info {
        text-align: left;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    /* Ajustement spécifique pour les pages de projet et autres */
    .projects-page, .informations-page, .contact-page, .project-details {
        padding-top: 120px; /* Augmenté pour plus d'espace */
    }
    
    .projects-section h2, .projects-page h1, .why-us-section h2, 
    .informations-page h1, .contact-page h1, .project-details h1 {
        margin-top: 40px; /* Augmenté pour plus d'espace */
    }
}

/* Ajustements pour les petits appareils */
@media (max-width: 576px) {
    .logo img {
        height: 40px;
    }
    
    .projects-page, .informations-page, .contact-page, .project-details {
        padding-top: 110px; /* Ajusté pour les très petits écrans */
    }
    
    /* Ajout d'espace supplémentaire entre le menu mobile et le contenu */
    body.menu-open .projects-page h1,
    body.menu-open .informations-page h1,
    body.menu-open .contact-page h1,
    body.menu-open .project-details h1 {
        margin-top: 180px; /* Espace supplémentaire quand le menu est ouvert */
    }
}

/* Ajustement spécifique pour l'espacement des boutons par rapport au titre de page */
.btn-more, .btn-secondary, .btn-primary, .btn-outline {
    margin-top: 20px; /* Augmenté pour plus d'espace */
}

/* Espacement supplémentaire pour le bouton "Voir plus" */
.text-center {
    margin-top: 60px; /* Augmenté considérablement */
}

/* Ajout d'espace sous les titres de section */
.projects-section h2::after, .projects-page h1::after, .why-us-section h2::after,
.informations-page h1::after, .contact-page h1::after, .project-details h1::after {
    margin-bottom: 30px; /* Ajout d'espace après la barre orange */
}

/* Ajustement de l'espacement vertical des sections */
.projects-section, .why-us-section, .video-section {
    padding: 100px 0; /* Augmenté pour plus d'espacement vertical */
}

/* Espacement des cartes de projet par rapport au titre */
.project-grid {
    margin-top: 40px; /* Ajout d'espace entre le titre et les cartes */
}

/*** here 2****/

/* Style du header modifié pour avoir la navigation au milieu */
header {
    background-color: #FFFFFF;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF;
}

.logo img {
    height: 50px;
}

/* Style pour la navigation principale */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    justify-content: center;
}

.main-nav ul li {
    margin: 0 15px;
}

.main-nav ul li a {
    font-weight: 500;
    transition: color 0.3s;
    color: #333333;
    padding: 5px 0;
}

.main-nav ul li a:hover {
    color: var(--primary-color);
}

/* Style pour les informations de contact */
.contact-info {
    text-align: right;
    margin-left: 20px;
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    line-height: 1.5;
}

/* Style pour le menu mobile */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
    margin-left: 15px;
}

.hamburger-icon, .close-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s, transform 0.3s;
    font-size: 24px;
    color: var(--primary-color);
}

.close-icon {
    opacity: 0;
    transform: scale(0);
}

body.menu-open .hamburger-icon {
    opacity: 0;
    transform: scale(0);
}

body.menu-open .close-icon {
    opacity: 1;
    transform: scale(1);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu nav ul {
    flex-direction: column;
}

.mobile-menu nav ul li {
    margin: 10px 0;
}

.mobile-menu nav ul li a {
    display: block;
    padding: 8px 0;
}

.mobile-contact-info {
    margin-top: 20px;
    text-align: left;
}

/* Media queries pour le responsive */
@media (max-width: 992px) {
    .main-nav, .contact-info {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    body.menu-open .mobile-menu {
        display: block;
    }
    
    header .container {
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 40px;
    }
    
    .mobile-menu {
        top: 70px;
    }
}



/* Style pour les informations de contact dans le menu mobile */
.mobile-contact-info {
    margin-top: 20px;
    text-align: right; /* Aligné à droite comme en desktop */
    padding-right: 15px; /* Léger padding pour éviter que le texte colle au bord */
}

.mobile-contact-info .phone {
    display: block;
}

.mobile-contact-info a {
    color: var(--primary-color); /* Même couleur qu'en desktop */
    font-weight: 600; /* Même graisse de police qu'en desktop */
    font-size: 14px; /* Même taille de police qu'en desktop */
    display: inline-block;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease; /* Transition douce au survol */
}

.mobile-contact-info a:hover {
    color: #E67E00; /* Effet hover comme sur desktop */
}

/* Ajustement pour la section du menu mobile */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

/* Adaptation pour les petits écrans */
@media (max-width: 576px) {
    .mobile-contact-info {
        /* On préserve l'alignement à droite même sur très petits écrans */
        text-align: left;
    }
    
    .mobile-contact-info a {
        /* Légèrement plus petit sur très petits écrans pour éviter les coupures de texte */
        font-size: 13px;
    }
}




/*TRT*/
/* Style révisé pour la section Notre équipe */
.our-team {
    margin-top: 80px;
    margin-bottom: 60px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.our-team h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.our-team h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.team-member {
    flex: 0 0 calc(45% - 30px);
    margin-bottom: 40px;
    background-color: transparent;
    box-shadow: none;
    transition: none;
    border: 1px solid #eaeaea;
    padding: 15px;
    margin-left: 15px;
    margin-right: 15px;
}

.team-photo {
    height: 225px;
    width: 270px;
    margin-bottom: 20px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.team-member h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
    padding: 0;
}

.member-position {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 10px 0;
    padding: 0;
}

.member-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    padding: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .our-team {
        width: 90%;
    }
    
    .team-member {
        flex: 0 0 calc(90% - 30px);
        margin-bottom: 30px;
    }
    
    .team-photo {
        width: 225px;
        height: 180px;
    }
    
    .our-team h2 {
        font-size: 24px;
    }
}


/* CSS pour le carousel d'images */
.carousel-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.carousel-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    position: relative;
    color: #333;
}

.carousel-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.image-carousel {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 600px;
    width:100%;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%; /* Sera remplacé par JS */
}

.carousel-slide {
   /* min-width: 100%; /* Sera remplacé par JS */
   /* flex: 0 0 auto;
   /* position: relative;*/
    flex: 0 0 25%;
    position: relative;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active, .carousel-dot:hover {
    background-color: var(--primary-color);
}

/* Responsive styles */
@media (max-width: 992px) {
    .carousel-slide img {
        height: 1200px;
    }
}

@media (max-width: 768px) {
    .carousel-slide img {
        height: 1200px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .carousel-slide img {
        height: 1200px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .carousel-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .image-carousel {
        height: 250px;
    }

    .carousel-slide img {
        height: 1200px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* 
@media (max-width: 768px) {
    .image-carousel {
        height: 350px;
    }

    .carousel-slide img {
        height: 350px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-section h2 {
        font-size: 26px;
    }
}
/* === Extra Small Devices (max-width: 576px) === 
@media (max-width: 576px) {
    .image-carousel {
        height: 350px;
    }

    .carousel-slide img {
        height: 350px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .carousel-section h2 {
        font-size: 22px;
    }
}*/


/* Section Vidéo du projet */
.project-video-section {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.project-video-section h3 {
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #333;
}

.project-video-section .video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.project-video-section video {
    width: 100%;
    display: block;
}

/* Styles responsives pour la section vidéo */
@media (max-width: 992px) {
    .project-video-section .video-container {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .project-video-section h3 {
        font-size: 20px;
    }
}

/****/

/* Section Vidéo du projet */
.project-video-section {
    margin: 50px 0;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.project-video-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.project-video-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.project-video-section .video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-video-section video {
    width: 100%;
    display: block;
    cursor: pointer;
}

.project-video-section .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-video-section .play-button i {
    color: var(--primary-color);
    font-size: 30px;
    transition: all 0.3s ease;
}

.project-video-section .play-button:hover {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.project-video-section .play-button:hover i {
    color: white;
}

.project-video-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Styles responsives pour la section vidéo */
@media (max-width: 992px) {
    .project-video-section .video-container {
        max-width: 100%;
    }
    
    .project-video-section .play-button {
        width: 70px;
        height: 70px;
    }
    
    .project-video-section .play-button i {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .project-video-section h3 {
        font-size: 20px;
    }
    
    .project-video-section .play-button {
        width: 60px;
        height: 60px;
    }
    
    .project-video-section .play-button i {
        font-size: 22px;
    }
}



/* Section Vidéo du projet */
.project-video-section {
    margin: 50px 0;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.project-video-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.project-video-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.project-video-section .video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-video-section video {
    width: 100%;
    display: block;
    cursor: pointer;
}

.project-video-section .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-video-section .play-button i {
    color: var(--primary-color);
    font-size: 30px;
    transition: all 0.3s ease;
}

.project-video-section .play-button:hover {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.project-video-section .play-button:hover i {
    color: white;
}

.project-video-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Styles responsives pour la section vidéo */
@media (max-width: 992px) {
    .project-video-section .video-container {
        max-width: 100%;
    }
    
    .project-video-section .play-button {
        width: 70px;
        height: 70px;
    }
    
    .project-video-section .play-button i {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .project-video-section h3 {
        font-size: 20px;
    }
    
    .project-video-section .play-button {
        width: 60px;
        height: 60px;
    }
    
    .project-video-section .play-button i {
        font-size: 22px;
    }
}



@media (max-width: 992px) {
    .carousel-slide img {
        height: 349px; /* 16:9 pour une largeur d'environ 620px */
    }
}

@media (max-width: 768px) {
    .carousel-slide img {
        height: 264px; /* 16:9 pour une largeur d'environ 470px */
    }
}

@media (max-width: 576px) {
    .carousel-slide img {
        height: 202px; /* 16:9 pour une largeur d'environ 360px */
    }
}