body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(120deg, #23272e 0%, #181a1f 100%);
}


/************************************ NAVBAR ************************************/
.glass-navbar {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Texte et icônes auto-inversés */
.glass-navbar .nav-link,
.glass-navbar .navbar-brand,
.glass-navbar img {
    mix-blend-mode: difference;
}


/* Liens */
.navbar-dark .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.navbar-dark .nav-link:hover {
  color: #fff;
}



/* Icône active pour la page Download */
.navbar .nav-link.iconActive img {
    content: url('../asset/icon/iconDownloadYellow.svg');
}



/************************************ HERO ************************************/
.hero {
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
              url(../asset/photo/background.png);
  background-size: cover;
  background-position: center;
  height: 100vh;
}

/* Bouton CTA avec icône */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  background-color: #C6AE4B;
  border: 1px solid #b8a146;
  font-size: 1rem;
}

/* Hover */
.btn-cta:hover {
  background-color: #b8a146;
  border-color: #b8a146;
  color: #fff;
}

.btn-cta:hover img {
  filter: invert(1); /* rend l'icône noire */
}

/* Active + Focus + Click */
.btn-cta:active,
.btn-cta:focus,
.btn-cta:active:focus {
  background-color: #b8a146 !important;
  border-color: #b8a146 !important;
  box-shadow: none !important; /* enlève l'effet Bootstrap */
}

/* Icône chevron */
.btn-cta img {
  width: 12px;
  height: 12px;
  /* filter: invert(1); */
}






/************************************ FOOTER ************************************/
.footer-section {
  background-color: #2b2b2b; /* fond sombre */
  color: #fff;
}

.footer-section small,
.footer-section strong,
.footer-section li {
  color: #fff;
}

/* Liens */
.footer-section ul li {
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-section ul li:hover {
  opacity: 1;
}

/* Logo */
.footer-section img {
  max-width: 140px;
}

/* Social icons */
.social-icons img {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.social-icons .github,
.social-icons .tiktok {
      filter: invert(1); 
}

.social-icons img:hover {
  opacity: 0.7;
}

/* Footer Quick Links */
.footer-section .col-md-4 strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #C6AE4B; /* couleur dorée pour le titre */
    margin-bottom: 0.8rem;
}

.footer-section .col-md-4 ul {
    list-style: none; /* supprime les bullets */
    padding: 0;
    margin: 0;
}

.footer-section .col-md-4 ul li {
    margin-bottom: 0.5rem;
}

.footer-section .col-md-4 ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
    position: relative;
}

/* Hover effect */
.footer-section .col-md-4 ul li a:hover {
    color: #C6AE4B; /* couleur au hover */
    padding-left: 5px; /* léger mouvement */
}

/* Retirer complètement les bullets */
/* La pseudo-classe ::before est supprimée */
