@import url("https://fonts.googleapis.com/css2?family=Gafata&family=Mukta+Vaani:wght@200;300;400;500;600;700;800&family=Oleo+Script:wght@400;700&display=swap");



/* ///////////////////////////////////////////////////// HTML BODY /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// HTML BODY /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// HTML BODY /////////////////////////////////////////////////////////////////  */



html{
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  color: #141414;
  font-family: "Mukta Vaani", sans-serif;
  margin-top: 0;
  background: linear-gradient(300deg,#e9fc87,#fffeec,#bcb4ff);
  background-size: 180% 180%;
  animation: body 6s ease infinite;
}

@keyframes body {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* ///////////////////////////////////////////////////// NavBar /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// NavBar /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// NavBar /////////////////////////////////////////////////////////////////  */


/* NAVBAR */
.navbar {
  background-color: #141414;
  font-family: "Mukta Vaani", sans-serif;
  min-height: 4rem;
  padding: 0;
  position: sticky;
  top: 0;
}

/* logo nav */
.logo-navbar {
  height: 5.5rem;
  width: auto;
}

/* centrage et gap entre les liens de la nav */
.navbar-nav {
  align-items: center;
  gap: 3rem;
}

/* style des liens */
.nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color .18s;
  text-align: center;
  color: #E9FC87;
}

/* hover liens */
.nav-link:hover{
  color: #ffbe98;
  transition: color .18s;
}



/* ///////////////////////////////////////////////////// HERO /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// HERO /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// HERO /////////////////////////////////////////////////////////////////  */

/* Design page globale */
.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*Titre bienvenue */
.hero-title {
  font-family: "Oleo Script", cursive;
  color: #141414;
  font-size: 2.8rem;
  letter-spacing: 0.03em;
}

/* Sous-titre */
.hero-subtitle {
  font-family: "Mukta Vaani", sans-serif;
  color: #141414;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Catchphrase  */
.hero-catchphrase {
  font-family: "Gafata", sans-serif;
  color: #141414;
  font-size: 1.13rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
/* Description */
.hero-desc {
  font-family: "Mukta Vaani", sans-serif;
  color: #141414;
  background: #fffeec;
  border-radius: 1.5rem;
  padding: 1rem 1.3rem;
  font-size: 1.1rem;
  box-shadow: 0 2px 16px #bcb4ff25;
  display: inline-block;
  line-height: 2.5rem;
}

/* 3 boutons */
.hero-btn {
  font-family: "Mukta Vaani", sans-serif;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.7rem 2rem;
  border: none;
  transition: box-shadow 0.2s, background 0.2s;
  box-shadow: 0 2px 8px #e9fc8722;
  border: solid 1px;
}

/* Bouton citron */
.hero-btn.lemon {
  background: #e9fc87;
  color: #141414;
}
.hero-btn.lemon:hover {
  background: #ffbe98;
  color: #141414;
  border: solid 1px;
}

/* Bouton periwinkle */
.hero-btn.periwinkle {
  background: #bcb4ff;
  color: #141414;
}
.hero-btn.periwinkle:hover {
  background: #fffeec;
  border: solid 1px;
}

/* bouton peche */
.hero-btn.peach {
  background: #ffbe98;
  color: #141414;
}
.hero-btn.peach:hover {
  background: #BCB4FF;
  border: solid 1px;
}

/* ///////////////////////////////////////////////////// PROJETS /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// PROJETS /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// PROJETS /////////////////////////////////////////////////////////////////  */

/* PROJETS */


/* Titre projets */
.projets-title{
  font-family: "Oleo Script", cursive;
  color: #141414;
  letter-spacing: 0.02em;
}
/* Carousel*/
#carouselProjets {
  max-width: 600px;
  margin: 0 auto;
}

/* Cartes projets */
.projets-card {
  border: 1.5px solid #141414;
  background-color: #bcb4ff;
  border-radius: 1.6rem;
  box-shadow: 0 3px 24px #bcb4ff22;
  min-width: 280px;
  max-width: 600px;
  height: 500px;
  margin: 0 auto;
  transition: box-shadow 0.3s, border-color 0.2s;
}

/* carousel hover */
.projets-card:hover {
  box-shadow: 0 8px 32px #bcb4ff66;
}

/* Header des cartes */
.projets-card .card-header {
  font-family: "Mukta Vaani", sans-serif;
  background: #fffeec;
  border-bottom: 1.5px solid #E9FC87;
  color: #141414;
  border-radius: 1.5rem 1.5rem 0 0;
  font-size: 1.08rem;
  letter-spacing: .02em;
  padding-top: 1.2rem;
  padding-bottom: 0.8rem;
}

/* Paragraphe projets */
.projets-desc{
  font-family: "Mukta Vaani", sans-serif;
  color: #141414;
  background: #fffeec;
  border-radius: 1.5rem;
  padding: 1rem 1.3rem;
  font-size: 1.1rem;
  box-shadow: 0 2px 16px #bcb4ff25;
  display: inline-block;
  line-height: 2.5rem;
}
/* Description des cartes */
.card-text {
  font-family: "Mukta Vaani", sans-serif;
  color: #141414;
  font-size: 1.03rem;
  margin-bottom: 0;
  min-height: 62px;
}

/* Images des cartes */
.projets img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-height: 300px;
  width: auto;
  object-fit: cover;
  border-radius: 1rem;
  background: #fffeec;
  box-shadow: 0 2px 8px #bcb4ff22;
}

/* Flèches carousel  */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 65% 65%;
  background-color: #141414;
  border-radius: 50%;
  box-shadow: 0 2px 8px #bcb4ff33;
  width: 2.5rem;
  height: 2.5rem;
}

/* espacement des flèches par rapport au cadre des cartes */
.carousel-control-prev-icon { margin-left: -1.5rem; }
.carousel-control-next-icon { margin-right: -1.5rem; }

/* cercles défilement en bas des cartes*/
.carousel-indicators [data-bs-target] {
  background-color: #E9FC87;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin: 0 6px;
  border: 1.5px solid #141414;
  opacity: 1;
  transition: box-shadow 0.13s;
}

/* carte active, changement de couleurs du cercle */
.carousel-indicators .active {
  background-color: #141414
}

/* ///////////////////////////////////////////////////// ABOUT /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// ABOUT /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// ABOUT /////////////////////////////////////////////////////////////////  */


/* Titre about */
.about-title {
  font-family: "Oleo Script", cursive;
  color: #141414;
  letter-spacing: 0.02em;
}

/* Intro à propos */
.about-intro {
  background: #fffeec;
  font-family: "Mukta Vaani", sans-serif;
  line-height: 2.5rem;
  color: #141414;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px #bcb4ff22;
  max-width: 700px;
  border-radius: 1.5rem;
}

.accordion-button {
    background: #e9fc87;
    color: #141414;
    font-family: "Mukta Vaani", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2px;
    border: solid 1px #141414;
}
.accordion-item {
    margin-bottom: 10px;
    border: none;
    overflow: hidden;
    box-shadow: 0 2px 8px #bcb4ff18;
}
.accordion-body {
    background: #fffeec;
    font-size: 1.03rem;
    color: #141414;
    border-radius: 0 0 1rem 1rem;
}

.accordion-body li {
    list-style-type: none;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.accordion-button,
.accordion-button:not(.collapsed) {
    color: #141414;
    background: #e9fc87;
    box-shadow: none;
    border: solid 1px #141414;
}

.accordion-button:focus {
    border-color: #141414;
    box-shadow: 0 0 0 0.18rem #e9fc87;
    outline: none;
}

.accordion-body .row {
    align-items: flex-start; /* Aligne les colonnes en haut de la ligne */
}

.accordion-body .col-md-4 ul,
.accordion-body .col-md-8 ul {
    margin-bottom: 0; /* S'assure qu'il n'y a pas de marge supplémentaire sous les listes dans les colonnes */
    padding-left: 0; /* Retire le padding par défaut des UL pour un meilleur contrôle */
}

/* Style pour les dates en gras */
.accordion-date {
    font-weight: 700; /* Assure que les dates sont bien en gras */
    color: #141414; /* Couleur cohérente avec le thème */
}
/* playlist spotify */
.playlist-title {
  font-family: "Oleo Script", cursive;
  letter-spacing: 0.01em;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: #e9fc87;
  font-size: 2rem;
}
.about-playlist-desc {
  font-family: "Mukta Vaani", sans-serif;
  font-size: 1rem;
  background: #fffeec;
  font-family: "Mukta Vaani", sans-serif;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px #bcb4ff22;
  max-width: 900px;
  border-radius: 1.5rem;
}

/* ///////////////////////////////////////////////////// SKILLS /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// SKILLS /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// SKILLS /////////////////////////////////////////////////////////////////  */


.skills {
  height: 90vh;
}
.skills-title,
.tools-title {
  font-family: "Oleo Script", cursive;
  color: #141414;
  letter-spacing: 0.03em;
}

.skill-progress {
  background: #fffeec;
  border-radius: 2rem;
  box-shadow: 0 1px 6px #bcb4ff13;
  height: 1.4rem;
  border: solid 1px #141414;
}
.progress-bar {
  font-family: "Mukta Vaani", sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
}
.progress-bar,
.html,
.bootstrap,
.js,
.wordpress,
.shopify {
  background: #e9fc87;
  color: #141414;
}

.tools-logos {
  gap: 2rem;
}
.tool-icon {
  height: 3.5rem;
  width: auto;
  filter: drop-shadow(0 2px 10px #bcb4ff44);
  transition: transform 0.17s;
}
.tool-icon:hover {
  transform: scale(1.13) rotate(-7deg);
  filter: drop-shadow(0 4px 22px #bcb4ff77);
}

/* ///////////////////////////////////////////////////// CONTACT /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// CONTACT /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// CONTACT /////////////////////////////////////////////////////////////////  */


.contact-title,
.calendly-title {
  font-family: "Oleo Script", cursive;
  color: #141414;
  letter-spacing: 0.03em;
}
.contact-form {
  background: #fffeec;
  border-radius: 2rem;
  box-shadow: 0 3px 18px #bcb4ff15;
  border: solid 1px #141414;
}
.contact-details {
  background: #e9fc87;
  border-radius: 2rem;
  box-shadow: 0 3px 12px #ffbe9855;
  border: solid 1px #141414;
  color: #141414;
}
.contact-link {
  display: inline-block;
  transition: transform 0.13s;
}
.contact-link:hover {
  transform: scale(1.12);
}
.contact-icon {
  width: 3rem;
  height: 3rem;
  filter: drop-shadow(0 2px 8px #bcb4ff44);
}
.contact-btn.lemon {
  background: #e9fc87;
  color: #141414;
  font-weight: 700;
  border-radius: 2rem;
  border: none;
  transition: background 0.18s;
}
.contact-btn.lemon:hover {
  background: #e9fc8722;
  color: #141414;
}


/* ///////////////////////////////////////////////////// FOOTER /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// FOOTER /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// FOOTER /////////////////////////////////////////////////////////////////  */

/* Background color footer */
.bg-night {
    background-color: #141414;
}

/* Texte footer */
.text-lemon {
    color: #e9fc87; 
}

/* Style lies footer */
.footer-link {
    color: #e9fc87;
    text-decoration: none; 
    transition: color 0.3s ease-in-out; 
}

.footer-link:hover,
.footer-link:focus {
    color: #fffeec; 
    text-decoration: underline; 
}

/* Style SVG */
.svg-icon {
    width: 2.5rem; 
    height: 2.5rem;
    fill: #e9fc87;
    transition: fill 0.3s ease-in-out;
}

.social-link:hover .svg-icon,
.social-link:focus .svg-icon {
    fill: #bcb4ff; 
    transform: translateY(-5px);
}


/* ///////////////////////////////////////////////////// RESPONSIVE /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// RESPONSIVE /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// RESPONSIVE /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// RESPONSIVE /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// RESPONSIVE /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// RESPONSIVE /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// RESPONSIVE /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// RESPONSIVE /////////////////////////////////////////////////////////////////  */
/* ///////////////////////////////////////////////////// RESPONSIVE /////////////////////////////////////////////////////////////////  */

@media (max-width: 767px) {
/* navbar */

.navbar{
  padding-top: 0;
}
  .logo-navbar {
    height: 5rem;
  }
  .navbar-collapse {
        background: #141414;
        padding-bottom: 1.3rem;
        margin-top: 0;
        box-shadow: none;
  }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(233,252,135,1)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.btn-outline-light {
  display: block !important;
  margin-top: 2rem;
}

/* hero page */
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .hero-desc {
    font-size: 0.99rem;
  }
  .avatar-hero {
    width: 120px;
  }

  /* projets */


  #carouselProjets { 
    max-width: 97vw; 
  }
  .projets-card { 
    min-width: 0; 
    max-width: 97vw; 
    max-height: 500px;
  }

  .projets img{

    height : 250px;
}

/* about */
.about-title {
  font-size: 2rem;
}
.about-intro {
  font-size: 1rem;
}

iframe{
  max-width:370px;
}

/* accordeon grid */
.accordion-body .col-sm-12 ul {
  padding-left: 15px;
  padding-right: 15px;
    }

.accordion-body li {
  font-size: 0.9rem;
}

.accordion-date {
  font-size: 0.95rem
}
/* skills */
.tool-icon {
  height: 2.3rem;
}
.tools-title {
  font-size: 1.8rem;
}

/* contact */

.contact-form,
.contact-details {
  border-radius: 1.1rem;
}
.contact-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Footer */

    .footer .row {
        flex-direction: column; /* Empile les colonnes verticalement sur mobile */
    }

    .footer .col-md-4 {
        margin-bottom: 1rem; /* Ajoute de l'espace entre les sections empilées */
    }

    .footer .col-md-4:last-child {
        margin-bottom: 0; /* Pas de marge après la dernière section */
    }

    .footer-link {
        font-size: 0.9rem; /* Réduit la taille de police des liens légaux sur mobile */
    }

    .svg-icon { 
        width: 2.2rem; 
        height: 2.2rem;
    }

    /* Centre tous les contenus de colonnes sur mobile */
    .footer .col-md-4 > * {
        justify-content: center !important;
        text-align: center !important;
    }
}


