/*
Theme Name: SEO500France
Author: SEO500France
Description: Theme WordPress 
Version: 1.0
*/

    body {
      font-family: 'Poppins', sans-serif;
      background: #eef1ff;
      color: #222;
    }

    /* ===== GLOBAL ===== */
    .gradient {
      background: linear-gradient(135deg, #5b5bff, #ff3b7d);
      color: #fff;
    }

    .rounded-xl {
      border-radius: 20px;
    }

    .section {
      padding: 80px 0;
    }

    h1 span, h2 span {
      color: #6a5cff;
    }

    /* ===== HERO ===== */
    .hero {
      background: #eef1ff;
      padding: 100px 0 60px;
    }

    .btn-gradient {
      background: linear-gradient(135deg, #6a5cff, #ff3b7d);
      color: #fff;
      border: none;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
    }

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

    /* ===== CARDS ===== */
    .card-gradient {
      background: linear-gradient(135deg, #6a5cff, #ff3b7d);
      color: #fff;
      border-radius: 20px;
      padding: 25px;
      height: 100%;
    }

    .stars {
      color: #ffcc00;
      font-size: 14px;
    }

    /* ===== METHOD ===== */
    .step {
      background: linear-gradient(135deg, #6a5cff, #ff3b7d);
      color: #fff;
      border-radius: 16px;
      padding: 20px;
      margin-bottom: 15px;
      font-weight: 500;
    }

    /* ===== REALISATIONS ===== */
    .mockup {
      background: linear-gradient(135deg, #6a5cff, #ff3b7d);
      border-radius: 18px;
      padding: 10px;
    }

    .mockup img {
      border-radius: 12px;
      width: 100%;
    }

    /* ===== PRICING ===== */
    .pricing {
      background: #fff;
      border-radius: 20px;
      padding: 35px;
      box-shadow: 0 15px 40px rgba(0,0,0,.08);
      height: 100%;
    }

    .price {
      font-size: 32px;
      font-weight: 700;
      color: #6a5cff;
    }

    .pricing ul {
      padding-left: 0;
      list-style: none;
    }

    .pricing ul li {
      margin-bottom: 10px;
    }

    .pricing ul li::before {
      content: "✔";
      color: #2ecc71;
      margin-right: 8px;
    }

    /* ===== FOOT INFO ===== */
    .info-bar {
      background: linear-gradient(135deg, #5b5bff, #3f3dff);
      color: #fff;
      padding: 30px 0;
    }


    /* ===============================
   HEADER – SEO500 STYLE
================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

/* Navbar glass */
.custom-navbar {
  background: rgba(238, 241, 255, 0.9);
  border-bottom: 1px solid rgba(90, 90, 255, 0.08);
  transition: all 0.3s ease;
}

/* Brand gradient */
.brand-gradient {
  font-weight: 800;
  font-size: 1.3rem;
  background: linear-gradient(135deg, #5b5bff, #ff3b7d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Menu links */
.custom-navbar .nav-link {
  color: #2b2b2b;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color .3s ease;
}

.custom-navbar .nav-link:hover {
  color: #5b5bff;
}

/* Underline hover effect */
.custom-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #5b5bff, #ff3b7d);
  transition: width .3s ease;
}

.custom-navbar .nav-link:hover::after {
  width: 100%;
}

/* Active menu item */
.custom-navbar .current-menu-item > .nav-link {
  color: #5b5bff;
  font-weight: 600;
}

/* CTA button */
.btn-gradient {
  background: linear-gradient(135deg, #5b5bff, #ff3b7d);
  color: #fff;
  border: none;
  padding: 12px 26px;
  transition: all .3s ease;
}

.btn-gradient:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(91, 91, 255, 0.35);
  color: #fff;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .custom-navbar {
    padding: 15px 0;
  }

  .navbar-nav {
    padding-top: 20px;
  }

  .navbar-cta {
    margin-top: 15px;
  }
}

/* ===============================
   SECTION MÉTHODE
================================ */

.method-section {
  background: transparent;
}

.text-gradient {
  background: linear-gradient(135deg, #5b5bff, #ff3b7d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card step */
.method-step {
  background: linear-gradient(135deg, #6a5cff, #ff3b7d);
  color: #fff;
  padding: 30px;
  border-radius: 18px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.method-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(90, 90, 255, 0.25);
}

/* Step number */
.step-number {
  min-width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text */
.method-step h5 {
  margin-bottom: 8px;
}

.method-step p {
  opacity: 0.95;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .method-step {
    padding: 22px;
  }
}


.mockup img {
  max-height: 300px; /* limite la hauteur de l'image */
  object-fit: cover;
  border-radius: 5px;
}