﻿/* Reset CSS */
* {
    margin: 0;
    padding: 0;
}

/* Global settings */
body {
    font-family: 'Arial', sans-serif;
    background-color: #006d64; /* Vert canard pour le fond global */
    color: white;
}

/* Header and Navigation */
header {
    background: #004d46; /* Vert canard fonc� pour la barre */
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Menu de base */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 5% 0 11%;
    flex-wrap: wrap;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding-left: 0;
  }
  
  .nav-links li {
    display: inline;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #a8dadc;
  }
  
  .burger {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .burger {
      display: block;
    }
  
    .nav-links {
      flex-direction: column;
      width: 100%;
      display: none;
      margin-top: 1rem;
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .nav-links li {
      text-align: center;
    }
  }
  
.logo {
    font-size: 2rem;
    padding-right: 1rem;
    font-weight: bold;
}

html {
    overflow-y: scroll;
}

/* Accueil section */
#accueil:not(.nav-links):not(header):not(.navbar):not(.logo):not(.nav-links li):not(.nav-links a):not(.nav-links a:hover){
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #006d64; /* Fond vert pour la section accueil */
    padding: 4rem 2rem;
    margin: 0;
}

.accueil-container:not(.nav-links):not(header):not(.navbar):not(.logo):not(.nav-links li):not(.nav-links a):not(.nav-links a:hover) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
    background-color: #ffffff; /* Fond blanc pour la case avec l'image et le texte */
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.accueil img:not(.nav-links):not(header):not(.navbar):not(.logo):not(.nav-links li):not(.nav-links a):not(.nav-links a:hover) {
    max-width: 50%;
    height: auto;
    border-radius: 8px;
}

.accueil-text:not(.nav-links):not(header):not(.navbar):not(.logo):not(.nav-links li):not(.nav-links a):not(.nav-links a:hover) {
    max-width: 45%;
    margin-left: 2rem;
}


.bts-box {
    background: #004d46; /* Le fond est maintenant vert fonc�, comme pr�vu */
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-size: 1rem;
    color: white;
  }
  
  .read-more-btn {
    background: none;
    border: none;
    color: #007bff;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    margin-top: 10px;
  }
  
  .read-more-btn:hover {
    text-decoration: underline;
  }
  
#listesisr{
    
    background: #004d46; /* Le fond est maintenant vert fonc�, comme pr�vu */
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 40px;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-size: 1rem;
    color: white;
}

#listeslam{
    
    background: #004d46; /* Le fond est maintenant vert fonc�, comme pr�vu */
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 40px;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-size: 1rem;
    color: white;
}


  


#elementsapropos {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 40px;
    flex-wrap: wrap; /* Ajouté pour permettre le passage à la ligne */
}

/* Responsive pour petit écran */
@media (max-width: 768px) {
  #elementsapropos {
    flex-direction: column;
    align-items: center; /* Centrage horizontal des éléments */
  }

  .element {
    width: 100%;
    max-width: 400px; /* pour éviter que ça soit trop large sur mobile */
  }
}

  .imgdocglpi {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  .imgdoc {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  .imgdocsy {
    width: 100%;
    max-width: 250px;
    height: 100%;
    max-height: 353px;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .button {
    display: inline-block;
    background-color: #014d4e;
    color: white;
    padding: 12px 18px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s;
    text-align: end;
    
  }
  
  .button:hover {
    background-color: #026b6d;
  }
  
.accueil h1:not(.nav-links):not(header):not(.navbar):not(.logo):not(.nav-links li):not(.nav-links a):not(.nav-links a:hover) {
    font-size: 4rem;
    color: #004d46; /* Vert fonc� pour le texte du titre */
    margin-bottom: 1rem;
}

.accueil h2:not(.nav-links):not(header):not(.navbar):not(.logo):not(.nav-links li):not(.nav-links a):not(.nav-links a:hover) {
    font-size: 2rem;
    color: #004d46; /* Vert fonc� pour le texte du titre */
    margin-bottom: 1rem;
}
.accueil p:not(.nav-links):not(header):not(.navbar):not(.logo):not(.nav-links li):not(.nav-links a):not(.nav-links a:hover) {
    font-size: 1.2rem;
    color: #004d46; /* Vert fonc� pour le texte du paragraphe */
}

@media (max-width: 768px) {

    .accueil-text {
      max-width: 100%;
      margin-left: 0;
      margin-bottom: 1.5rem; /* un peu d’espace entre texte et image */
    }
  
    .accueil img:not(.nav-links):not(header):not(.navbar):not(.logo):not(.nav-links li):not(.nav-links a):not(.nav-links a:hover) {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
 
        .accueil-container:not(.nav-links):not(header):not(.navbar):not(.logo):not(.nav-links li):not(.nav-links a):not(.nav-links a:hover) {
            display: flex
    ;
            justify-content: space-between;
            align-items: flex-start;
            /* max-width: 1200px; */
            /* width: 100%; */
            flex-direction: column;
            padding: 1rem;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
        }
        .accueil h2:not(.nav-links):not(header):not(.navbar):not(.logo):not(.nav-links li):not(.nav-links a):not(.nav-links a:hover) {
            font-size: 2rem;
            color: #004d46;
            margin-bottom: 1rem;
        }
        .accueil-text:not(.nav-links):not(header):not(.navbar):not(.logo):not(.nav-links li):not(.nav-links a):not(.nav-links a:hover) {
            max-width: 90%;
            margin-left: 0.3rem;
        }
        #accueil:not(.nav-links):not(header):not(.navbar):not(.logo):not(.nav-links li):not(.nav-links a):not(.nav-links a:hover) {
            display: flex
        ;
            justify-content: center;
            align-items: center;
            background-color: #006d64;
            padding: 0 1rem 5rem;
            margin: 0;
  }
}

/* BTS SIO Header */
.bts-header {
    text-align: center;
    margin: 50px 0;
}

.bts-image-container {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
}

.bts-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bts-header h1 {
    margin-top: 20px;
    font-size: 2.5rem;
    color: #ffffff; /* Blanc pour le titre */
}

/* BTS Content Section */
.bts-content {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin: 0 50px;
    color: white; /* Blanc pour le texte */
}

.bts-content .left, .bts-content .right {
    width: 48%;
}

.bts-content h2 {
    font-size: 1.8rem;
    color: #34b88f; /* Couleur verte */
    margin-bottom: 15px;
}

.bts-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* BTS M�tiers Section */
.metiers {
    text-align: center;
    margin-top: 50px;
}

.metiers h2 {
    font-size: 2rem;
    color: #ffffff; /* Blanc pour le titre */
    margin-bottom: 30px;
}

.metiers-liste {
    display: flex;
    justify-content: space-between;
    margin: 0 50px;
}

.metiers-liste .left, .metiers-liste .right {
    width: 48%;
    color: #ffffff; /* Blanc pour le texte */
}

.metiers-liste ul {
    list-style-type: none;
    padding: 0;
}

.metiers-liste ul li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    position: relative;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background: #004d46; /* Le fond est maintenant vert fonc�, comme pr�vu */
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #a8dadc;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: white;
}

/* Veille Technologique Section - Sp�cifique � veille.html */
#veille {
    padding: 2rem;
    color: #333; /* Texte fonc� pour un bon contraste */
    
}

#veille h1 {
    font-size: 2.7rem;
    color: #ffffff; /* Couleur pour le titre sp�cifique � la veille */
    margin-bottom: 1rem;
text-align: center ;
}

#veille p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

/* Section Veille Content - Mise en page de contenu sp�cifique � la veille */
.veille-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 0 50px;
    padding-bottom: 50px; /* Ajout du padding en bas pour �viter que le footer d�borde */
}

.veille-content .actualite,
.veille-content .technologies,
.veille-content .impact {
    background-color: #ffffff; /* Fond blanc pour les sections internes */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.8); /* Ombre douce pour la lisibilit� */
    margin-bottom: 20px; /* Optionnel : ajoute un peu d'espace entre les cases */
}

.veille-content h2 {
    font-size: 2.2rem;
    color: #006d64; /* Couleur des sous-titres sp�cifique � la veille */
    margin-bottom: 1.5rem;
text-align: center ;
}

.veille-content p,
.veille-content ul {
    font-size: 1.3rem;
    color: #333;
}

.veille-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.veille-content li {
    margin-bottom: 10px;
}
/* Style de la section des liens */

/* Bloc contenant les liens RSS : apparence similaire aux autres cartes */
.rss-feed {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.8); /* même style que les autres blocs */
    margin-bottom: 20px;
}

/* Phrase d'information (orange, italique, plus petite et moins large) */
.rss-info {
    font-size: 0.9rem !important;
    color: #f76c12 !important;
    font-style: italic !important;
    text-align: center !important;
    max-width: 70% !important;
    margin: 20px auto 0 auto !important;
}
.rss-feed p {
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.rss-feed ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    list-style-type: none;
    padding-left: 0;
}




.rss-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.1rem;
    text-align: center;
    background-color: #006d64; /* Couleur principale de l'interface */
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
    width: 250px; /* Limiter la largeur des boutons */
}

.rss-btn:hover {
    background-color: #28a47e; /* Couleur au survol */
    transform: scale(1.05); /* Effet de zoom au survol */
}

.rss-btn:active {
    background-color: #006d64; /* Couleur au clic */
    transform: scale(0.98); /* Réduction au clic */
}

/* Style de la phrase d'information en bas */







.texte-1 {
    background-color: #004d46;
    color: white;
    font-size: 1.3rem;
    margin: 0 auto 2rem auto;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 1300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}


.texte-2{
color : black ;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: center !important;


}



/* Footer Sp�cifique � la page Veille */
footer {
    text-align: center;
    padding: 1rem;
    background: #004d46;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #a8dadc;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: white;
}



        /* Section principale de � Propos */
        .a-propos {
            padding: 7rem 2rem;
            background-color: #006d64; /* Vert canard pour le fond */
            color: white;
            text-align: center;
        }

        .a-propos h1 {
            font-size: 3rem;
            color: #ffffff;
            margin-bottom: 2rem;
            font-weight: bold;
        }

        .bio {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.2rem;
            line-height: 1.8;
            text-align: justify;
            background-color: #004d46;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
        }

        .bio p {
            margin-bottom: 1rem;
        }

        .button {
            display: inline-block;
            margin-top: 2rem;
            background-color: #004d46;
            color: white;
            text-decoration: none;
            padding: 0.8rem 2rem;
            border-radius: 8px;
            font-size: 1.2rem;
            transition: background-color 0.3s ease;
        }

        .button:hover {
            background-color: #34b88f;
        }

        /* Formulaire de contact */
        .contact-form {
            margin-top: 3rem;
            background-color: #004d46;
            padding: 2rem;
            padding-right: 3.5rem; 

            border-radius: 12px;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
            max-width: 800px;
            margin: 3rem auto 0 auto;
        }

        .contact-form label {
            display: block;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-top: 0.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
        }

        .contact-form button {
            display: inline-block;
            margin-top: 1rem;
            background-color: #34b88f;
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 8px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .contact-form button:hover {
            background-color: #28a47e;
        }

        .linkedin-logo {
            text-align: center;
            margin-top: 2rem;
        }
        
        
        .linkedin-logo img {
            width: 50px;
            height: 50px;
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        
        .linkedin-logo img:hover {
            transform: scale(1.1);
        }
        
    



/* Responsive Design sp�cifique � veille */
@media (max-width: 768px) {
    .veille-content {
        grid-template-columns: 1fr;
        margin: 0 20px;
    }

    .bts-content .left, .bts-content .right {
        width: 100%;
    }

    .metiers-liste {
        flex-direction: column;
    }

    .metiers-liste .left, .metiers-liste .right {
        width: 100%;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }


}





.projetsentreprise{
    display: flex;
    flex: content;
}






.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
    margin: 20px 0;
    border-radius: 15px;
  }
  
  .carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
  }
  
  .carousel-track img {
    height: 80px;
    margin: 0 25px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  
  .carousel-track img:hover {
    transform: scale(1.1);
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .carousel-track img {
      height: 60px;
      margin: 0 15px;
    }
  }
  














/* Flux RSS */
.rss-container {
    width: 100%;
    max-width: 900px; /* Largeur maximale */
    margin: 20px auto; /* Centrer et espacer */
    padding: 20px;
    background-color: #ffffff; /* Fond blanc */
    border-radius: 10px; /* Bords arrondis */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Ombre légère */
    font-family: 'Arial', sans-serif;
}

.rss-container ul {
    list-style-type: none; /* Supprimer les puces */
    padding: 0;
}

.rss-container li {
    margin-bottom: 20px; /* Espacer les articles */
    padding: 10px;
    border-radius: 8px;
    background-color: #f9f9f9; /* Fond légèrement gris */
    transition: background-color 0.3s ease; /* Transition pour le survol */
}

.rss-container li:hover {
    background-color: #f1f1f1; /* Changer de couleur au survol */
}

.rss-container a {
    font-size: 18px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    display: block;
    margin-bottom: 10px; /* Espacer le titre du lien */
}

.rss-container a:hover {
    color: #34b88f; /* Couleur verte pour le survol */
}

.rss-container p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px; /* Espacer la description */
}

.rss-container img {
    max-width: 100px;
    height: auto;
    margin-right: 10px;
    float: left; /* Mettre l'image à gauche */
    border-radius: 5px; /* Bords arrondis pour l'image */
}

.rss-container li h3 {
    font-size: 20px;
    font-weight: bold;
    color: #444;
    margin-bottom: 5px;
}

.rss-container li p {
    font-size: 14px;
    color: #666;
}


.p22 {
    width: 80%; /* Ou une largeur fixe, par exemple 600px */
    margin: 0 auto; /* Centrer horizontalement */
    text-align: center; /* Centrer le texte à l'intérieur de l'élément */
    color: sandybrown; /* Optionnel, définir la couleur du texte */
}


.h11 {
    width: 80%; /* Ou une largeur fixe, par exemple 600px */
    margin: 0 auto; /* Centrer horizontalement */
    text-align: center; /* Centrer le texte à l'intérieur de l'élément */
}















/* ecole entreprise */

/* === École & Entreprise === */
#ecole-entreprise {
    background-color: #006d64;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

#ecole-entreprise h1 {
    font-size: 54px;
    margin-bottom: 50px;
}

.ee-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.card {
    background-color: #ffffff;
    color: #006d64;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    max-width: 520px;
    text-align: left;
    line-height: 1.7;
    font-size: 17px;
}

.card h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.card ul {
    list-style: disc inside;
    margin-top: 10px;
    padding-left: 10px;
}

.card p {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .ee-container {
        flex-direction: column;
        align-items: center;
    }

    #ecole-entreprise h1 {
        font-size: 38px;
    }
}




.logo-godf {
    display: block;
    margin: 20px auto 0 auto;
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-godf:hover {
    transform: scale(1.05);
}



.logo-imie {
    display: block;
    margin: 20px auto 0 auto;
    width: 110px;
    height: 110px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-imie:hover {
    transform: scale(1.05);
}



/* ecole entreprise */


/* Veille sql */

.form-sql {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f3f3f3;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-sql input[type="text"] {
    width: 100%;
    padding: 10px 0;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.form-sql button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.form-sql button:hover {
    background-color: #0056b3;
}

.result-box {
    max-width: 400px;
    margin: 15px auto;
    padding: 10px;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
}


/* Veille sql */






.retour {
    display: inline-block;
    padding: 10px 20px;
    margin: 40px auto 20px;
    background-color: #34b88f;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.retour:hover {
    background-color: #2a8b6f;
}







.projects-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.project-card {
    background-color: #ffffff;
    color: #333;
    width: 500px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-card h2 {
    color: #006d64;
    font-size: 1.5rem;
}

.project-description {
    margin-top: 10px;
    text-align: justify;
}

.project-image {
    text-align: center;
    margin: 10px 0;
}

.icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.read-more-btn {
    margin-top: 15px;
    align-self: flex-start;
    background-color: #34b88f;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #2a8b6f;
}

.more-text {
    display: none;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #555;
}






