/* Google Font CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}

/* Custom Scroll Bar CSS */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #6e93f7;
  border-radius: 12px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #4070f4;
}

/* navbar styling */
nav {
  position: fixed;
  width: 100%;
  padding: 20px 0;
  z-index: 998;
  transition: all 0.3s ease;
  font-family: 'Ubuntu', sans-serif;
}

nav.sticky {
  background: #0E2431;
  padding: 13px 0;
}

nav .navbar {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

nav .navbar .logo a {
  font-weight: 500;
  font-size: 35px;
  color: #4070f4;
}

nav.sticky .navbar .logo a {
  color: #fff;
}

nav .navbar .menu {
  display: flex;
  position: relative;
}

nav .navbar .menu li {
  list-style: none;
  margin: 0 20px;
}

.navbar .menu a {
  font-size: 18px;
  font-weight: 500;
  color: #0E2431;
  padding: 6px 0;
  transition: all 0.4s ease;
}

.navbar .menu a:hover {
  color: #4070f4;
}

nav.sticky .menu a {
  color: #FFF;
}

nav.sticky .menu a:hover {
  color: #0E2431;
}

.navbar .media-icons a {
  color: #4070f4;
  font-size: 18px;
  margin: 0 6px;
}

nav.sticky .media-icons a {
  color: #FFF;
}

/* Side Navigation Menu Button CSS */
nav .menu-btn,
.navbar .menu .cancel-btn {
  position: absolute;
  color: #fff;
  right: 30px;
  top: 20px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}

nav .menu-btn {
  color: #4070f4;
}

nav.sticky .menu-btn {
  color: #FFF;
}

.navbar .menu .menu-btn {
  color: #fff;
}

/* home section styling */
.home {
  height: 100vh;
  width: 100%;
  background: url("../Images/background.png") no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family: 'Ubuntu', sans-serif;
}

.home .home-content {
  width: 90%;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home .text-one {
  font-size: 25px;
  color: #0E2431;
}

.home .text-two {
  color: #0E2431;
  font-size: 60px;
  font-weight: 600;
  margin-left: -3px;
}

.home .text-three {
  font-size: 30px;
  margin: 5px 0;
  color: #4070f4;
}

.home .text-four {
  font-size: 15px;
  margin: 5px 0;
  color: #0E2431;
}

.home .button {
  margin: 14px 0;
}

.home .button button {
  outline: none;
  padding: 8px 16px;
  border-radius: 21px;
  font-size: 15px;
  font-weight: 400;
  background: #4070f4;
  color: #fff;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.experience{
  background-color: #00C7F2;
  width: 150px;
  margin-top: 20px;
}

.num{
  font-size: 100px;
  font-weight: bolder;
  margin-left: 10px;
  text-align: center;
}
.exp{
  background-color: #0E2431;
  width: 150px;
  padding: 10px;
  color: #fff;
  text-align: center;
}
.home .button button:hover {
  border-color: #4070f4;
  background-color: #fff;
  color: #4070f4;
}

section {
  padding-top: 40px;
}

section .content {
  width: 80%;
  margin: 40px auto;
  font-family: 'Poppins', sans-serif;
}

.about .about-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section .title {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

section .title span {
  color: #0E2431;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}

section .title span::before,
section .title span::after {
  content: '';
  position: absolute;
  height: 3px;
  width: 100%;
  background: #4070f4;
  left: 0;
  bottom: 0;
}

section .title span::after {
  bottom: -7px;
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
}

.about .about-details .left {
  width: 45%;
}

.about .left img {
  height: 400px;
  width: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.about-details .right {
  width: 55%;
}

section .topic {
  color: #0E2431;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
}

.about-details .right p {
  text-align: justify;
  color: #0E2431;
}

section .button {
  margin: 16px 0;
  border-radius: 30px;
}

section .button button {
  outline: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 25px;
  font-weight: 400;
  background: #4070f4;
  color: #fff;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s ease;
}

section .button button:hover {
  border-color: #4070f4;
  background-color: #fff;
  color: #4070f4;
}

/* My Skills CSS */
.skills {
  background: #F0F8FF;
}

.skills .content {
  padding: 40px 0;
}

.skills .skills-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skills-details .text {
  width: 50%;
}

.skills-details p {
  color: #0E2431;
  text-align: justify;
}

.skills .skills-details .experience {
  display: flex;
  align-items: center;
  margin: 0 10px;
}

.skills-details .experience .num {
  color: #0E2431;
  font-size: 80px;
}

.skills-details .experience .exp {
  color: #0E2431;
  margin-left: 20px;
  font-size: 18px;
  font-weight: 500;
  margin: 0 6px;
}

.skills-details .boxes {
  width: 45%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.skills-details .box {
  width: calc(100% / 2 - 20px);
  margin: 20px 0;
}

.skills-details .boxes .topic {
  font-size: 20px;
  color: #4070f4;
}

.skills-details .boxes .per {
  font-size: 60px;
  color: #4070f4;
}

/* My Services CSS */
.services .boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.services .boxes .box {
  margin: 20px 0;
  width: calc(100% / 3 - 20px);
  text-align: center;
  border-radius: 12px;
  padding: 30px 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
  cursor: default;
  transition: all 0.4s ease;
}

.services .boxes .box:hover {
  background: #4070f4;
  color: #fff;
}

.services .boxes .box .icon {
  height: 50px;
  width: 50px;
  background: #4070f4;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  color: #fff;
  margin: 0 auto 10px auto;
  transition: all 0.4s ease;
}

.boxes .box:hover .icon {
  background-color: #fff;
  color: #4070f4;
}

.services .boxes .box:hover .topic,
.services .boxes .box:hover p {
  color: #0E2431;
  transition: all 0.4s ease;
}

.services .boxes .box:hover .topic,
.services .boxes .box:hover p {
  color: #fff;
}

/* Contact Me CSS */
.contact {
  background: #F0F8FF;
  padding: 50px 0;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 30px;
}

.contact-info {
  flex: 1;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
  font-size: 24px;
  color: #0E2431;
  margin-bottom: 20px;
}

.contact-info p {
  color: #666;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info-item i {
  font-size: 20px;
  color: #4070f4;
  margin-right: 15px;
}

.contact-form {
  flex: 1;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #4070f4;
  box-shadow: 0 0 5px rgba(64, 112, 244, 0.3);
}

.form-group textarea {
  height: 150px;
  resize: none;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: #4070f4;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #2d5cf6;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  
  .contact-info,
  .contact-form {
    width: 100%;
  }
}

/* Footer Section Styling */
.footer {
  background: #0E2431;
  padding: 30px 0;
  font-family: 'Ubuntu', sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-section h3 {
  color: #6e93f7;
  font-size: 24px;
  margin-bottom: 20px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
}

.footer-section p {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #6e93f7;
  padding-left: 5px;
}

.social-icons a {
  color: #6e93f7;
  font-size: 20px;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
    display: flex;
    margin-top: 15px;
  }
  
  .footer-section {
    margin-bottom: 30px;
  }
}

/* Scroll TO Top Button CSS */
.scroll-button a {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: #fff;
  background: #4070f4;
  padding: 7px 12px;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.15);
  display: none;
}

/* Responsive Media Query */
@media (max-width: 1190px) {
  section .content {
    width: 85%;
  }
}

@media (max-width: 1000px) {
  .about .about-details {
    justify-content: center;
    flex-direction: column;
  }

  .about .about-details .left {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .about-details .right {
    width: 90%;
    margin: 40px 0;
  }

  .services .boxes .box {
    margin: 20px 0;
    width: calc(100% / 2 - 20px);
  }
}

@media (max-width: 900px) {
  .about .left img {
    height: 350px;
    width: 350px;
  }
}

@media (max-width: 750px) {
  nav .navbar {
    width: 90%;
  }

  nav .navbar .menu {
    position: fixed;
    left: -100%;
    top: 0;
    background: #0E2431;
    height: 100vh;
    max-width: 400px;
    width: 100%;
    padding-top: 60px;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s ease;
  }

  .navbar.active .menu {
    left: 0;
  }

  nav .navbar .menu a {
    font-size: 23px;
    display: block;
    color: #fff;
    margin: 15px 0;
  }

  nav.sticky .menu a:hover {
    color: #4070f4;
  }

  nav .navbar .media-icons {
    display: none;
  }

  nav .menu-btn,
  .navbar .menu .cancel-btn {
    display: block;
  }

  .home .text-two {
    font-size: 65px;
  }

  .home .text-three {
    font-size: 35px;
  }

  .skills .skills-details {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .skills-details .text {
    width: 100%;
    margin-bottom: 50px;
  }


  .skills-details .boxes {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .services .boxes .box {
    margin: 20px 0;
    width: 100%;
  }

  .contact .text {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .home .text-two {
    font-size: 55px;
  }

  .home .text-three {
    font-size: 33px;
  }

  .skills-details .boxes .per {
    font-size: 50px;
    color: #4070f4;
  }
}

.tit{
  font-weight: lighter;
  
}
.main-services-music {
  min-height: 100vh;
  padding: 70px 0;
  background: #f0f0f0;
}

.main-services_three {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.main-services_three h3 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #4070f4;
}

.main-services_three p {
  font-size: 1.2em;
  color: #0E2431;
  margin-bottom: 30px;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card h4 {
  color: #4070f4;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.service-card p {
  color: #0E2431;
  line-height: 1.6;
}

/* Styles responsifs */
@media (max-width: 768px) {
  .main-services_three h3 {
    font-size: 2em;
  }
  
  .service-card {
    padding: 20px;
  }
}
.service-link{
  margin-top: 45px;
  padding: 10px 40px;
  border-radius: 30px;
  width: auto;
  height: fit-content;
  background-color: #4070f4;
  color: #FFF;
}

.box:hover .service-link{
  background-color: #F0F8FF;
  color: #0E2431;
}
.box-link{
  margin-top: 20px;
  padding: auto;
  width: auto;
  height: auto;
}
/* Section Musique */
.music {
  padding: 40px 0;
  background: #f8f9fa;
}

.music-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.music-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 20px;
}
.music-collection {
  width: 100%;
  padding: 20px;
}

.music-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 15px;
}

.music-boxes .box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 15px;
  width: 100%;
}

@media (max-width: 480px) {
  .music-boxes {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 10px;
  }
  
  .music-boxes .box {
    padding: 15px;
    margin-bottom: 10px;
    width: 100%;
  }
  
  .music-boxes .box .topic {
    font-size: 16px;
  }
  
  .music-boxes .box p {
    font-size: 14px;
  }
  
  .music-boxes .box .play-btn {
    padding: 6px 16px;
    font-size: 13px;
  }
}
.music-boxes .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.music-boxes .box .topic {
  font-size: 18px;
  font-weight: 600;
  color: #2e2e2e;
  margin: 10px 0;
}

.music-boxes .box p {
  font-size: 14px;
  color: #4070f4;
  margin: 5px 0;
}

.music-boxes .box .play-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #4070f4;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  margin-top: auto;
  transition: all 0.3s ease;
}

.music-boxes .box .play-btn:hover {
  background: #fff;
  color: #4070f4;
  border: 1px solid #4070f4;
}

@media (max-width: 768px) {
  .music-boxes {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 480px) {
  .music-boxes {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 10px;
  }
  
  .music-boxes .box {
    padding: 15px;
  }
}
.music-boxes .box .icon {
  height: 40px;
  width: 40px;
  background: #4070f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.music-boxes .box .icon i {
  color: #fff;
  font-size: 16px;
}

.music-boxes .box .topic {
  font-size: 16px;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 8px;
}

.music-boxes .box p {
  font-size: 13px;
  color: #4070f4;
  margin-bottom: 8px;
}

.music-boxes .box .play-btn {
  display: inline-block;
  padding: 6px 15px;
  background: #4070f4;
  color: #fff;
  border-radius: 15px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.music-boxes .box .play-btn:hover {
  background: #fff;
  color: #4070f4;
  border: 1px solid #4070f4;
}

@media (max-width: 768px) {
  .music-boxes {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .music-boxes {
    grid-template-columns: 1fr;
  }
  
  .music-boxes .box {
    padding: 15px;
  }
}
.music-boxes .box .icon {
  height: 50px;
  width: 50px;
  background: #4070f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.music-boxes .box .icon i {
  color: #fff;
  font-size: 20px;
}

.music-boxes .box .topic {
  font-size: 18px;
  font-weight: 600;
  color: #2e2e2e;
  margin: 10px 0;
  text-align: center;
}

.music-boxes .box p {
  font-size: 14px;
  color: #4070f4;
  text-align: center;
  margin: 5px 0;
}

.music-boxes .box .play-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #4070f4;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  margin-top: 15px;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
}

.music-boxes .box .play-btn:hover {
  background: #fff;
  color: #4070f4;
  border: 1px solid #4070f4;
}

@media (max-width: 768px) {
  .music-boxes .boxes {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .music-boxes .boxes {
    grid-template-columns: 1fr;
  }
  
  .music-category h3 {
    font-size: 20px;
  }
}

.service-link:hover {
  background: #fff;
  color: #4070f4;
  border: 1px solid #4070f4;
}

.play-btn:hover {
  background: #2d5cd3;
}

/* Responsive design */
@media (max-width: 768px) {
  .music-grid {
    grid-template-columns: 1fr;
  }
  
  .music-item {
    text-align: center;
  }
}

.playlist-container {
  padding: 15px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  margin-top: 15px;
}

/* Plateformes Musicales Section */
/* Plateformes Musicales Section */
.platforms-section {
  margin: 40px 0;
  text-align: center;
}

.platform-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.platform-link {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-link i {
  font-size: 40px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.platform-link span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Couleurs spécifiques pour le texte au survol */
.platform-link:nth-child(1):hover span { color: #1DB954; } /* Spotify */
.platform-link:nth-child(2):hover span { color: #FA57C1; } /* Apple Music */
.platform-link:nth-child(3):hover span { color: #FF0000; } /* YouTube */
.platform-link:nth-child(4):hover span { color: #FF7700; } /* SoundCloud */
.platform-link:nth-child(5):hover span { color: #00C7F2; } /* Deezer */
.platform-link:nth-child(6):hover span { color: #000000; } /* TikTok */

/* Styles spécifiques pour chaque plateforme */
.platform-link:nth-child(1) i { color: #1DB954; } /* Spotify */
.platform-link:nth-child(2) i { color: #FA57C1; } /* Apple Music */
.platform-link:nth-child(3) i { color: #FF0000; } /* YouTube */
.platform-link:nth-child(4) i { color: #FF7700; } /* SoundCloud */
.platform-link:nth-child(5) i { color: #00C7F2; } /* Deezer */
.platform-link:nth-child(6) i { color: #000000; } /* TikTok */

/* Effet de survol */
.platform-link:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(100%);
  transition: all 0.3s ease;
  z-index: 1;
}

.platform-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 238, 255, 0.2);
  border-color: rgba(0, 238, 255, 0.3);
}

.platform-link:hover:before {
  transform: translateY(0);
}

.platform-link:hover i {
  transform: scale(1.1);
}

/* Animation d'entrée */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.platform-link {
  animation: fadeInScale 0.5s ease forwards;
}

.platform-link:nth-child(1) { animation-delay: 0.1s; }
.platform-link:nth-child(2) { animation-delay: 0.2s; }
.platform-link:nth-child(3) { animation-delay: 0.3s; }
.platform-link:nth-child(4) { animation-delay: 0.4s; }
.platform-link:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 768px) {
  .platform-link {
    width: 100px;
    height: 100px;
  }

  .platform-link i {
    font-size: 32px;
  }

  .platform-link span {
    font-size: 12px;
  }
}
.music-intro {
  text-align: center;
  margin-bottom: 50px;
}

.music-intro h2 {
  font-size: 35px;
  color: #4070f4;
  margin-bottom: 20px;
}

.music-intro p {
  font-size: 18px;
  color: #0E2431;
  margin-bottom: 30px;
}

.music-intro .experience {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.music-intro .experience .num {
  font-size: 40px;
  font-weight: 600;
  color: #4070f4;
}

.music-intro .experience .exp {
  font-size: 18px;
  color: #0E2431;
  text-align: left;
}
.gallery .content {
  padding: 40px 0;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.6s ease-in-out;
  transform-origin: center;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1) rotate(2deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation de rotation automatique */
@keyframes rotateGallery {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.gallery-item:hover {
  animation: rotateGallery 2s infinite linear;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 15px;
  }

  .gallery-item img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .gallery-container {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }
}

/* apropos css */

.about-page {
  padding-top: 100px;
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.biography {
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.biography h2 {
  color: #4070f4;
  margin-bottom: 20px;
  font-size: 24px;
}

.biography p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}

.highlight {
  color: #4070f4;
  font-weight: 500;
}
.highlight-2{
  font-style: italic;
  color: #4070f4;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
  background: #4070f4;
  border-radius: 10px;
  color: white;
}

.stat-item h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.gallery-section {
  padding: 20px;
}

.gallery-section h2 {
  color: #4070f4;
  margin-bottom: 20px;
  font-size: 24px;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.photo-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 250px;
}

.photo-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr;
  }
  
  .photo-gallery {
    grid-template-columns: 1fr;
  }
}