@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #111111;
  line-height: 1.6;
}

/* Containers */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: #111111;
  color: white;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  font-size: 2.4em;
  margin-bottom: 10px;
}

/* Navigation */
nav {
  margin-top: 10px;
}

nav a {
  display: inline-block;
  margin: 0 20px;
  font-size: 1.2em;
  color: #B0B0B0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
  color: #C0C0C0;
  transform: scale(1.15);
}

/* Hero Section */
.hero {
  position: relative;
  background-color: #000;
  overflow: hidden;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://webovore.fr/images/fenetre-etoiles.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(1.5px) brightness(0.85);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.hero-img {
  width: 300px;
  margin-top: 30px;
}

.flash-green {
  background: linear-gradient(to top, #00994d, #33cc99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: flashGreen 2.3s infinite;
}

@keyframes flashGreen {
  0%   { opacity: 1; }
  17%  { opacity: 0.3; }
  29%  { opacity: 1; }
  41%  { opacity: 0.6; }
  58%  { opacity: 1; }
  73%  { opacity: 0.2; }
  85%  { opacity: 1; }
  100% { opacity: 0.5; }
}

/* Buttons */
.btn {
  background-color: #111111;
  color: white;
  padding: 16px 32px;
  font-size: 1.1em;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: #333333;
  color: #33cc99;
  animation: vibrate 0.3s linear infinite;
}

@keyframes vibrate {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-2px); }
  50%  { transform: translateX(2px); }
  75%  { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}

.btn.animated {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2.5em;
  margin: 60px 0 40px;
}

/* Packs Section */
.packs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 20px;
}

.pack {
  position: relative;
  background-color: #ffffff;
  border: 2px solid #C0C0C0;
  border-radius: 12px;
  padding: 30px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pack:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.pack h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.pack ul {
  list-style: none;
  padding: 0;
}

.pack ul li {
  margin-bottom: 10px;
  padding-left: 0;
}

/* Rubans */
.ribbon {
  position: absolute;
  top: -10px;
  left: -10px;
  padding: 10px 20px;
  font-weight: bold;
  color: white;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.bronze-ribbon {
  background: linear-gradient(135deg, #b87333, #cd7f32, #a0522d);
  box-shadow: 0 0 10px rgba(205, 127, 50, 0.4);
}

.argent-ribbon {
  background: linear-gradient(135deg, #c0c0c0, #dcdcdc, #a9a9a9);
  box-shadow: 0 0 10px rgba(192, 192, 192, 0.4);
}

.platinium-ribbon {
  background: linear-gradient(135deg, #bfa76f, #ffd700, #c5a100);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* Formule Detail Pages */
.formule-detail {
  padding: 60px 20px;
  text-align: center;
}

.detail-img {
  width: 250px;
  margin: 30px 0;
}

/* Contact Section */
.contact {
  padding: 60px 20px;
  text-align: center;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.contact input {
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #C0C0C0;
  font-size: 1em;
}

.contact textarea {
  resize: vertical;
  min-height: 180px;
  font-size: 1.3em;
  font-family: 'Georgia', serif;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #C0C0C0;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

.contact button {
  background-color: #111111;
  color: white;
  padding: 16px;
  font-size: 1.1em;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.contact button:hover {
  background-color: #333333;
  color: #33cc99;
  animation: vibrate 0.3s linear infinite;
}

.checkbox-label {
  display: block;
  margin-bottom: 15px;
  font-size: 0.95em;
  color: #333;
}

/* Paiement Section */
.paiement {
  padding: 60px 20px;
  text-align: center;
}

/* Footer */
footer {
  background-color: #111111;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .packs {
    flex-direction: column;
    align-items: center;
  }

  .pack {
    width: 90%;
  }

  .hero h2 {
    font-size: 2em;
