/* General Styles */
body {
    font-family: monospace;
    margin: 0;
    padding: 0;
    color: #4f4c4c;
    line-height: 1.6;
    background-color: #cfd3d69c;
    padding: 0 20px;
}

/* Full-width banner styling */
.hero-banner {
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: url('banner-image.jpg') no-repeat center center/cover;
    position: relative;
    color: white;
    text-align: center;
    padding-top: 40px;
}

.hero-banner .logo-container img {
    height: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.337);
    background: rgba(255, 255, 255, 0.813);
    padding: 10px;
    border-radius: 20px;
}

/* Bannière texte */
.banner-text h1 {
    font-size: 3em; /* Augmentation de la taille du titre */
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8); /* Ombre pour lisibilité */
    margin-bottom: 10px;
}

.banner-text p {
    font-size: 1.8em; /* Augmentation de la taille des paragraphes */
    margin: 5px 0; /* Ajustement des marges pour équilibrer le texte */
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Contact Links Styling */
.contact-links {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.contact-links .qr-code {
    height: 60px;
    width: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.contact-links .contact-btn {
    background-color: #5f9bf5;
    color: rgb(100, 100, 100);
    border: none;
    padding: 30px 60px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-links .contact-btn:hover {
    background-color: #457cd4;
}

/* Button styling */
.hero-banner .btn {
    background-color: rgba(255, 255, 255, 0.546);
    color: rgb(100, 100, 100);
    border: 2px solid rgba(148, 142, 142, 0.802);
    padding: 20px 40px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-banner .btn:hover {
    background-color: rgb(78, 131, 211);
    color: white;
}

/* Remonter la section Mes Services */
#services {
    margin-top: -20px; /* Valeur négative pour remonter la section */
    padding-top: 10px; /* Ajout d'un léger espace pour éviter un chevauchement */
    background-color: #cfd3d68b; /* Conserve la couleur de fond */
}

/* Général */
body {
    font-family: monospace;
    margin: 0;
    padding: 0;
    color: #4f4c4c;
    line-height: 1.6;
    background-color: #cfd3d69c;
    padding: 0 20px;
}

/* Bannière principale */
.hero-banner {
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: url('banner-image.jpg') no-repeat center center/cover;
    position: relative;
    color: white;
    text-align: center;
    padding-top: 40px;
}

/* Services */
.services {
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    padding: 1.5rem;
    margin: 0;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: #475569;
}

