@charset "utf-8";

/* Variables CSS globales */
:root {
    --primary-color: #3b6deb;
    --text-gray: #4a5568;
    --bg-gray-50: #f9fafb;
    --bg-gray-900: #1a202c;
}

/* Styles de base */
/*
@font-face {
font-family: 'Plagiat';
src: url('Plagiat.ttf');
}
*/
body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: var(--bg-gray-50);
    padding-top: 6rem;
    line-height: 1.5;
    color: var(--text-gray);
}

/* Classes utilitaires */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center { text-align: center; }
.font-bold { font-weight: bold; }
.text-white { color: white; }
.text-gray-400 { color: #9ca3af; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.pt-8 { padding-top: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.max-w-2xl { max-width: 42rem; }
.opacity-90 { opacity: 0.9; }
.drop-shadow-lg { filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1)); }
.drop-shadow-md { filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06)); }

.text-primary-color {
    color: var(--primary-color);
}
.hover\:text-opacity-80:hover {
    opacity: 0.8;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 6rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 1rem;
    height: 6rem;
}

.nav-brand {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}
.sous-titre{
    margin-top: -0.7rem;
    font-size: 1.5rem;
}
.nav-menu {
    display: flex;
    gap: 1rem;
    font-size: 1.1rem;
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Dropdown menu pour Réalisations */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1001;
    border-radius: 0.5rem;
    overflow: hidden;
    padding-top: 0.5rem;
    margin-top: 0;
}

.dropdown-content a {
    color: var(--text-gray);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: rgba(59, 109, 235, 0.1);
    color: var(--primary-color);
}

/* Afficher le dropdown au hover sur desktop */
@media (min-width: 1001px) {
    .nav-dropdown:hover .dropdown-content {
        display: block;
    }
}

/* Hero Section et Carousel */
.hero {
    position: relative;
    height: 80vh;
    min-height: 400px;
    color: white;
    text-align: center;
    overflow: hidden;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    transform: translateZ(0);
    will-change: transform;
}



@media (min-width: 1200px) {
    .hero-content h1 {
        font-size: 4.5rem;  /* 72px */
    }
    .hero-content p {
        font-size: 1.5rem;  /* 24px */
    }
}
@media (max-width: 1200px) {
    .hero-content p {
        font-size: 1.2rem;  /* 24px */
    }
}

.hero-button {
    background-color: white;
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 2rem;
    text-decoration: none;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 3rem 0;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.service-icon {
    margin: 0 auto 1rem;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(59, 109, 235, 0.1);
    border-radius: 50%;
    padding: 1rem;
}
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Enterprise Section */
.enterprise {
    padding: 3rem 0;
        background-image: url('/images/background.png');
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.enterprise-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.enterprise-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.equipment-list {
    list-style-type: none;
    padding-left: 1.5rem;
}

.equipment-list li {
    position: relative;
    margin-bottom: 0.5rem;
}

.equipment-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: -1rem;
}

/* Featured Projects */
.featured-projects {
    padding: 3rem 0;
    background: linear-gradient(to bottom, #f8fafc, white);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1rem;
}

.featured-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.featured-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    min-height: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.featured-caption h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    width: 100%;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.featured-caption p {
    font-size: 1.1rem;
    line-height: 1.4;
    opacity: 0.9;
}

.featured-item:hover .featured-caption {
    transform: translateY(0);
}

/* Réalisations Section */

.realisations {
    padding: 4rem 0;
    /*background-color: #aec2f3;*/
background-image: url('/images/background2.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
}

.category-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 2rem 0;
    font-weight: 600;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
}
.divLienRealisations{
    margin-bottom: 4rem;
    font-size: 1.2rem;
}
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-container:nth-child(1),
.image-container:nth-child(2) {
    grid-column: span 2;
}

/* Modal */
#imageModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1100;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

#modalImage {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.close-button {
    position: absolute;
    top: 1rem;
    right: 2rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: var(--bg-gray-900);
    color: white;
}

footer a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

/* Grid system */
.grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive Design */
@media (max-width: 880px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
}
.mobile-menu-button {
    display: none;
}
@media (max-width: 1000px) {
    .mobile-menu-button {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-gray);
        cursor: pointer;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    /* Dropdown en mode responsive */
    .nav-dropdown {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .dropdown-content {
        display: block;
        position: static;
        box-shadow: none;
        background-color: rgba(59, 109, 235, 0.05);
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        border-radius: 0.5rem;
    }

    .dropdown-content a {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }

    .hero {
        height: 60vh;
        min-height: 300px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .carousel-dots {
        bottom: 10px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
        min-height: 250px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    .hero-button {
      margin-top: 1rem;
    }
    .image-grid {
        grid-template-columns: 1fr;
    }

    .image-container:nth-child(1),
    .image-container:nth-child(2) {
        grid-column: span 1;
    }

    .enterprise-card {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .featured-item {
        height: 300px;
    }

    .nav-brand {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 0.75rem;
    }
    .carousel-dots{
        display: none;
    }
}

@media (max-width: 350px) {
    .hero {
        height: 40vh;
        min-height: 200px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-top: 0.3rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }

.hero-button {
    margin-top: 0.5rem;
}

    .carousel-dots {
        bottom: 5px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }

    .enterprise-title {
        font-size: 1.5rem;
        padding-left: 0.75rem;
    }

    .service-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }

    .featured-item {
        height: 250px;
    }

    .featured-caption {
        padding: 1rem;
    }

    .featured-caption h3 {
        font-size: 1.2rem;
    }

    .category-title {
        font-size: 1.3rem;
        margin: 1.5rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .equipment-list {
        padding-left: 1rem;
    }

    .enterprise-card,
    .service-card {
        padding: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Classes d'animation */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.slide-in {
    animation: slideIn 0.5s ease-in-out;
}

/* États actifs et focus */
button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Optimisations d'accessibilité */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Optimisations de performance */
.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Print styles */
@media print {
    .hero,
    .nav-menu,
    .carousel-button,
    .carousel-dots,
    .hero-button,
    #imageModal {
        display: none;
    }

    body {
        background: white;
        color: black;
        margin: 2cm;
    }

    .container {
        max-width: none;
        width: auto;
        margin: 0;
    }

    .enterprise-card,
    .service-card {
        break-inside: avoid;
        page-break-inside: avoid;
        border: 1px solid #ccc;
    }

    a {
        text-decoration: none;
        color: black;
    }

    .featured-caption {
        position: static;
        background: none;
        color: black;
        transform: none;
    }
}


                      							  			  /*page réalisation*/
/* Styles pour la grille des réalisations */
.pageRealisation-container {
    max-width: 1600px;
    margin: 6rem auto 2rem;
    padding: 2rem;
}

.pageRealisation-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 3rem;
    font-weight: bold;
}

.pageRealisation-masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.pageRealisation-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.8rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pageRealisation-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

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

/* Styles pour la modale et la navigation */
.pageRealisation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1100;
    justify-content: center;
    align-items: center;
}

.pageRealisation-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pageRealisation-modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

/* Boutons de navigation */
.pageRealisation-nav-button {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    z-index: 1200;
}

.pageRealisation-prev-button {
    left: 20px;
    border-radius: 50%;
}

.pageRealisation-next-button {
    right: 20px;
    border-radius: 50%;
}

.pageRealisation-nav-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

/* Bouton de fermeture */
.pageRealisation-close-button {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1200;
    transition: transform 0.3s ease;
}

.pageRealisation-close-button:hover {
    transform: scale(1.1);
}

/* Compteur d'images */
.pageRealisation-image-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

/* Animation de fade-in */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.pageRealisation-image-item {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Styles responsifs */
@media (max-width: 768px) {
    .pageRealisation-container {
        padding: 1rem;
        margin-top: 5rem;
    }

    .pageRealisation-masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .pageRealisation-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .pageRealisation-nav-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .pageRealisation-prev-button {
        left: 10px;
    }

    .pageRealisation-next-button {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .pageRealisation-masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .pageRealisation-title {
        font-size: 1.5rem;
    }
}
.pageRealisation-description{
    text-align: justify;
    margin-bottom: 1rem;
}
.pageRealisation-submenu {
    width: 100%;
    margin: 2rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.pageRealisation-submenu-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pageRealisation-submenu-item {
    padding: 0.5rem 0;
}

.pageRealisation-submenu-link {
    text-decoration: none;
    color: #333;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.pageRealisation-submenu-link:hover {
    color: #007bff;
}

.pageRealisation-submenu-link.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

/* Version mobile */
@media (max-width: 768px) {
    .pageRealisation-submenu-list {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .pageRealisation-submenu-item {
        width: calc(50% - 0.5rem);
        text-align: center;
    }
}
                                                              /*fin page réalisation*/
                                                             
                                                              /*formulaire contact*/
#agencementContact {
    display: flex;
    justify-content: space-between;
    color: #636363;
    padding: 0rem 5rem;
    width: 100%;
    box-sizing: border-box;
    background-color: #fefefe;
}

@media screen and (max-width: 1450px) {
    #agencementContact {
        padding: 0rem 2rem;
    }
}

@media screen and (max-width: 1200px) {
    #agencementContact {
        flex-direction: column;
        justify-content: center;
        padding: 0rem 0.2rem;
    }
}

#coordonees {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-radius: 8px;
}

@media screen and (max-width: 1050px) {
    #coordonees {
        font-size: 16px;
    }
}

#coordonees span {
    margin-right: 1rem;
    margin-bottom: 0.8rem;
}

@media screen and (max-width: 1200px) {
    #coordonees span {
        margin: 0.5rem 1rem 0rem 0rem;
    }
}

@media screen and (max-width: 1300px) {
    #coordonees iframe {
        width: 30rem;
    }
}

@media screen and (max-width: 1200px) {
    #coordonees iframe {
        display: none;
    }
}

.formulaire_contact {
    flex: 4;
    font-size: 1.2rem;
    padding: 1rem;
    display: flex;
    justify-content: end;
    margin-left: 3rem;
    max-width: 100%;
    box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
    .formulaire_contact {
        justify-content: center;
        margin-left: 0;
    }
}

.formulaire_contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 50rem;
}

@media screen and (max-width: 580px) {
    .formulaire_contact form {
        font-size: 1rem;
    }
}

.formulaire_contact form div {
    margin-top: 1rem;
}

.formulaire_contact form ul li {
    text-align: center;
}

.inputedit {
    width: 100%;
    max-width: 50rem;
    padding: 0.8rem;
    border: 1px solid #1d1d1d;
    background-color: #f5f5f5;
    color: #0d0c0c;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.inputedit:focus {
    outline: none;
    border-color: #636363;
    box-shadow: 0 0 5px rgba(99, 99, 99, 0.2);
}

@media screen and (max-width: 1600px) {
    .inputedit {
        max-width: 40rem;
    }
}

@media screen and (max-width: 1400px) {
    .inputedit {
        max-width: 35rem;
    }
}

@media screen and (max-width: 1000px) {
    .inputedit {
        max-width: 25rem;
    }
}

@media screen and (max-width: 600px) {
    .inputedit {
        max-width: 100%;
        width: 100%;
    }
}

#textareamessage {
    min-height: 10rem;
    resize: vertical;
    font-family: inherit;
    border-radius: 4px;
    padding: 0.5rem;
    color: #0d0c0c;
}

#valider {
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    margin-top: 1.5rem;
    padding: 0.5rem 2rem;
    height: auto;
    font-size: 1.3rem;
    font-weight: bold;
    background-color: #636363;
    border: none;
    border-radius: 4px;
}

@media screen and (max-width: 480px) {
    #valider {
        font-size: 1.1rem;
    }
}

#valider:hover {
    background-color: #4a4a4a;
    transform: translateY(-2px);
}

.asterisque {
    color: #c50303;
}

.error {
    color: #ec5f66;
    font-size: 0.9rem;
    margin-top: 0.3rem;
    padding: 0.5rem;
    background-color: rgba(236, 95, 102, 0.1);
    border-radius: 4px;
}

#titre_form {
    font-size: 30px;
}

@media screen and (max-width: 1000px) {
    #titre_form {
        font-size: 1.2rem;
    }
}

#mapTel {
    display: none;
    margin: auto;
}

@media screen and (max-width: 1200px) {
    #mapTel {
        margin-bottom: 1rem;
        display: block;
    }
}

@media screen and (max-width: 1000px) {
    #mapTel iframe {
        width: 30rem;
    }
}

@media screen and (max-width: 600px) {
    #mapTel iframe {
        width: 25rem;
    }
}

@media screen and (max-width: 500px) {
    #mapTel iframe {
        width: 20rem;
    }
}

@media screen and (max-width: 355px) {
    #mapTel iframe {
        width: 16rem;
    }
}

iframe {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.NomSite{
color: var(--primary-color);
font-size: 1.5rem;
}
#contact{

}
               										           /*fin formulaire contact*/
.iframe-border {
    border: 0;
}