html, body {
  margin: 0;
  padding: 0;
}

.bg-dark-armadadev {
  background: linear-gradient(145deg, #0b0f2b, #1e1e3f);
  color: #d1d1e9; /* Texte clair */
}

.container {
  background-color: transparent;
}
body {
  background: linear-gradient(145deg, #0b0f2b, #1e1e3f);
  color: #fff;
  font-family: 'Motter Tektura', sans-serif;
}

section {
  padding: 60px 0;
}


@font-face {
  font-family: 'Motter Tektura';
  src: url('/assets/fonts/Motter-Tektura.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

.svg-brand {
  width: 220px; /* Ajuste selon tes besoins */
  height: auto;
}

.svg-brand text {
  font-family: 'Motter Tektura', sans-serif;
  font-size: 70px;
}

.svg-brand text:nth-of-type(2) { /* Cible uniquement le texte animé */
  fill: none;
  stroke: url(#gradient);
  stroke-width: 2px;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawText 3s ease forwards;
  filter: drop-shadow(0 0 5px rgba(255,0,200,0.8));
}

@keyframes drawText {
  to {
    stroke-dashoffset: 0;
  }
}

.footer-link {
  color: #d1d1e9;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--color-accent);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  transition: background-color 0.3s;
}

.social-icon.linkedin { background-color: #0A66C2; }
.social-icon.instagram { background-color: #E1306C; }
.social-icon.facebook { background-color: #3b5998; }
.social-icon.tiktok { background-color: #010101; }
.social-icon.twitter { background-color: #1DA1F2; }
.social-icon.youtube { background-color: #FF0000; }

.social-icon:hover {
  filter: brightness(1.2);
}

/* Couleurs ARMADADEV M-Chips */
:root {
  --color-primary: #00AFFF;
  --color-secondary: #FF00C8;
  --color-accent: #00FFC3;
  --color-bg: #0b0f2b;
}

/* Bouton dégradé 
.btn-gradient {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  transition: all 0.4s ease;
}
.btn-gradient:hover {
  filter: brightness(1.2);
}*/

.btn-gradient {
  background: linear-gradient(135deg, #a44fff, #44c4fc);
  color: white;
  padding: 12px 30px;
  border: none !important;
  border-radius: 50px;
  transition: all 0.4s ease;
}
.btn-gradient:hover {
  opacity: 0.85;
  color: white;
}

/* Empêche le contour blanc sur hover/focus */
.dropdown-item:focus,
.dropdown-item:hover {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background-color: rgba(255, 255, 255, 0.1); /* Option : léger fond transparent pour l'effet */
  color: #fff !important; /* Blanc ou remplace par var(--color-accent) si tu préfères */
}

/* Hero Section Parallax 
.hero-section {
  background: linear-gradient(135deg, #0b0f2b, #1e1e3f, #FF00C8, #00FFC3);
  position: relative;
  overflow: hidden;
}*/

.hero-content {
  /*min-height: 70vh;  Réduit la hauteur 
  padding-top: 80px;  Un léger padding haut pour respirer 
  padding-bottom: 50px;*/
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-content {
    min-height: 60vh; /* encore plus réduit sur mobile */
    padding-top: 60px;
    padding-bottom: 30px;
  }
}

.parallax-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.parallax-bg {
  background: url('/assets/css/assets/img/circuit-bg.svg') no-repeat
  background-size: cover;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}

.hero-logo {
  width: 200px;
  transition: width 0.3s ease;
}

@media (min-width: 576px) {
  .hero-logo {
    width: 220px;
  }
}

@media (min-width: 992px) {
  .hero-logo {
    width: 440px;
  }
}


@keyframes logo-fade {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

.hero-slogan {
  font-size: 3rem;
  line-height: 1.3;
}

.highlight-text {
  background: linear-gradient(90deg, #00AFFF, #FF00C8, #00FFC3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /*-webkit-text-stroke: 1px black;  Contour noir ps: je suis perdu lol*/
}

/* Expertise & Why */
.icon-service, .icon-why {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.photo-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.photo-card img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.expertise-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 40px 40px 0 0;
}

.icon-why {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.bg-gradient-dark {
  background: linear-gradient(145deg, #0b0f2b, #1e1e3f);
}

.gradient-bg {
  background: linear-gradient(135deg, #a44fff, #44c4fc);
  color: #fff;
  padding: 12px;
  border-radius: 50%;
}

.gradient-text {
  background: linear-gradient(135deg, #a44fff, #44c4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Timeline Styling */
.timeline {
  position: relative;
  margin-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #44c4fc;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  padding-left: 80px;
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #a44fff, #44c4fc);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  z-index: 1;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 10px;
}

/* Google Reviews */
.google-reviews {
  background-color: #0b0f2b;
  color: white;
  padding: 30px;
  border-radius: 10px;
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.review-item {
  background-color: #1e1e3f;
  padding: 15px;
  border-radius: 8px;
  width: calc(50% - 10px);
}

.review-item strong {
  display: block;
  margin-bottom: 5px;
}

@media(max-width:768px){
  .review-item { width: 100%; }
}

.google-reviews-section {
  background-color: #0b0f2b;
}

.gradient-text {
  background: linear-gradient(90deg, #FF00C8, #44c4fc, #00FFC3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.review-card {
  background-color: #1e1e3f;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(68, 196, 252, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(68, 196, 252, 0.5);
}

/*
.btn-gradient {
  background: linear-gradient(90deg, #FF00C8, #44c4fc, #00FFC3);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
}

.btn-gradient:hover {
  opacity: 0.8;
}

.navbar */.btn-gradient {
  background: linear-gradient(135deg, #FF00C8, #44c4fc);
  color: white !important;
  border-radius: 50px;
  transition: all 0.3s ease;
}

/*.navbar */.btn-gradient:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 10px rgba(255,0,200,0.6);
}


.carousel-item img {
  max-height: 400px;
  object-fit: cover;
  filter: drop-shadow(0 0 8px rgba(255, 0, 200, 0.3));
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
}

.carousel-indicators button {
  background-color: #FF00C8;
}

.info-banner {
  background: linear-gradient(90deg, #FF00C8, #44c4fc);
  white-space: nowrap;
  font-weight: bold;
  font-size: 1rem;
}

.banner-text {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 15s linear infinite;
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

#cookie-banner {
  transition: opacity 0.5s ease, visibility 0.5s;
}

#cookie-banner.hide-banner {
  opacity: 0;
  visibility: hidden;
}

