/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'NEONCLUBMUSIC';
    src: url('fonts/NEONCLUBMUSIC.woff') format('woff'),
         url('fonts/NEONCLUBMUSIC.woff2') format('woff2'),
         url('fonts/NEONCLUBMUSIC.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.logo-text {
    font-family: 'NEONCLUBMUSIC', sans-serif; /* Utilisez le nom de la police définie */
    font-size: 2em; /* Ajustez la taille selon vos besoins */
    color: #ffffff; /* Couleur blanche ou autre selon votre design */
    font-weight: 700; /* Épaisseur de la police, selon ce qui convient */
    margin: 0;
    padding: 0;
}

/* Style global du body */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0 auto;
    max-width: 960px; /* Limite la largeur du body à 960px */
    /*padding-top: 160px; /* Espace pour compenser la bande fixe du header */
}

/* Bande supérieure du header */
.header-top {
    width: 100vw; /* Prend toute la largeur de la fenêtre */
    height: 60px;
    background-color: #3e5571; /* Couleur de fond */
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.header-top .container {
    max-width: 960px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header-top .logo img {
    max-width: 300px;
    margin-right: 10px;
}

.header-top nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-top nav ul li {
    margin-left: 20px;
}

.header-top nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Image de fond du header */
.header-image {
    width: 100vw; /* Prend toute la largeur de la fenêtre */
    height: 300px; /* Hauteur limitée */
    background-image: url('banner02.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    left: 50%; /* Ajuste pour contrer le centre de la page */
    transform: translateX(-50%); /* Recentre l'image en utilisant le centre du navigateur */
}

/* Section Qui nous sommes */
.about {
    display: flex;
    margin-top: 20px;
}

.about-left {
    width: 50%;
    /*background-color: #59a5b2;*/
    padding: 20px;
}

.about-left h2 {
    text-align: left;
}

.about-left p {
    margin-top: 30px;
}

.about-right {
    width: 50%;
    /*background-color: #ffffff;*/
    display: flex;
    justify-content: center;
    align-items: center;
    /*padding: 20px;*/
}

.about-right img {
    max-width: 100%;
    height: auto;
    border-radius: 5px; /* Arrondi des coins de l'image */
}

/* Section Pour qui ? */
.forwho {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #e5e6e6;
    height: 360px;
    text-align: center;
    color: #151515;
    margin-top: 20px;
  }
  
.forwho-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
.forwho-item img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 20px;
  }

/* Styles pour la section "Services" */
.services {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divise la section en deux colonnes égales */
    grid-gap: 20px; /* Espace entre les colonnes */
    /*padding: 0 30px; /* Ajoute un padding latéral pour l'ensemble de la section */
	margin-top: 20px;
}

/* Zone gauche pour le titre et l'image */
.services-left {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centre le contenu verticalement */
    /*padding: 20px; /* Ajuste l'espace autour du contenu */
    /*background-color: #59a5b2; /* Couleur de fond */
    border-radius: 5px; /* Arrondi des coins */
}

/* Ajustement du titre */
.services-left h2 {
    font-size: 24px; /* Taille du texte du titre */
    color: #222222; /* Couleur du texte */
    margin-bottom: 20px; /* Espace sous le titre */
    text-align: right;
}

/* Ajustement de l'image */
.services-left img {
    max-width: 100%; /* L'image prend toute la largeur disponible */
    height: auto; /* Maintient le ratio de l'image */
    border-radius: 5px; /* Arrondi des coins de l'image */
}

/* Zone droite pour la liste des services */
.services-right {
    display: flex;
    align-items: center; /* Centre le contenu verticalement */
    /*padding: 20px; /* Ajuste l'espace autour du contenu */
}

/* Liste des services en 2 colonnes */
.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divise en deux colonnes égales */
    grid-gap: 15px; /* Espace entre les services */
}

/* Styles pour chaque élément de service */
.service-item {
    background-color: #fff; /* Couleur de fond de chaque service */
    padding: 10px; /* Espace interne de chaque service */
    border-radius: 5px; /* Arrondi des coins */
    text-align: center; /* Centre le texte */
    font-size: 18px; /* Taille du texte des services */
}

/* Ajustement du texte des services */
.service-item {
    font-size: 16px; /* Taille du texte des services */
}

/* Pour ajuster la taille des rectangles, modifiez la valeur du padding */
.service-item {
    padding: 10px; /* Modifier la taille du padding pour changer la hauteur des rectangles */
}

/* Pour ajuster la position du texte, utilisez text-align, padding, ou margin */
.service-item {
    text-align: center; /* Centrer le texte horizontalement */
    /* Utilisez padding ou margin pour ajuster la position verticale ou horizontale du texte */
}



/* Section Contact */
/*.contact {
    background-color: #3e5571;
    height: 200px; /* Ajout d'une hauteur fixe 
    margin-top: 90px;

    padding: 20px;
    color: #fff;
    text-align: center;
} */

.contact {
    background-color: #3e5571; /* Couleur de fond de la zone de contact */
    color: #ccc; /* Couleur du texte */
    padding: 20px 30px;
    font-size: 14px;
    font-family: Arial, sans-serif;
	margin-top: 20px;
}

.contact-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-left {
    flex: 1;
    max-width: 600px;
}

.contact-left p {
    margin: 0 0 10px;
}

.contact-left a {
    color: #4da3ff; /* Couleur des liens */
    text-decoration: none;
}

.contact-left a:hover {
    text-decoration: underline;
}

.itaa-logo {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.itaa-logo img {
    height: 25px;
    margin-right: 10px;
}

.contact-right {
    flex: 1;
    max-width: 360px;
    text-align: right;
}

.contact-right p {
    margin: 0 0 10px;
}

.contact-right img {
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.contact-right a {
    color: #4da3ff; /* Couleur des liens */
    text-decoration: none;
}

.contact-right a:hover {
    text-decoration: underline;
}


/* Règles générales pour les petits écrans */
@media (max-width: 768px) {

    /* Barre supérieure et logo */
    .header-top .container {
        flex-direction: row; /* Reste en ligne */
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        max-width: 60px; /* Taille du logo réduite */
    }

    .logo-text {
        font-size: 1.2em; /* Taille réduite du titre */
        margin-left: 10px;
        text-align: center; /* Centrage du titre */
    }

    /* Menu de navigation horizontal */
    .header-top nav ul {
        flex-direction: row; /* Menu reste en ligne */
        align-items: center;
        margin-top: 0;
    }

    .header-top nav ul li {
        margin-left: 10px; /* Espacement horizontal entre les liens */
    }

    .header-top nav ul li a {
        font-size: 0.9em; /* Réduction de la taille de la police si nécessaire */
    }

    .forwho {
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: #e5e6e6;
        height: 220px;
        text-align: center;
        color: #151515;
        margin-top: 20px;
      }

    .forwho-item img {
        width: 50%; /* Réduit la taille de l'image de 50% */
        height: auto; /* Maintient le ratio de l'image */
        margin: 0 auto; /* Centre l'image si nécessaire */
    }
    /* Section About et Services en colonne */
    .about,
    .services {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-left,
    .about-right,
    .services-left,
    .services-right {
        width: 100%; /* Largeur complète */
    }

    .about-right img {
        width: 75%; /* Réduction de la taille de l'image de 50% */
        height: auto;
        border-radius: 5px; /* Arrondi des coins de l'image */
    }
     /* Section Services */
     .services {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Titre centré */
    .services-left h2 {
        text-align: center;
        margin-bottom: 15px;
        width: 100%;
    }

    /* Image centrée */
    .services-left img {
        display: block;
        margin: 0 auto 0;
        max-width: 100%;
        height: auto;
    }

    /* Liste de services en 2 colonnes de 4 éléments */
    .services-right {
        width: 100%;
        margin-top: 15px;
    }

    .services-list {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 colonnes */
        grid-gap: 10px; /* Espacement entre les éléments */
        width: 100%;
    }

    .service-item {
        font-size: 1em;
        padding: 10px;
        text-align: center;
    }

/* Section Contact */
.contact-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-left,
.contact-right {
    max-width: 100%;
    text-align: center;
}

.contact-right img {
    display: block;
    margin: 10px auto;
}
}

/* Très petits écrans (moins de 480px) */
@media (max-width: 480px) {
.logo-text {
    font-size: 1em; /* Ajustez la taille pour l’adapter aux petits écrans */
    text-align: center;
}

body {
    padding: 0 10px; /* Réduit le padding */
}

h2 {
    text-align: center; /* Centre tous les titres h2 */
}

/* Ajustement pour que le titre, l'image et la liste soient bien espacés */
.services-left h2 {
    margin-bottom: 15px;
}

/* Centrer l'image de la section services */
.services-left img {
    display: block;
    margin: 0 auto 15px; /* Centre l'image et ajoute un espacement en dessous */
    max-width: 100%; /* S'adapte à la largeur de l'écran */
    height: auto;
}

/* Disposition de la liste de services en 2 colonnes et 4 lignes */
.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 colonnes */
    grid-gap: 10px; /* Espacement entre les éléments */
    text-align: center; /* Centre le texte des éléments */
    margin-top: 15px;
}

.service-item {
    font-size: 1em; /* Ajuste la taille du texte si nécessaire */
    padding: 10px;
}   
.forwho-item img {
    width: 50%; /* Réduit la taille de l'image de 50% */
    height: auto; /* Maintient le ratio de l'image */
    margin: 0 auto; /* Centre l'image si nécessaire */
}
.about p,
.services p {
    margin: 10px 0;
}
}