:root {
  --bg: #0f0f14;
  --bg-soft: #181820;
  --bg-card: #1f1f2a;

  --text: #ffffff;
  --text-soft: #d2d5e2;

  --accent: #e352c6;
  --accent-secondary: #7c5cff;

  --border: rgba(255, 255, 255, 0.08);
  --shadow: rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.header {
  background: rgba(15, 15, 20, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

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

/* LOGO */
.logo {
  font-family: "Tilt Neon", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd6f7;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.7),
    0 0 6px rgba(227, 82, 198, 0.35);
}

/* NAV */
.nav {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  transition: 0.3s;
}

.nav a:hover {
  color: #ffd6f7;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.6),
    0 0 6px rgba(227, 82, 198, 0.3);
}

/* HERO */
.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background: url("images/fond.png") center/cover no-repeat;
  background-position: center 30%;
  overflow: hidden;
}

.hero-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* TITRE HERO */
.hero-title {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 1000px);
  text-align: center;

  font-family: "Tilt Neon", sans-serif;
  font-size: 3.6rem;
  line-height: 1.15;

  background: linear-gradient(90deg, #ffffff, #ff8ae2, #8a7dff, #ffffff);
  background-size: 200% auto;

 background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

  text-shadow:
    0 0 3px rgba(255, 255, 255, 0.6),
    0 0 8px rgba(227, 82, 198, 0.25);

  animation: gradientMove 10s linear infinite;
}

/* TEXTE HERO */
.hero-text {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 900px);
  text-align: center;

  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;

  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.95),
    0 0 6px rgba(255, 255, 255, 0.55),
    0 0 12px rgba(227, 82, 198, 0.35);
}

/* ANIMATION */
@keyframes gradientMove {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* TITRES */
h1, h2, h3 {
  font-family: "Tilt Neon", sans-serif;
}

/* SECTIONS */
.section {
  padding: 70px 0;
}

.section h1,
.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffd6f7;
  text-shadow:
    0 0 3px rgba(255, 255, 255, 0.75),
    0 0 8px rgba(227, 82, 198, 0.4);
}

.dark {
  background: var(--bg-soft);
  box-shadow: inset 0 0 40px rgba(124, 92, 255, 0.08);
}

/* CARDS */
.cards {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.card {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 12px;
  flex: 1 1 300px;
  border: 1px solid var(--border);
  transition: 0.3s;
  box-shadow: 0 8px 24px var(--shadow);
}

.card h3 {
  margin-bottom: 12px;
  color: #ffe8fb;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.55),
    0 0 4px rgba(227, 82, 198, 0.2);
}



/* ICONES */
.title-with-icon {
  display: flex;
  align-items: center;
  gap: 15px;
}

.title-with-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 10px;

  filter:
    drop-shadow(0 0 4px rgba(124, 92, 255, 0.35))
    drop-shadow(0 0 8px rgba(227, 82, 198, 0.18));
}

/* TEXTES */
.section p {
  color: var(--text-soft);
  max-width: 800px;
}

/* LIENS */
a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  color: #ffffff;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.55),
    0 0 6px rgba(227, 82, 198, 0.3);
}

/* BOUTON HERO */
.cta-btn {
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%);
  display: inline-block;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #ff8ae2, #8a7dff);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    0 0 10px rgba(227, 82, 198, 0.35),
    0 0 20px rgba(124, 92, 255, 0.2);
  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateX(-50%) translateY(-2px);
  color: #ffffff;
  box-shadow:
    0 0 14px rgba(227, 82, 198, 0.5),
    0 0 26px rgba(124, 92, 255, 0.3);
}

/* FORMULAIRE DEVIS */
.devis-form {
  max-width: 720px;
  margin: 30px auto 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  font: inherit;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.checkbox-group {
  margin-top: 10px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  font-weight: 400;
}

.checkbox-label input {
  width: auto;
  margin-top: 4px;
}

.form-note {
  margin-bottom: 20px;
  font-size: 0.95rem;
  opacity: 0.85;
  text-align: center;
}

/* BOUTON DU FORMULAIRE */
.devis-form .cta-btn {
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  padding: 14px 32px;
}

.devis-form .cta-btn:hover {
  transform: translateY(-2px);
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px 20px;
  background: #0c0c12;
  border-top: 1px solid rgba(124, 92, 255, 0.2);
  color: var(--text-soft);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 10px 0;
}

.footer-socials img {
  width: 20px;
  height: 20px;
  filter: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    height: 75vh;
    background-position: center 35%;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-text {
    font-size: 1.1rem;
  }

  .header .container {
    flex-direction: column;
    gap: 15px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .devis-form .cta-btn {
    width: 100%;
  }
}
.seo-intro {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #ffffff;
}

.seo-conclusion {
  margin-top: 20px;
}

.cta-seo {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  padding: 12px 26px;
  border-radius: 10px;
  background: linear-gradient(90deg, #ff8ae2, #8a7dff);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow:
    0 0 10px rgba(227, 82, 198, 0.35),
    0 0 20px rgba(124, 92, 255, 0.2);
  transition: 0.3s;
}

.cta-seo:hover {
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow:
    0 0 14px rgba(227, 82, 198, 0.5),
    0 0 26px rgba(124, 92, 255, 0.3);
}
/* A PROPOS */
#about .container {
  max-width: 900px;
}

#about p {
  margin-bottom: 16px;
}

.about-list {
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.about-list li {
  margin-bottom: 10px;
  color: var(--text-soft);
  font-weight: 500;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
   width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 2px;
  background: rgba(255,255,255,0.05);
}

  .footer-fun {
  margin-top: 20px;
  text-align: center;
}

.footer-fun p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 10px;
}

.fun-btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 8px;
  background: linear-gradient(90deg, #ff8ae2, #8a7dff);
  color: #fff;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow:
    0 0 6px rgba(227, 82, 198, 0.3),
    0 0 12px rgba(124, 92, 255, 0.2);
  transition: 0.3s;
}

.fun-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 10px rgba(227, 82, 198, 0.5),
    0 0 18px rgba(124, 92, 255, 0.3);
}
 .cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  display: block;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__content {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(10, 10, 18, 0.96);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  backdrop-filter: blur(8px);
}

.cookie-banner__content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner__content a {
  color: #f2a7ff;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  border: none;
  border-radius: 12px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.cookie-btn--primary {
  background: linear-gradient(135deg, #ff9cf0, #9d7bff);
  color: #111;
}

.cookie-btn--secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}