@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* ===== STYLE COMMUN .subtitle & .arp ===== */
.banner .subtitle,
.arp {
  font-size: 1.2rem;
  color: #853173;
  margin-bottom: 25px;
  text-shadow: 0 0 8px rgba(0,0,0,0.5);
  font-weight: 500;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(100%);
  animation: slideInFromRight 1s ease-out forwards;
  animation-delay: 0.3s;
}

/* ===== STYLE SPÉCIFIQUE À .arp ===== */
.arp {
  font-size: 1.4rem; /* plus grand que subtitle */
  color: #c9c9c9; /* gris clair attractif */
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
  font-weight: 600;
}

.banner .subtitle:hover,
.arp:hover {
  color: #ff4d4d;
  text-shadow: 0 0 25px #ff0000, 0 0 50px rgba(255,0,0,0.7);
}

/* ===== BANNER ===== */
.banner {
  text-align: center;
  padding: 60px 20px;
  border-radius: 15px;
  margin: 30px auto;
  max-width: 1000px;
  position: relative;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 0 30px rgba(255,59,59,0.7);
  background: linear-gradient(270deg, #ff0000, #ff7f50, #ff3b3b, #ff0000);
  background-size: 800% 800%;
  animation: gradientBG 15s ease infinite;
  backdrop-filter: blur(10px);
}

/* ===== GRADIENT ANIMÉ ===== */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== SLIDE-IN COMMUN ===== */
.banner h1,
.banner .subtitle,
.banner .arp,
.banner .powered {
  opacity: 0;
  transform: translateX(100%);
  animation: slideInFromRight 1s ease-out forwards;
}

.banner .subtitle,
.arp { animation-delay: 0.3s; }
.banner .powered { animation-delay: 0.6s; }

/* ===== TITRE PRINCIPAL ===== */
.banner h1 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 15px;
}

.banner h1 span {
  color: #ff3b3b;
  text-shadow: 0 0 20px #ff3b3b, 0 0 40px rgba(255,59,59,0.7), 0 0 60px rgba(255,0,0,0.5);
  animation: redPulse 1s infinite alternate, glow 3s ease-in-out infinite alternate;
}

/* ===== POWERED BY ===== */
.powered {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: #00bfff;
  text-shadow: 0 0 10px #00bfff, 0 0 20px rgba(0,191,255,0.5);
  justify-content: center;
  transition: all 0.3s ease;
}

.powered .z4ck {
  font-weight: bold;
  color: #ffffff;
  transition: all 0.3s ease;
}

.powered .emoji {
  font-size: 1.5em;
  transition: transform 0.3s, text-shadow 0.3s;
}

.powered:hover .z4ck {
  color: #ff0000;
  text-shadow: 0 0 25px #ff0000, 0 0 50px rgba(255,0,0,0.7);
}

.powered:hover .emoji {
  transform: scale(1.5) rotate(25deg);
  text-shadow: 0 0 20px #ff7f50, 0 0 35px rgba(255,127,80,0.7);
}

/* ===== ANIMATIONS ===== */
@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes redPulse {
  from { text-shadow: 0 0 10px rgba(255,0,0,0.7); }
  to { text-shadow: 0 0 40px rgba(255,50,50,1); }
}

@keyframes glow {
  from { text-shadow: 0 0 15px #ff3b3b; }
  to { text-shadow: 0 0 35px #ff3b3b, 0 0 70px #ff7f50; }
}

/* ===== BODY ===== */
body {
  font-family: 'Poppins', sans-serif;
  background: url('background.png') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: -1;
}


/* ===== HEADER ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 45px;
  background: linear-gradient(90deg, #2a0000, #550000, #2a0000);
  background-size: 300% 300%;
  animation: headerGradient 8s ease infinite;
  box-shadow: 0 0 25px rgba(255,0,0,0.4);
  border-bottom: 2px solid rgba(255,0,0,0.25);
  position: sticky;
  top: 0;
  z-index: 20;
}

@keyframes headerGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 0 10px red;
  animation: logoPulse 3s infinite ease-in-out;
  transition: transform 0.3s;
}

.logo img:hover { transform: rotate(10deg) scale(1.1); }

@keyframes logoPulse {
  0% { filter: drop-shadow(0 0 8px red); transform: scale(1); }
  50% { filter: drop-shadow(0 0 20px #ff3b3b); transform: scale(1.1); }
  100% { filter: drop-shadow(0 0 8px red); transform: scale(1); }
}

.server-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff0000;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 12px #ff0000, 0 0 25px #ff3b3b;
  animation: flicker 3s infinite;
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.6; }
}

.nav-links a {
   color: rgb(34, 31, 25);
  text-decoration: none;
  margin: 0 12px;
  font-weight: 600;
  position: relative;
  transition: 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(90deg, #ff0000, #ff3b3b);
  transition: 0.4s ease;
  box-shadow: 0 0 8px #ff0000;
}

.nav-links a:hover::after { width: 100%; }

.nav-links a:hover {
  color: #ff0000;
  text-shadow: 0 0 10px #ff3b3b;
  transform: scale(1.1);
}

/* ===== BANNER ===== */
.banner {
  text-align: center;
  padding: 40px 15px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  border-bottom: 2px solid rgba(255,255,255,0.2);
}

.banner h1 {
  font-size: 1.8rem;
  font-weight: 700;
  animation: glow 3s ease-in-out infinite alternate;
}

.banner h1 span {
  color: red;
  text-shadow: 0 0 12px rgba(255,0,0,0.7);
  animation: redPulse 2s infinite alternate;
}

.banner p {
  margin-top: 8px;
  font-size: 1rem;
  color: #e0e0e0;
}

@keyframes redPulse {
  from { text-shadow: 0 0 8px rgba(255,0,0,0.6);}
  to { text-shadow: 0 0 25px rgba(255,50,50,1);}
}

@keyframes glow {
  from { text-shadow: 0 0 8px #ff3b3b;}
  to { text-shadow: 0 0 25px #ff3b3b,0 0 50px #ff3b3b;}
}

/* ===== OFFERS ===== */
.offers {
  padding: 40px 5%;
  text-align: center;
  backdrop-filter: blur(5px);
}

.category {
  margin-bottom: 50px;
}

.category h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #ff3b3b;
  text-shadow: 0 0 8px #ff3b3b;
  animation: fadeIn 1.5s ease;
}

/* ===== GRILLE DES CARTES ===== */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 15px;
}

.offer-card {
  background: rgba(0,0,0,0.55);
  border-radius: 8px;
  padding: 10px;
  border: 2px solid #000; /* bordure noire solide */
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.offer-card img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 6px;
}

.offer-card h3 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.offer-card p {
  font-size: 0.7rem;
  margin-bottom: 6px;
}
/*OFFRE GRID PAcks*/
/* ===== PACKS ===== */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.pack-card {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 10px;
  padding: 15px;
  border: 2px solid #111;
  box-shadow: 0 0 8px rgba(255, 59, 59, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pack-card img {
  width: 100%;
  height: 130px;            /* plus petit format */
  border-radius: 8px;
  object-fit: contain;      /* montre l’image complète sans la couper */
  object-position: center;  /* centre l’image */
  background-color: #111;   /* fond foncé autour si l’image ne remplit pas tout */
  margin-bottom: 10px;
  padding: 5px;             /* petit espace pour éviter qu’elle touche les bords */
}


.pack-card h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 5px;
  text-shadow: 0 0 8px rgba(255,0,0,0.6);
}

.pack-card p {
  font-size: 0.85rem;
  color: #ccc;
  margin-bottom: 10px;
}

.pack-card .price {
  background: #222;
  color: #ff7f50;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 5px;
  padding: 4px 0;
  margin-bottom: 10px;
  display: block;
  transition: all 0.3s ease;
}

.pack-card .btn {
  display: block;
  width: 100%;
  padding: 7px 0;
  background: linear-gradient(45deg,#ff0000,#ff3b3b);
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: 0.3s;
}

.pack-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 0 20px rgba(255,0,0,0.4);
}

.pack-card .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,0,0,0.8);
}

/* Styles par pack */
.pack-card.bronze {
  border: 2px solid #cd7f32;
  box-shadow: 0 0 10px rgba(205,127,50,0.5);
}

.pack-card.silver {
  border: 2px solid #c0c0c0;
  box-shadow: 0 0 10px rgba(192,192,192,0.5);
}

.pack-card.gold {
  border: 2px solid #ffd700;
  box-shadow: 0 0 10px rgba(255,215,0,0.6);
}

/*ass*/
.offer-grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 15px;
}

.offer-card2 {
  background: rgba(0,0,0,0.55);
  border-radius: 8px;
  padding: 10px;
  border: 2px solid #000; /* bordure noire solide */
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.offer-card2:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.offer-card2 img {
  width: 50%;
  height: 165px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 6px;
}

.offer-card2 h3 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.offer-card2 p {
  font-size: 0.7rem;
  margin-bottom: 6px;
}

.price {
  display: block;
  font-size: 1rem;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-weight: 700;
  color: #ff0000; /* couleur principale */
  text-shadow:
    0 0 5px #000000,
    0 0 10px #000000,
    0 0 20px rgba(0, 0, 0, 0.6); /* éclairage homogène */
  margin-bottom: 10px;
  background: rgb(34, 33, 33);
  border: 1px solid rgb(50, 50, 53);
  border-radius: 5px;
  padding: 4px 0;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.5s ease;
}

.price:hover {
 color: #8b1414;
  background: linear-gradient(90deg, #1f1e1e, #2e2927);
  border-color: transparent;
  box-shadow:
    0 0 10px #000000,
    0 0 25px rgba(0, 0, 0, 0.8);
  transform: scale(1.05);
}
hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff0000, transparent);
  margin: 40px auto;
  width: 80%;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

/* === BOUTON === */
.btn {
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 5px 0;
  font-size: 0.8rem;
  background: linear-gradient(45deg,#ff0000,#ff3b3b);
  border: none;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px #ff3b3b;
}

/* Grandes maisons et îles */
.large-house, .large-island { grid-column: span 2; }
.large-house img, .large-island img { height: 200px; }

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 15px;
  background: rgba(0,0,0,0.6);
  font-size: 0.75rem;
  color: #ddd;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px);}
  to { opacity: 1; transform: translateY(0);}
}
.offer-grid1 {
display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.offer-card1 {
  background: rgba(0,0,0,0.55);
  border-radius: 8px;
  padding: 10px;
  border: 2px solid #000; /* bordure noire solide */
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.offer-card1:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.offer-card1 img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 6px;
}

.offer-card1 h3 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.offer-card1 p {
  font-size: 0.7rem;
  margin-bottom: 6px;
}footer {
  background: rgba(0,0,0,0.7);
  padding: 25px 5%;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  box-shadow: 0 0 10px #ff3b3b;
  transition: transform 0.3s;
}

.footer-logo:hover {
  transform: scale(1.1) rotate(5deg);
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s, text-shadow 0.3s;
}

.footer-link:hover {
  color: #ff7f50;
  text-shadow: 0 0 8px #ff7f50;
}

.footer-icon {
  width: 20px;
  height: 20px;
}
