
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

   /* pour le logo cliquant */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    display: block;
}




/* ===========================
   PAGE MENTIONS LÉGALES / CGU
   =========================== */

.legal-section {
    background-color: #f6f8fb;
    padding: 100px 20px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 70px 80px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* TITRE PRINCIPAL */
.legal-container h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    color: #125a94;
    margin-bottom: 40px;
    position: relative;
}

.legal-container h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 5px;
    background-color: #125a94;
    margin-top: 15px;
    border-radius: 5px;
}

/* SOUS-TITRES */
.legal-container h3 {
    font-size: 22px;
    margin-top: 50px;
    margin-bottom: 15px;
    color: #022b4d;
}

/* TEXTE */
.legal-container p {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 15px;
}

/* MISE EN VALEUR */
.legal-container strong {
    color: #125a94;
    font-weight: 600;
}

/* LIENS (si tu en ajoutes plus tard) */
.legal-container a {
    color: #125a94;
    text-decoration: none;
    font-weight: 600;
}

.legal-container a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .legal-container {
        padding: 40px 25px;
    }

    .legal-container h2 {
        font-size: 28px;
    }

    .legal-container h3 {
        font-size: 20px;
    }

    .legal-container p {
        font-size: 15px;
    }
}
 


.legal-container {
    animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



    header.header {
        position: relative;
        z-index: 9999;
    }



* {
    font-family: 'Montserrat';
    }



body{
    margin:0 auto;
}

/*tete de page */

header.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap; /* 🔥 interdit le retour à la ligne */
}

header.header img{
    width: clamp(100px, 15vw, 150px);
}

html {
    -webkit-text-size-adjust: 100%;
}


section.top-page {
    background: url('../SMARTIMAGE/darons.png') center center no-repeat;
    background-size: cover;
    /* background-attachment: fixed;  */
    min-height: 90svh;
    padding: 25px;
}


.hautdepage{
   content: "";
background-color: #125a94;
width: 100%;
height: 90px;

}



/* page bienvenue avec le smart succes reussite maintenant*/

.landing-page {
    padding: 300px 50px;
    max-width: 600px; /* empêche l'étirement */

}

.big-title {
    color: white;
    font-size: 50px;
    font-family: 'Roboto', cursive;
    margin: 0;
}

.subtitle {
    margin-top: 10px;
    font-size: 20px;
    color: white;
    font-weight: 700;
    white-space: nowrap; /* NE PAS RETOURNER À LA LIGNE */
}



.titreaccueilpetit{
    color: wheat;
    font-size: 50px;
    font-family: 'Roboto', cursive;
    padding: 300px 50px;
}

/* MENU DEROULANT NOS PROGRAMMES */


/* MENU PRINCIPAL UNIQUEMENT */

.navbar {
    flex: 1; /* le menu prend l'espace restant */
    display: flex;
    justify-content: flex-end;
}

.navbar > ul {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 24px);
    list-style: none;      /* SUPPRIME les bullet points */
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.navbar {
    min-width: 0;
}


.navbar > ul > li > a {
    position: relative;
}

.navbar > ul > li > a {
    color: white; /* texte blanc */
    font-weight: 600;
}

.navbar > ul > li > a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.navbar > ul > li > a:hover::after {
    width: 100%;
}


/* DROPDOWN : totalement indépendant */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: block; /* PLUS DE FLEX */
    min-width: 240px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
}

/* affichage */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #125a94;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #f4f8fc;
}

@media (max-width: 768px) {

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background: white;          /* ✅ */
        box-shadow: 0 15px 40px rgba(0,0,0,0.15); /* ✅ */
        border-radius: 12px;
        padding: 10px 0;
        display: none;
        z-index: 1000;
    }

    .dropdown:focus-within .dropdown-menu {
        display: block;
    }
}

.navbar li {
    position: relative;
}

.navbar a {
    text-decoration: none;
    color: #000;
    font-size: clamp(12px, 1.2vw, 15px);
    white-space: nowrap;
}





/* LES 3 ICONES */

.services {
    display: flex;
    justify-content: space-evenly;
    margin: 50px;
}

.services-items{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.services-details{
    font-weight: 600;
    width: 200px;
    text-align: center;
}



.icono{
    font-size: 50px;
    color: #125a94;

}

/* Programmes */

.section-title{
    font-size: 50px;
    font-family: 'Roboto', cursive;
    font-weight: 400;
    position: relative;
}

.section-title::before {
    content: "";
    position: absolute;
    background-color: #125a94;
    width: 50px;
    height: 7px;
    bottom: 0;
}

.programmes {
    min-height: 500px;
    display: flex;
    flex-wrap: nowrap;          /* empêche les cartes de passer à la ligne */
    gap: 15px;                  /* espace entre les cartes */
    overflow-x: hidden;         /* cache les cartes qui débordent */
    scroll-behavior: smooth;    /* scroll fluide pour le slider */
    padding: 10px 0;

    -ms-overflow-style: none;   /* cache scrollbar sur IE & Edge */
    scrollbar-width: none;      /* cache scrollbar sur Firefox */
}



/* CSS STAGES */

/* BANNIERE STAGES INTENSIFS */
.stage-banner {
    height: 60vh;
    background: url('../SMARTIMAGE/stage.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.stage-banner::after {
    content: "";
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* overlay sombre */
}

.stage-banner .banner-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 20px;
}

.stage-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.stage-banner p {
    font-size: 20px;
}

/* PACKS / STAGES CARDS */
.packs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.pack-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    width: 320px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pack-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.pack-card h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: #125a94;
}

.pack-card ul {
    text-align: left;
    margin-bottom: 15px;
}

.pack-card li {
    margin-bottom: 8px;
}

.pack-card .note {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.btn-reserve {
    display: inline-block;
    padding: 12px 25px;
    background-color: #125a94;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-reserve:hover {
    background-color: #0d3e6b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .packs-container {
        flex-direction: column;
        align-items: center;
    }

    .stage-banner h1 {
        font-size: 32px;
    }

    .stage-banner p {
        font-size: 16px;
    }
}


/* CSS ORAUX  */

:root {
  --primary-color: #125a94;
  --secondary-color: #ebeef5;
  --accent-color: #6bbcff;
  --text-color: black;
  --font-main: 'Helvetica Neue', Arial, sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text-color);
  background-color: #fff;
}

/* Bannière */
.page-banner {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url(../SMARTIMAGE/oral.jpg) center/cover no-repeat;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-content h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 10px;
}

.banner-content p {
  color: #eaeaea;
  font-size: 1.2rem;
}

/* Intro */
.intro-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

/* Sections */
.coaching-section {
  padding: 80px 20px;
  background-color: #fff;
}

.coaching-section.alt {
  background-color: var(--secondary-color);
}

.coaching-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 60px;
}

/* Cards */
.cards-container {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.coaching-card {
  flex: 1;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.coaching-card h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.coaching-card ul {
  list-style: none;
  padding: 0;
}

.coaching-card ul li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.coaching-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* CTA */
.cta-section {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--accent-color);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s ease;
}

.cta-button:hover {
  background-color: #374eff;
}


/* CSS COURS PARTICULIER */

/* BANNIERE SOUTIEN SCOLAIRE */
.soutien-banner {
    height: 60vh;
    background: url('../SMARTIMAGE/aidedevoir.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.soutien-banner::after {
    content: "";
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.soutien-banner .banner-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 20px;
}

.soutien-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.soutien-banner p {
    font-size: 20px;
}

/* TITRES SECTIONS */
.section-subtitle {
    font-size: 32px;
    font-family: 'Roboto', cursive;
    font-weight: 400;
    color: #125a94;
    margin: 50px 0 20px 0;
    text-align: center;
}

/* CTA */
.cta-section {
    text-align: center;
    margin-top: 60px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .soutien-banner h1 {
        font-size: 32px;
    }

    .soutien-banner p {
        font-size: 16px;
    }

    .section-subtitle {
        font-size: 24px;
    }
}



/* css parcoursup */


/* PACKS CARDS */
.packs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.pack-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pack-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.pack-card h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: #125a94;
}

.pack-card .price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #125a94;
    margin-bottom: 15px;
}

.pack-card ul {
    text-align: left;
    margin-bottom: 20px;
}

.pack-card li {
    margin-bottom: 8px;
}

.btn-reserve {
    display: inline-block;
    padding: 12px 25px;
    background-color: #022b4d;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-reserve:hover {
    background-color: #0d3e6b;
}



/* Container du slider */
.slider-container {
    position: relative;
    display: flex;
    align-items: center;
}

.programmes::-webkit-scrollbar {
    display: none;
}
/* Boutons flèches */
.slider-btn {
    position: absolute;
    top: 50%; /* place les flèches au milieu verticalement */
    transform: translateY(-50%); /* centre parfaitement par rapport à la hauteur */
    background-color: #ffffffc0;
    border: none;
    padding: 5px; /* augmente la taille du bouton */
    cursor: pointer;
    font-size: 25px; /* augmente la taille de la flèche */
    z-index: 10;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background-color: #125a94;
    color: white;
}


.left-btn {
    left: 10px;
}

.right-btn {
    right: 10px;
}


.best-items{
    margin: 50px;
}


.options{
    position: relative;
    background-size: cover;
    background-position: center;
    flex: 1;
    min-width: clamp(260px, 80vw, 350px);
    height: clamp(380px, 70vh, 500px);
    transition: transform 0.3s ease;
    cursor: pointer;
    height: 500px;
    flex: 0 0 auto; /* important pour garder largeur fixe */
}

.options:hover {
    transform: scale(1.02);
}


@media (max-width: 768px) {
    .services,
    .best-items,
    footer,
    .contact-page {
        margin: 20px;
    }
}



.aideauxdevoirs{
    background-image: url(../SMARTIMAGE/aidedevoir.png);
}


.oral{
    background-image: url(../SMARTIMAGE/oral.jpg);
}


.parcoursup{
    background-image: url(../SMARTIMAGE/parcoursup.png);
}

.stages{
    background-image: url(../SMARTIMAGE/stage.png);
}

.carrecaccueil{
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #FFFFFFDF;
    padding: 5px 20px;

}

.plant-name{
    font-size: 22px;
    font-weight: 600;
    line-height: 1px;
    text-decoration: none;
    color: black;
}

.plant-price:hover {
    text-decoration: underline; /* souligne au survol */
    cursor: pointer; /* optionnel, indique que c'est cliquable */
}

.plant-price{
    color: #125a94;
    font-weight: 600;
    font-size: 14px;
    line-height: 1px;
}


/* PAGE PARCOURSUP */

/* BANNIERE PARCOURSUP */
.parcoursup-banner {
    height: 60vh;
    background: url('../SMARTIMAGE/parcoursup.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.parcoursup-banner::after {
    content: "";
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* overlay sombre */
}

.parcoursup-banner .banner-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 20px;
}

.parcoursup-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.parcoursup-banner p {
    font-size: 20px;
}

/* PAGE DE CONTACT */

.contact-page {
    padding: 60px 10%;
}

.contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.contact-infos {
    flex: 1;
}

.contact-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.contact-image img {
    width: 400px;
    height: 400px;
    border-radius: 12px;
    object-fit: cover;
}





/* Pied de page */

footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 100px;
    font-weight: 600;
    font-size: x-small;
}

footer a.cgv{
    text-decoration: none;
    color: black;
}



/* PAGE DE CONTACT */

.contact-page {
    margin: 80px;
}

.contact-page p {
    font-size: 18px;
    margin: 15px 0;
}




/* AFFICHAGE IPHONE */

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-image {
        justify-content: center;
        margin-top: 30px;
    }
     section.top-page {
        background-attachment: scroll; /* fix bug iOS */
        height: 70vh;
    }

    .landing-page {
        padding: 180px 20px;
        max-width: 100%;
    }

    .big-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 16px;
        white-space: normal; /* autorisé sur mobile */
        text-align: left;
    }
    

}

/* sur que ca saute pas sur iphone */

@media (max-width: 768px) {
    section.top-page {
        min-height: 70svh;
    }
}



/* media du parcoursup */

@media (max-width: 768px) {
    .packs-container {
        flex-direction: column;
        align-items: center;
    }

    .parcoursup-banner h1 {
        font-size: 32px;
    }

    .parcoursup-banner p {
        font-size: 16px;
    }
}



@media (max-width: 768px) {

    /* ON NE TOUCHE PAS AU MENU PRINCIPAL */
    .navbar ul {
        flex-direction: row; /* sécurité */
    }

}
/* =========================
   MENU MOBILE PREMIUM
   ========================= */

/* Burger caché par défaut */
.burger {
    display: none;
}

/* Menu mobile - TOUJOURS hors du flux */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #125a94;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.4s ease;
    z-index: 9998;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


/* VERSION MOBILE UNIQUEMENT */
@media (max-width: 768px) {

    /* Cache le menu desktop */
    .navbar {
        display: none;
    }

    /* Affiche le burger */
    .burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        cursor: pointer;
    }

    .burger span {
        height: 3px;
        width: 100%;
        background: white;
        border-radius: 2px;
        transition: 0.3s;
    }

    /* Menu mobile */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #125a94;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
        z-index: 9998;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
        text-align: center;
    }

    .mobile-menu li {
        margin: 25px 0;
    }

    .mobile-menu a {
        font-size: 22px;
        color: white;
        text-decoration: none;
        font-weight: 600;
    }

    /* Menu ouvert */
    .mobile-menu.active {
        right: 0;
    }
}






