/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css');
/* --- FONTS PERSONNALISÉES --- */
@font-face {
  font-family: 'MoonWalk';
  src: url('../fonts/MoonWalk.woff2') format('woff2'),
       url('../fonts/MoonWalk.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ClashDisplay';
  src: url('..//ClashDisplay-ExtraLight.woff2') format('woff2'),
       url('../fonts/ClashDisplay-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ClashDisplay';
  src: url('../fonts/ClashDisplay-Light.woff2') format('woff2'),
       url('../fonts/ClashDisplay-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

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

/* --- RESET GÉNÉRAL --- */


* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html, body {
  overflow-x: clip;
  background-color: #070322;
  scroll-behavior: smooth;
}

/* --- TYPOGRAHIE PAR DÉFAUT --- */
p, li, ul {
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.5px;
}

strong, b  {
    font-weight: 600 !important;
    
}

/* --- STRUCTURE --- */
.hero-home {
  font-family: 'ClashDisplay-Medium', sans-serif;
  font-size: 22px;
  line-height: 1.6;
  color: white;
  text-align: center;
  max-width: 700px;
  padding: 0 12px;
}

.heading-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-overtitle {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #ffffff1a;
  font-size: 20px;
  border-radius: 99px;
  background: conic-gradient(from 195deg at 50% 50%, rgba(0,0,0,0) 48%, rgba(73,53,130,0.3) 78%, rgba(71,47,140,0.12) 100%);
  max-width: fit-content;
  margin: 0;
}

.heading-centered .section-overtitle {
  margin: 0 auto;
  color: white;
}

.heading-left .section-overtitle {
  margin-left: 0;
  margin-right: 0;
}

.section-title {
  font-family: 'ClashDisplay-SemiBold', sans-serif;
  font-size: 58px;
  line-height: 1.1;
  background: linear-gradient(180deg, rgba(255,255,255,1) 90%, rgba(7,3,34,1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
 /* margin: 0 auto;Fer gauche*/
}

.section-title br {
  display: none;
}

.section-highlight,
.section-text-light {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.1;
}

.section-text-light {
  font-family: 'ClashDisplay-Medium', sans-serif;
  font-size: 28px;
  color: black;
  margin-top: 6px;
}

.heading-left {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0;
}

.about-text {
  font-family: 'ClashDisplay-Regular', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: white;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/*Espacement
section {margin-top: 158px}*/

/* --- RESPONSIVE --- */
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 36px;
    line-height: 1.2;
  }
  .section-text-light {
    font-size: 20px;
  }
  .section-overtitle {
    font-size: 16px;
    padding: 8px 16px;
  }
  .heading-left {
    max-width: 100%;
    padding: 0 16px;
  }
  .about-text {
    font-size: 15px;
    gap: 14px;
  }
}

@media screen and (max-width: 480px) {
  .section-title {
    font-size: 28px;
    line-height: 1.3;
  }
  .section-text-light {
    font-size: 18px;
  }
  .section-overtitle {
    font-size: 14px;
    padding: 6px 12px;
  }
  .about-text {
    font-size: 14px;
    gap: 12px;
  }
}



#portfolio-image {
  opacity: 1;
  transition: opacity 0.4s ease;
}

#portfolio-image.fade-out {
  opacity: 0;
}

/* --- INDICATEUR SCROLL --- */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  z-index: 10;
  animation: bounce-scroll 1.5s infinite;
  opacity: 0.8;
}

.scroll-arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  animation: bounce 1.6s infinite ease-in-out;
}

@keyframes bounce-scroll {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 12px);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@media screen and (max-width: 935px) {
  .scroll-indicator {
    display: none !important;
  }
}

/* --- LIENS --- */
a {
  text-decoration: none;
}

.white-link {
  font-family: "Raleway-Black", sans-serif;
  color: #ffffff;
  text-decoration: underline;
}

.white-link:hover {
  color: #cccccc;
  text-decoration: underline;
}

/* --- CTA PARTAGE AUDIO --- */
.cta-partage {
  margin-top: 20px;
  text-align: center;
  font-size: 1rem;
}

.share-buttons a {
  text-decoration: none;
  color: #ffffff;
  background-color: #0077b5;
  padding: 8px 15px;
  border-radius: 25px;
  margin: 0 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.share-buttons a:hover {
  background-color: #005582;
}

/* --- SPÉCIAL FONT LOGO --- */
.logo-word {
  font-family: 'MoonWalk', sans-serif;
  font-size: inherit;
  font-weight: normal;
  letter-spacing: 0;
  display: inline;
}




