/* Reset */
/* ——— Masquer la scrollbar sur toute la page ——— */
html, body {
  /* Firefox */
  scrollbar-width: none;
  /* IE, Edge */
  -ms-overflow-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}
.flip-card-inner.flipped {
  transform: rotateY(180deg);
}

/* Supprimez les bordures potentielles */
header {
  border: none;
  border-bottom: none;
  outline: none;
  box-shadow: none;
}
.hero-section {
  padding-top: 0 !important;
}
/* Vérifiez l'élément après le header */
.votre-contenu-principal {
  border-top: none;
  margin-top: 0;
}
.section-title {
  font-size: 42px;
  font-weight: 700;
  margin: 60px 0; /* Haut + bas */
  text-align: center;
  transition: all 0.3s ease;
}

.section-heading {
  margin-top: 80px;
  margin-bottom: 60px;
}

section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}
.hero-content {
  position: absolute;
  top: 45%; /* Changez ce pourcentage selon vos besoins */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

/* WebKit (Chrome, Safari, Opera) */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
body {
  background: linear-gradient(135deg, #1a1a2e, #16213e, #000);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: #f5f5f5;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #9d4edd;
}

/* Container responsive */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

/* Sections */
section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}



@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  section {
    padding: 40px 0;
  }
}
.flip-card-inner.flipped {
  transform: rotateY(180deg);
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin: 60px 0; /* Haut + bas */
  text-align: center;
  transition: all 0.3s ease;
}



@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
}

.section-title:hover {
  text-shadow: 0 0 10px #9d4edd, 0 0 20px #9d4edd;
}

/* Header Responsive */
.header-area {
  background: rgba(0, 0, 0, 0.8);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(5px);
}

.header-area .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px #9d4edd);
}

/* Navigation Desktop */
.main-nav {
  display: flex;
}

.nav {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav li a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav li a:hover,
.nav li a.active {
  color: #9d4edd;
  text-shadow: 0 0 5px #9d4edd;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  padding: 20px;
  cursor: pointer;
  z-index: 10;
}

/* ✅ Cache le bouton sur desktop */
@media (min-width: 769px) {
  .video-play-btn {
    display: none;
  }
}

.video-play-btn:focus {
  outline: none;
}



.video-play-btn:focus {
  outline: none;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  transition: 0.3s;
  z-index: 1;
  pointer-events: none; /* IMPORTANT ! */
}
/* Cache le bouton burger sur desktop */
.mobile-menu-toggle {
  display: none;
}

/* Affiche-le sur mobile */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
  }
}


/* Menu Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

/* Navigation Mobile */
@media (max-width: 768px) {
  .header-area {
    padding: 12px 0;
  }
  
  .logo img {
    height: 35px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .main-nav.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav {
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
  }

  .nav li {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav li:last-child {
    border-bottom: none;
  }

  .nav li a {
    display: block;
    padding: 10px 20px;
    font-size: 18px;
  }
}

/* Hero Section Responsive */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.hero-fullscreen {
  margin: 0;
  padding: 0;
  margin-top: -1px; 
}


.hero-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
}

.hero-text {
  max-width: 600px;
  flex: 1 1 50%;
}

@media (max-width: 968px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-image,
  .hero-text {
    flex: 1 1 100%;
  }

  .hero-image {
    order: -1;
  }
}

@media (max-width: 480px) {
  .hero-image img {
    max-width: 300px;
  }
}

/* Trusted Logos Section Responsive */
.trusted-logos-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


.trusted-logos-section .logos-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.trusted-logos-section .logos-track {
  display: flex;
  gap: 60px;
  animation: scroll-logos 80s linear infinite;
  align-items: center;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.trusted-logos-section .logos-track img {
  flex: 0 0 auto;
  height: 80px;
  filter: brightness(1.2);
  opacity: 0.85;
  transition: transform 0.3s ease, filter 0.3s ease;
}

@media (max-width: 768px) {
  .trusted-logos-section .logos-track {
    gap: 40px;
  }
  
  .trusted-logos-section .logos-track img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .trusted-logos-section .logos-track {
    gap: 30px;
  }
  
  .trusted-logos-section .logos-track img {
    height: 50px;
  }
}

/* Button Responsive */
.btn-main {
  padding: 12px 30px;
  border: 2px solid #fff;
  border-radius: 30px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-main:hover {
  background: linear-gradient(45deg, #9d4edd, #6a00f4);
  color: #fff;
  box-shadow: 0 0 10px #9d4edd, 0 0 20px #6a00f4;
}

@media (max-width: 480px) {
  .btn-main {
    padding: 10px 25px;
    font-size: 14px;
  }
}

/* Who We Are Section Responsive */
.who-horizontal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 0 5vw;
  max-width: 100%;
}

.who-card {
  flex: 1 1 300px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
}

@media (max-width: 768px) {
  .who-horizontal {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
  }
  
  .who-card {
    flex: none;
    width: 100%;
    max-width: 500px;
    padding: 25px;
  }
}

/* Services Section Responsive */
.services-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 0 5vw;
  max-width: 100%;
}

.flip-card {
  flex: 1 1 300px;
  max-width: 400px;
  height: 260px;
  background: transparent;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.flip-card-front h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.flip-card-back {
  background: rgba(0, 0, 0, 0.7);
  transform: rotateY(180deg);
}

.flip-card-back p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .services-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
  }
  
  .flip-card {
    flex: none;
    width: 100%;
    max-width: 350px;
    height: 240px;
  }
  
  .flip-card-front h3 {
    font-size: 22px;
  }
  
  .flip-card-back p {
    font-size: 15px;
  }
}
.trusted-logos-section {
  margin-top: 0;
  padding-top: 0; /* ← Assure-toi que ce n’est pas trop espacé par défaut */
}

/* Portfolio Section Responsive */
#contact {
  padding-bottom: 40px;
  overflow: hidden;
}

.portfolio-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  width: 100%;
  padding-bottom: 20px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.portfolio-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.portfolio-track {
  display: flex;
  gap: 40px;
  padding: 0 20px;
}

.portfolio-video-item {
  flex: 0 0 auto;
  width: 320px;
  height: 620px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: #000;
  transition: transform 0.3s ease;
}

.portfolio-video-item:hover {
  transform: scale(1.05);
}

.video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  transition: 0.3s;
  z-index: 1;
}

.portfolio-video-item:hover .overlay {
  opacity: 0;
}

.video-caption-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  padding: 12px 16px;
  text-align: center;
  z-index: 2;
}

.video-caption-overlay h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 5px;
}

.video-caption-overlay p {
  font-size: 14px;
  color: #ccc;
}

@media (max-width: 768px) {
  .portfolio-track {
    gap: 20px;
    padding: 0 15px;
  }
  
  .portfolio-video-item {
    width: 280px;
    height: 500px;
  }
  
  .video-caption-overlay h4 {
    font-size: 16px;
  }
  
  .video-caption-overlay p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .portfolio-video-item {
    width: 250px;
    height: 450px;
  }
}

.scroll-indicator {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #ccc;
  margin-top: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

.services-section {
  opacity: 1 !important;
  transform: none !important;
}


.portfolio-btn-wrapper {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}


/* Contact Section Responsive */
.contact-hero {
  background: linear-gradient(rgba(255, 255, 255, 0.05));
  padding: 100px 0;
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 0;
  }
}

.contact-character {
  max-width: 100%;
  width: 90%;
  height: auto;
  border-radius: 20px;
  object-fit: contain;
}

.contact-form-wrapper {
  color: #fff;
  padding: 20px;
}

.contact-form-wrapper h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  background: rgba(0, 0, 0, 0.8);
  border: none;
  padding: 15px;
  color: #fff;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 480px) {
  .contact-form-wrapper input,
  .contact-form-wrapper textarea {
    padding: 12px;
  }
}

/* Portfolio Gallery Responsive */
.portfolio-section {
  text-align: center;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  width: 350px;
  height: 250px;
  border-radius: 15px;
  cursor: pointer;
  background-color: #111;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: scale(1.02);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: rgba(0,0,0,0.7);
  margin: 0;
  font-size: 1.2rem;
  color: #fff;
}

@media (max-width: 768px) {
  .portfolio-container {
    flex-direction: column;
    align-items: center;
  }
  
  .portfolio-item {
    width: 100%;
    max-width: 350px;
    height: 200px;
  }
  
  .portfolio-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .portfolio-item {
    height: 180px;
  }
  
  .portfolio-title {
    font-size: 0.9rem;
    padding: 8px;
  }
}

/* Gallery Responsive */
.gallery-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-item {
  width: 300px;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  text-align: center;
  background: #000;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  flex-grow: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.caption {
  padding: 10px;
  color: #fff;
  background: rgba(0,0,0,0.6);
  font-weight: bold;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .gallery-item {
    width: 100%;
    max-width: 350px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    height: 250px;
  }
  
  .caption {
    font-size: 0.9rem;
    padding: 8px;
  }
}

/* Funk Gallery Responsive */
.choose-your-funk {
  padding: 100px 20px;
  background: transparent;
  text-align: center;
}

@media (max-width: 768px) {
  .choose-your-funk {
    padding: 60px 20px;
  }
}

.funk-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .funk-gallery {
    gap: 20px;
    margin-top: 30px;
  }
}

.funk-item {
  position: relative;
  width: 350px;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.funk-item:hover {
  transform: scale(1.02);
}

.funk-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.funk-item:hover .funk-img {
  transform: scale(1.08);
}

.funk-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 768px) {
  .funk-item {
    width: 100%;
    max-width: 350px;
    height: 400px;
  }
  
  .funk-overlay {
    font-size: 1.3rem;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .funk-item {
    height: 350px;
  }
  
  .funk-overlay {
    font-size: 1.1rem;
    padding: 12px;
  }
}

/* Footer Responsive */
.site-footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 60px 20px;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 20px;
  }
}

.site-footer .footer-logo img {
  height: 60px;
  margin-bottom: 15px;
}

@media (max-width: 480px) {
  .site-footer .footer-logo img {
    height: 50px;
  }
}

.footer-tagline {
  font-size: 18px;
  font-weight: 500;
  color: #f5f5f5;
  margin-bottom: 25px;
}

@media (max-width: 480px) {
  .footer-tagline {
    font-size: 16px;
  }
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
  padding: 0;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

.footer-links li a {
  color: #ccc;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #9d4edd;
}

.footer-social {
  margin-bottom: 25px;
}

.footer-social a {
  color: #ccc;
  margin: 0 12px;
  font-size: 24px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #9d4edd;
}

@media (max-width: 480px) {
  .footer-social a {
    font-size: 20px;
    margin: 0 8px;
  }
}

.footer-contact {
  margin-bottom: 30px;
  text-align: center;
  color: #ccc;
  font-size: 15px;
  line-height: 1.8;
}

.footer-contact h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

@media (max-width: 480px) {
  .footer-contact h3 {
    font-size: 18px;
  }
  
  .footer-contact {
    font-size: 14px;
  }
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #9d4edd;
}

.footer-copy {
  font-size: 14px;
  color: #777;
  margin-top: 20px;
}

@media (max-width: 480px) {
  .footer-copy {
    font-size: 12px;
  }
}

/* Masonry Grid Responsive */
.masonry {
  column-count: 1;
  column-gap: 16px;
}

@media (min-width: 576px) { 
  .masonry { 
    column-count: 2; 
  } 
}

@media (min-width: 992px) { 
  .masonry { 
    column-count: 3; 
  } 
}

.masonry-item {
  break-inside: avoid-column;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.masonry-item img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.masonry-item:hover {
  transform: scale(1.02);
}

/* Three.js Background */
#threejs-bg,
#animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 1;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

/* Logo Animation */
.logo.scrolled img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 15px #6a00f4);
}

/* Logos Grid */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
  padding-top: 30px;
}

@media (max-width: 768px) {
  .logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 15px;
  }
}

.logos-grid img {
  max-height: 80px;
  max-width: 100%;
  opacity: 0.85;
  transition: transform 0.3s ease, filter 0.3s ease;
  object-fit: contain;
}

.logos-grid img:hover {
  transform: scale(1.1);
  filter: brightness(1.4);
}

@media (max-width: 768px) {
  .logos-grid img {
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .logos-grid img {
    max-height: 50px;
  }
}

/* Category Title */
.category-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 2rem 0 1rem;
  color: #fff;
}

@media (max-width: 768px) {
  .category-title {
    font-size: 1.6rem;
    margin: 1.5rem 0 0.8rem;
  }
}

@media (max-width: 480px) {
  .category-title {
    font-size: 1.4rem;
    margin: 1.2rem 0 0.6rem;
  }
}
.hero-fullscreen {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-fullscreen .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.hero-name {
  font-size: 4rem;
  color: white;
  margin-bottom: 30px;
}

.btn-main {
  padding: 12px 30px;
  font-size: 1.2rem;
}

.hero-fullscreen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4); /* assombrit légèrement l'image pour meilleure lisibilité */
  text-align: center;
}

.hero-name {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 10px #000;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.btn-main {
  padding: 12px 30px;
  border: 2px solid #fff;
  border-radius: 30px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-main:hover {
  background: linear-gradient(45deg, #9d4edd, #6a00f4);
  box-shadow: 0 0 10px #9d4edd;
  color: #fff;
}
*:focus {
  outline: none !important;
  box-shadow: none !important;
}
.nav li a:focus {
  outline: none;
  box-shadow: none;
}
.nav li a {
  border-bottom: none !important;
}


/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  
}



@media (max-width: 480px) {
  .hero-section {
    min-height: 60vh;
    padding: 0px
/* Reset */
/* ——— Masquer la scrollbar sur toute la page ——— */
html, body {
  /* Firefox */
  scrollbar-width: none;
  /* IE, Edge */
  -ms-overflow-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}
.section-title {
  font-size: 42px;
  font-weight: 700;
  margin: 60px 0; /* Haut + bas */
  text-align: center;
  transition: all 0.3s ease;
}

.section-heading {
  margin-top: 80px;
  margin-bottom: 60px;
}

section {
  padding-top: 80px;
  padding-bottom: 80px;
}


/* WebKit (Chrome, Safari, Opera) */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
body {
  background: linear-gradient(135deg, #1a1a2e, #16213e, #000);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: #f5f5f5;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #9d4edd;
}

/* Container responsive */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

/* Sections */
section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}



@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  section {
    padding: 40px 0;
  }
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin: 60px 0; /* Haut + bas */
  text-align: center;
  transition: all 0.3s ease;
}



@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
}

.section-title:hover {
  text-shadow: 0 0 10px #9d4edd, 0 0 20px #9d4edd;
}

/* Header Responsive */
.header-area {
  background: rgba(0, 0, 0, 0.8);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(5px);
}
.hero-fullscreen {
  margin: 0;
  padding: 0;
  top: 0;
  position: relative;
  min-height: 100vh;
  padding-top: 80px; /* Pour éviter que le contenu soit caché par le header */
}
.header-area .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px #9d4edd);
}

/* Navigation Desktop */
.main-nav {
  display: flex;
}

.nav {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav li a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav li a:hover,
.nav li a.active {
  color: #9d4edd;
  border-bottom: 2px solid #9d4edd;
  padding-bottom: 5px;
}

/* Menu Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

/* Navigation Mobile */
@media (max-width: 768px) {
  .header-area {
    padding: 12px 0;
  }
  
  .logo img {
    height: 35px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .main-nav.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav {
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
  }

  .nav li {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav li:last-child {
    border-bottom: none;
  }

  .nav li a {
    display: block;
    padding: 10px 20px;
    font-size: 18px;
  }
}

/* Hero Section Responsive */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
}

.hero-text {
  max-width: 600px;
  flex: 1 1 50%;
}

@media (max-width: 968px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-image,
  .hero-text {
    flex: 1 1 100%;
  }

  .hero-image {
    order: -1;
  }
}

@media (max-width: 480px) {
  .hero-image img {
    max-width: 300px;
  }
}

/* Trusted Logos Section Responsive */
.trusted-logos-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


.trusted-logos-section .logos-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.trusted-logos-section .logos-track {
  display: flex;
  gap: 60px;
  animation: scroll-logos 80s linear infinite;
  align-items: center;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.trusted-logos-section .logos-track img {
  flex: 0 0 auto;
  height: 80px;
  filter: brightness(1.2);
  opacity: 0.85;
  transition: transform 0.3s ease, filter 0.3s ease;
}

@media (max-width: 768px) {
  .trusted-logos-section .logos-track {
    gap: 40px;
  }
  
  .trusted-logos-section .logos-track img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .trusted-logos-section .logos-track {
    gap: 30px;
  }
  
  .trusted-logos-section .logos-track img {
    height: 50px;
  }
}

/* Button Responsive */
.btn-main {
  padding: 12px 30px;
  border: 2px solid #fff;
  border-radius: 30px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-main:hover {
  background: linear-gradient(45deg, #9d4edd, #6a00f4);
  color: #fff;
  box-shadow: 0 0 10px #9d4edd, 0 0 20px #6a00f4;
}

@media (max-width: 480px) {
  .btn-main {
    padding: 10px 25px;
    font-size: 14px;
  }
}

/* Who We Are Section Responsive */
.who-horizontal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 0 5vw;
  max-width: 100%;
}

.who-card {
  flex: 1 1 300px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
}

@media (max-width: 768px) {
  .who-horizontal {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
  }
  
  .who-card {
    flex: none;
    width: 100%;
    max-width: 500px;
    padding: 25px;
  }
}

/* Services Section Responsive */
.services-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 0 5vw;
  max-width: 100%;
}

.flip-card {
  flex: 1 1 300px;
  max-width: 400px;
  height: 260px;
  background: transparent;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.flip-card-front h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.flip-card-back {
  background: rgba(0, 0, 0, 0.7);
  transform: rotateY(180deg);
}

.flip-card-back p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .services-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
  }
  
  .flip-card {
    flex: none;
    width: 100%;
    max-width: 350px;
    height: 240px;
  }
  
  .flip-card-front h3 {
    font-size: 22px;
  }
  
  .flip-card-back p {
    font-size: 15px;
  }
}
.trusted-logos-section {
  margin-top: 0;
  padding-top: 0; /* ← Assure-toi que ce n’est pas trop espacé par défaut */
}

/* Portfolio Section Responsive */
#contact {
  padding-bottom: 40px;
  overflow: hidden;
}

.portfolio-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  width: 100%;
  padding-bottom: 20px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.portfolio-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.portfolio-track {
  display: flex;
  gap: 40px;
  padding: 0 20px;
}

.portfolio-video-item {
  flex: 0 0 auto;
  width: 320px;
  height: 620px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: #000;
  transition: transform 0.3s ease;
}

.portfolio-video-item:hover {
  transform: scale(1.05);
}

.video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  transition: 0.3s;
  z-index: 1;
}

.portfolio-video-item:hover .overlay {
  opacity: 0;
}

.video-caption-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  padding: 12px 16px;
  text-align: center;
  z-index: 2;
}

.video-caption-overlay h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 5px;
}

.video-caption-overlay p {
  font-size: 14px;
  color: #ccc;
}

@media (max-width: 768px) {
  .portfolio-track {
    gap: 20px;
    padding: 0 15px;
  }
  
  .portfolio-video-item {
    width: 280px;
    height: 500px;
  }
  
  .video-caption-overlay h4 {
    font-size: 16px;
  }
  
  .video-caption-overlay p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .portfolio-video-item {
    width: 250px;
    height: 450px;
  }
}

.scroll-indicator {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #ccc;
  margin-top: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

.services-section {
  opacity: 1 !important;
  transform: none !important;
}


.portfolio-btn-wrapper {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}


/* Contact Section Responsive */
.contact-hero {
  background: linear-gradient(rgba(255, 255, 255, 0.05));
  padding: 100px 0;
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 0;
  }
}

.contact-character {
  max-width: 100%;
  width: 90%;
  height: auto;
  border-radius: 20px;
  object-fit: contain;
}

.contact-form-wrapper {
  color: #fff;
  padding: 20px;
}

.contact-form-wrapper h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  background: rgba(0, 0, 0, 0.8);
  border: none;
  padding: 15px;
  color: #fff;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 480px) {
  .contact-form-wrapper input,
  .contact-form-wrapper textarea {
    padding: 12px;
  }
}

/* Portfolio Gallery Responsive */
.portfolio-section {
  text-align: center;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  width: 350px;
  height: 250px;
  border-radius: 15px;
  cursor: pointer;
  background-color: #111;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: scale(1.02);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: rgba(0,0,0,0.7);
  margin: 0;
  font-size: 1.2rem;
  color: #fff;
}

@media (max-width: 768px) {
  .portfolio-container {
    flex-direction: column;
    align-items: center;
  }
  
  .portfolio-item {
    width: 100%;
    max-width: 350px;
    height: 200px;
  }
  
  .portfolio-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .portfolio-item {
    height: 180px;
  }
  
  .portfolio-title {
    font-size: 0.9rem;
    padding: 8px;
  }
}

/* Gallery Responsive */
.gallery-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-item {
  width: 300px;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  text-align: center;
  background: #000;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  flex-grow: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.caption {
  padding: 10px;
  color: #fff;
  background: rgba(0,0,0,0.6);
  font-weight: bold;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .gallery-item {
    width: 100%;
    max-width: 350px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    height: 250px;
  }
  
  .caption {
    font-size: 0.9rem;
    padding: 8px;
  }
}

/* Funk Gallery Responsive */
.choose-your-funk {
  padding: 100px 20px;
  background: transparent;
  text-align: center;
}

@media (max-width: 768px) {
  .choose-your-funk {
    padding: 60px 20px;
  }
}

.funk-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .funk-gallery {
    gap: 20px;
    margin-top: 30px;
  }
}

.funk-item {
  position: relative;
  width: 350px;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.funk-item:hover {
  transform: scale(1.02);
}

.funk-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.funk-item:hover .funk-img {
  transform: scale(1.08);
}

.funk-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 768px) {
  .funk-item {
    width: 100%;
    max-width: 350px;
    height: 400px;
  }
  
  .funk-overlay {
    font-size: 1.3rem;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .funk-item {
    height: 350px;
  }
  
  .funk-overlay {
    font-size: 1.1rem;
    padding: 12px;
  }
}

/* Footer Responsive */
.site-footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 60px 20px;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 20px;
  }
}

.site-footer .footer-logo img {
  height: 60px;
  margin-bottom: 15px;
}

@media (max-width: 480px) {
  .site-footer .footer-logo img {
    height: 50px;
  }
}

.footer-tagline {
  font-size: 18px;
  font-weight: 500;
  color: #f5f5f5;
  margin-bottom: 25px;
}

@media (max-width: 480px) {
  .footer-tagline {
    font-size: 16px;
  }
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
  padding: 0;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

.footer-links li a {
  color: #ccc;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #9d4edd;
}

.footer-social {
  margin-bottom: 25px;
}

.footer-social a {
  color: #ccc;
  margin: 0 12px;
  font-size: 24px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #9d4edd;
}

@media (max-width: 480px) {
  .footer-social a {
    font-size: 20px;
    margin: 0 8px;
  }
}

.footer-contact {
  margin-bottom: 30px;
  text-align: center;
  color: #ccc;
  font-size: 15px;
  line-height: 1.8;
}

.footer-contact h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

@media (max-width: 480px) {
  .footer-contact h3 {
    font-size: 18px;
  }
  
  .footer-contact {
    font-size: 14px;
  }
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #9d4edd;
}

.footer-copy {
  font-size: 14px;
  color: #777;
  margin-top: 20px;
}

@media (max-width: 480px) {
  .footer-copy {
    font-size: 12px;
  }
}

/* Masonry Grid Responsive */
.masonry {
  column-count: 1;
  column-gap: 16px;
}

@media (min-width: 576px) { 
  .masonry { 
    column-count: 2; 
  } 
}

@media (min-width: 992px) { 
  .masonry { 
    column-count: 3; 
  } 
}

.masonry-item {
  break-inside: avoid-column;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.masonry-item img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.masonry-item:hover {
  transform: scale(1.02);
}

/* Three.js Background */
#threejs-bg,
#animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 1;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

/* Logo Animation */
.logo.scrolled img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 15px #6a00f4);
}

/* Logos Grid */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
  padding-top: 30px;
}

@media (max-width: 768px) {
  .logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 15px;
  }
}

.logos-grid img {
  max-height: 80px;
  max-width: 100%;
  opacity: 0.85;
  transition: transform 0.3s ease, filter 0.3s ease;
  object-fit: contain;
}

.logos-grid img:hover {
  transform: scale(1.1);
  filter: brightness(1.4);
}

@media (max-width: 768px) {
  .logos-grid img {
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .logos-grid img {
    max-height: 50px;
  }
}

/* Category Title */
.category-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 2rem 0 1rem;
  color: #fff;
}

@media (max-width: 768px) {
  .category-title {
    font-size: 1.6rem;
    margin: 1.5rem 0 0.8rem;
  }
}

@media (max-width: 480px) {
  .category-title {
    font-size: 1.4rem;
    margin: 1.2rem 0 0.6rem;
  }
}
.hero-fullscreen {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-fullscreen .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.hero-name {
  font-size: 4rem;
  color: white;
  margin-bottom: 30px;
}

.btn-main {
  padding: 12px 30px;
  font-size: 1.2rem;
}

.hero-fullscreen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4); /* assombrit légèrement l'image pour meilleure lisibilité */
  text-align: center;
}

.hero-name {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 10px #000;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.btn-main {
  padding: 12px 30px;
  border: 2px solid #fff;
  border-radius: 30px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-main:hover {
  background: linear-gradient(45deg, #9d4edd, #6a00f4);
  box-shadow: 0 0 10px #9d4edd;
  color: #fff;
}
*:focus {
  outline: none !important;
  box-shadow: none !important;
}
.nav li a:focus {
  outline: none;
  box-shadow: none;
}
.nav li a {
  border-bottom: none !important;
}


/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  
}
/* Contrôle général des vidéos */
.portfolio-video-item video {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
}

/* Sur mobile : réduire encore plus */
@media (max-width: 768px) {
  .portfolio-video-item video {
    max-height: 200px;
  }
}

@media (max-width: 768px) {
  .portfolio-video-item video {
    max-height: 200px;
    object-fit: cover;
  }
}



  .logo img {
    max-height: 60px;
    height: auto;
    width: auto;
    display: block;
  }

  @media (max-width: 768px) {
    .logo img {
      max-height: 40px;
    }
  }



@media (max-width: 480px) {
  .hero-section {
    min-height: 60vh;
    padding: 0px

    

  