body, html {
    font-family: 'Caveat', cursive, 'Noto Sans', sans-serif;
    background-color: #000000;
    color: white;
    margin: 0;
    padding: 0;
    opacity: 100%;
}

.hero-title,
.hero-subtitle,
.services-title,
.popular-title {
    color: rgb(240, 156, 51);
}

.design-root {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

.layout-container {
    display: flex;
    flex-direction: column;
    width: 100%; /* Ajouté */
    padding: 0 1.5rem; /* Ajouté */
}

.header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    margin-bottom: 20px;
    width: 100%; /* Ajouté */
    background-color: #000000;
}

.header-image {
    max-width: 410px; /* Ajustement de la taille maximale de l'image */
    height: auto; /* Assurez-vous que l'image conserve ses proportions */
    position: absolute;
    top: 70%;
    left: 45%;
    transform: translate(-50%, -50%);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 1rem;
    height: 1rem;
    font-size: 28px;
    position: relative;
    top: -15px;
    left: 35px;
}

.site-title {
    font-size: 50px;
    font-weight: bold;
    margin: 0;
    margin-left: 65px
}

.nav-links {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    gap: 2rem;
}

.nav-items {
    display: flex;
    gap: 3rem;
}

.nav-items a {
    font-size: 25px;
    font-weight: medium;
    text-decoration: none;
    color: rgb(255, 255, 255);
    
}
.nav-items a:hover {
    color: rgb(255, 204, 0); /* Remplacez cette couleur par celle de votre choix */
}

.auth-buttons {
    display: flex;
    gap: 0.5rem;
}

.main-content {
    display: flex;
    flex: 1;
    justify-content: center;
    padding: 1.25rem 5rem; /* Réduit */
}

.content-container {
    display: flex;
    flex-direction: column;
    max-width: 1400px; /* Augmenté */
    width: 100%;
}

.hero-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 5rem;
    background: linear-gradient(rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%), url('https://www.image-heberg.fr/files/17254865984185302283.png') center 10%/cover no-repeat;
    min-height: 650px;
    border-radius: 0.75rem;
    border: 5px solid rgb(240, 156, 51);
}



.hero-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-end;
    flex: 1;
    position: relative;
    top: 30px;
    left: 17rem;
}

.hero-title {
    font-size: 50px;
    font-weight: 900;
    margin: 0;
    position: relative;
    left: 1rem;
    top: -9rem;
}
.hero-subtitle {
    font-size: 30px;
    font-weight: normal;
    margin: 0;
    position: relative;
    left: 9rem;
    top: -8rem;
}


.services-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 2.5rem 0;
    margin-top: 96px;
    background-color: #000000fa; /* Fond noir légèrement transparent */
    box-shadow: 0 0 30px 15px rgba(0, 0, 0, 0.979); /* Contour noir avec un effet dégradé plus large */
    border-radius: 0.75rem; /* Coins arrondis pour un meilleur visuel */
}




.services-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.services-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin: 0;
}

.services-description {
    font-size: 25px;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
    gap: 1.5rem;
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.service-image {
    width: 100%;
    padding-bottom: 56.25%;
    background-size: cover;
    background-position: center 30%;
    border-radius: 0.75rem;
    border: 4px solid rgb(240, 156, 51);

}

.service-info {
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1rem;
    font-weight: medium;
    margin: 0;
}

.service-description {
    font-size: 0.875rem;
    color: #a79db8;
    margin: 0;
}



.metric-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid #443c53;
    border-radius: 0.75rem;
    flex: 1;
    min-width: 200px;
    border: 3px solid rgb(240, 156, 51);
    width: 87.5rem;
    height: 280px;

}

.metric-value {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.metric-description {
    font-size: 0.875rem;
    color: #a79db8;
    margin: 0;
}


.discover-button {
    position: relative;
    display: inline-block;
    padding: 0.7rem 2.3rem;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: rgb(240,156,51);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: auto;
    min-width: 120px;
    max-width: 200px;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    left: 15rem;
}

.discover-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.discover-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.discover-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.discover-button:active::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.discover-button span {
    position: relative;
    z-index: 1;
}


.footer {
    padding: 30px;
    text-align: center;
    background-color: black;
    color: white;
    border-top: 1px solid rgb(240, 156, 51);
}

.social-media a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.social-media a:hover {
    text-decoration: underline;
}


.services-grid .service-title {
    font-size: 2rem; /* Taille de police agrandie pour le titre */
    text-align: center;
    margin-bottom: 10px;
}

.services-grid .service-description {
    font-size: 1.3rem; /* Taille de police agrandie pour la description */
    text-align: center;
}


/* Initial state before the element is visible */
.services-section {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* State when the element is visible */
.services-section.visible {
    opacity: 1;
    transform: scale(1);
}

.auth-buttons {
    display: flex;
    align-items: center;
}

.phone-link {
    text-decoration: none;
}

.phone-icon {
    font-size: 24px; /* Taille de l'icône */
    margin-left: 8px; /* Marge à gauche pour l'espacement */
    color: rgb(240, 156, 51); /* Couleur orange */
}

.popular-title{
    font-size: 3.5rem;
    font-weight: bold;
    margin: 0;
    color: rgb(240, 156, 51);
    position: relative;
    top: 15px;
    margin-top: 50px;
    margin-bottom: 25px;
}


.avis-section H2{
    font-size: 3.5rem;
    margin: 0;
    color: rgb(240, 156, 51);
    margin-top: 40px;
    font-weight: bold;
    position: relative;
    top: 60px;
}






/* Styles pour l'icône du menu burger */
.hamburger {
    display: none; /* Cacher le menu burger par défaut */
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
    height: 3em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Styles pour les lignes du menu burger */
.hamburger svg {
    fill: none; /* Aucun remplissage pour l'intérieur des lignes */
    stroke: white; /* Couleur blanche pour les lignes */
    stroke-width: 2; /* Épaisseur des lignes */
}

/* Styles pour le menu mobile */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #000;
    padding: 1rem;
    border-radius: 5px;
    z-index: 1000;
}

#menu-toggle:checked + .hamburger + .mobile-nav {
    display: flex;
}



.webdesign17 {
    width: 15rem;
    height: 15rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto; /* Si nécessaire pour centrer globalement le div */
}

.webdesign17 img {
    max-width: 100%; /* Adapte l'image à la largeur du conteneur */
    max-height: 100%; /* Adapte l'image à la hauteur du conteneur */
    object-fit: contain; /* Assure que l'image garde ses proportions */
}
