@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

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

html, body {
  height: 100%;              /* ✅ occupe toute la hauteur de la fenêtre */
  margin: 0;
  padding: 0;
  font-family: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  display: flex;             /* ✅ active flexbox */
  flex-direction: column;    /* ✅ empile header, main, footer */
  overflow-x: hidden;
  background-color: #f5f5f5; /* ✅ fond gris clair */
  background-image: none;
}
main {
  flex: 1;                   /* ✅ prend tout l’espace restant */
}
footer {
  flex-shrink: 0;            /* ✅ reste collé en bas */
}

/* ✅ Scroll doux sur toutes plateformes */
html {
  scroll-behavior: smooth;
}

/* ✅ Suppression barre de scroll sans bug */
html::-webkit-scrollbar, 
body::-webkit-scrollbar {
  display: none;
}

/* === ACCUEIL === */
#home {
  text-align: center;
  padding: 25px 15px;
  font-size: 14px;
}

.welcome-text,
.action-container {
  opacity: 1;
  transform: none;
  margin-top: 0px;
}

.action-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.action-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 5px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.01);
  transition: all 0.2s ease;
  position: relative;
  z-index: 3;
}

.action-icon i {
  font-size: 1.7rem;
  margin-bottom: 5px;
}

.action-icon:hover {
  background: rgba(0, 212, 255, 0.01);
  color: #00d4ff;
}

/* === FORMULAIRES === */
#formContainer {
  position: relative;
  overflow: hidden;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.form-wrapper {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px;
  margin: 20px auto;
  max-width: 500px;
  border-radius: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  overflow: visible;
  max-height: none;
}

.form-wrapper.hidden {
  display: none;
}

.form-wrapper h2 {
  margin-bottom: 15px;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}

form select,
form input,
form button,
form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border: none;
  border-radius: 18px;
  background: rgba(255,255,255,0.8);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  position: relative;
  z-index: 3;
}

form textarea {
  resize: vertical;
  min-height: 140px;
  border-radius: 15px;
}

form button {
  background: #00d4ff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border: none;
  width: auto;
  padding: 6px 14px;
  font-size: 1rem;
  border-radius: 20px;
  display: inline-block;
  position: relative;
  z-index: 3;
}

form button:hover {
  background: #00aacc;
}

form button + button {
  margin-left: 10px;
}

/* === TOAST === */
#toast {
  position: fixed;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: #00d4ff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: top 0.5s ease, opacity 0.5s ease;
  z-index: 2000;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  text-align: center;
  font-style: italic;
}

#toast.show {
  top: 80px;
  opacity: 1;
  pointer-events: auto;
}

/* === CHAMPS CACHÉS === */
.hidden {
  display: none;
}

/* === SELECTS DYNAMIQUES === */
select {
  transition: none;
  opacity: 1;
  max-height: 200px;
  overflow: hidden;
}

select.hidden {
  max-height: 0;
  opacity: 0;
  padding: 0;
  margin: 0;
  display: none !important;
}

/* === UPLOAD === */
.file-upload {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.custom-file-label {
  display: inline-block;
  padding: 10px 14px;
  background-color: #00d4ff;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  border-radius: 20px;
  text-align: center;
  transition: background 0.2s;
}

.custom-file-label:hover {
  background-color: #00b4cc;
}

.file-upload input[type="file"] {
  display: none;
}

.file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

/* === FILE UPLOAD PREVIEW === */
.file-item {
  position: relative;
  display: inline-block;
  margin: 8px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

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

.hero {
  position: relative;
  width: 100%;
  height: 60vh; /* hauteur de la section */
  background: url("assets/images1.jpeg") center/cover no-repeat; /* ton image immobilière */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0, 40, 60, 0.6); /* voile sombre pour lisibilité du texte */
  color: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
}

.hero-overlay h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-overlay p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.hero-btn {
  display: inline-block;
  background: #00d4ff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #00aacc;
}

/* ✅ Mobile adaptation */
@media (max-width: 768px) {
  .hero {
    height: 40vh;
  }
  .hero-overlay h1 {
    font-size: 1.4rem;
  }
  .hero-overlay p {
    font-size: 0.9rem;
  }
}

/* === ACCUEIL === */
#home {
  text-align: center;
  padding: 25px 15px;
  font-size: 14px;
}

.welcome-text,
.action-container {
  opacity: 1;
  transform: none;
  margin-top: 0px;
}

.action-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.action-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 5px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.01);
  transition: all 0.2s ease;
  position: relative;
  z-index: 3;
}

.action-icon i {
  font-size: 1.7rem;
  margin-bottom: 5px;
}

.action-icon:hover {
  background: rgba(0, 212, 255, 0.01);
  color: #00d4ff;
}

/* === FORMULAIRES === */
#formContainer {
  position: relative;
  overflow: hidden;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.form-wrapper {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px;
  margin: 20px auto;
  max-width: 500px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.form-wrapper.hidden {
  display: none;
}

.form-wrapper h2,
.form-wrapper h3 {
  margin-bottom: 15px;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  text-align: center; /* ✅ centrage du texte */
}

.fake-select {
  display: inline-block;
  width: 100%;
  margin: 8px 0;
  padding: 10px 14px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  text-align: center; /* ✅ centrage du texte */
  box-sizing: border-box; /* ✅ évite les débordements */
}

.fake-select a {
  text-decoration: none;
  color: #333;
  display: block;
  text-align: center;
}

.fake-select:hover {
  border-color: #00d4ff;
  background: #f5f5f5;
}

/* ✅ Adaptation mobile */
@media (max-width: 600px) {
  .fake-select {
    font-size: 12px;       /* texte plus petit */
    padding: 8px 10px;     /* moins de padding */
    border-radius: 10px;   /* arrondi plus discret */
  }

  .fake-select a {
    font-size: 12px;
  }

  .form-wrapper h2,
  .form-wrapper h3 {
    font-size: 13px;       /* titres plus petits */
    text-align: center;
  }
}


/* === Catégories === */
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px auto;
  max-width: 1200px;
}

.category-card {
  position: relative;
  width: 220px;
  height: 140px;
  overflow: hidden;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.category-card span {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 1rem;
  z-index: 2;
}

.category-card:hover {
  transform: scale(1.05);
}

/* Catégories - style général */
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 16px;
}

.category-card {
  flex: 0 0 180px;
  height: 100px;
  border-radius: 8px;
  background: #004060;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.category-card:hover {
  transform: scale(1.05);
  background: #0077b6;
}

/* ✅ Mobile portrait : deux lignes scrollables verticalement */
@media (max-width: 768px) and (orientation: portrait) {
  .categories {
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow-y: auto; /* scroll vertical */
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 16px;
    width: 100%;
    max-height: 220px; /* limite à deux lignes visibles */
  }

  .category-card {
    flex: 0 0 calc(50% - 12px); /* deux cartes par ligne */
    height: 100px;
  }

  /* Scrollbar visible et stylée */
  .categories::-webkit-scrollbar {
    width: 8px;
  }

  .categories::-webkit-scrollbar-track {
    background: rgba(0, 40, 60, 0.2);
    border-radius: 10px;
  }

  .categories::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00d4ff, #0077b6);
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.3);
  }

  .categories::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0077b6, #00d4ff);
  }
}

/* ✅ Mobile paysage : scroll horizontal */
@media (max-width: 768px) and (orientation: landscape) {
  .categories {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto; /* scroll horizontal */
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 16px;
    width: 100%;
  }

  .category-card {
    flex: 0 0 auto;
    width: 160px;
    height: 100px;
  }

  /* Scrollbar visible et stylée */
  .categories::-webkit-scrollbar {
    height: 8px;
  }

  .categories::-webkit-scrollbar-track {
    background: rgba(0, 40, 60, 0.2);
    border-radius: 10px;
  }

  .categories::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #00d4ff, #0077b6);
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.3);
  }

  .categories::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #0077b6, #00d4ff);
  }
}


/* Section Comment ça marche */
#how-it-works {
  text-align: center;
  padding: 40px 20px;
  background: #f9f9f9;
}
#how-it-works h2 {
  margin-bottom: 20px;
}
.steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.step {
  max-width: 250px;
  text-align: center;
}
.step i {
  font-size: 2rem;
  color: #00d4ff;
  margin-bottom: 10px;
}

/* Section À propos */
#about {
  padding: 40px 20px;
  text-align: center;
}
#about h2 {
  margin-bottom: 20px;
}
#about p {
  max-width: 600px;
  margin: 0 auto 20px;
}
#about ul {
  list-style: none;
  padding: 0;
}
#about li {
  margin: 10px 0;
  font-size: 14px;
}
#about i {
  color: #00d4ff;
  margin-right: 8px;
}

footer {
  background: rgba(0, 40, 60, 0.95);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 25px 12px 20px 12px;
  font-size: 13px;
  line-height: 1.4;
  margin-top: 25px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: space-between;
}

.footer-section {
  min-width: 200px;
  text-align: center;
}

.footer-section h2 {
  color: #00d4ff;
  font-size: 19px;
  margin-bottom: 8px;
}

.footer-section h3 {
  color: #00d4ff;
  font-size: 13px;
  margin-bottom: 6px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  font-size: 11px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.footer-link, .contact-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover, .contact-link:hover {
  color: #00d4ff;
}

.socials {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link {
  color: #fff;
  font-size: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-link:hover {
  color: #00d4ff;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 15px;
  font-size: 9px;
  color: #aaa;
  line-height: 1.4;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #00d4ff;
  text-decoration: underline;
}

/* Version mobile */
@media screen and (max-width: 768px) {
  footer {
    padding: 15px 8px;
    font-size: 11px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-section h2 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .footer-section h3 {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .footer-section ul {
    font-size: 9px;
    margin-bottom: 8px;
  }

  .socials {
    gap: 12px;
    margin-top: 6px;
  }

  .footer-bottom {
    font-size: 9px;
    margin-top: 8px;
  }
}


form select,
form input,
form button,
form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border: none;
  border-radius: 18px;
  background: rgba(255,255,255,0.8);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  position: relative;
  z-index: 3;
}

form button {
  background: #00d4ff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border: none;
  width: auto;
  padding: 6px 14px;
  font-size: 1rem;
  border-radius: 20px;
  display: inline-block;
  position: relative;
  z-index: 3;
  transition: background 0.2s;
}

form button:hover {
  background: #00aacc;
}

form button + button {
  margin-left: 10px;
}

/* === TOAST PRO === */
#toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(0.8);
  background: linear-gradient(135deg, #00d4ff, #0066ff);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.25, 1.5, 0.5, 1), opacity 0.35s ease;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Icon inside toast */
#toast i {
  font-size: 18px;
}

/* When toast is shown */
#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Toast types */
#toast.success { background: linear-gradient(135deg, #28a745, #218838); }
#toast.error { background: linear-gradient(135deg, #dc3545, #a71d2a); }
#toast.info  { background: linear-gradient(135deg, #17a2b8, #117a8b); }

/* === ANIMATIONS FORM === */
.slide-right-to-left { transform: translateX(100%); animation: slideRTL 0.5s forwards; }
@keyframes slideRTL { to { transform: translateX(0); opacity: 1; } }

.file-item:hover {
  transform: scale(1.03);
}

.file-preview {
  display: block;
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  background: #000;
}

.file-item video.file-preview {
  background: #000;
}

.file-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.8);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  line-height: 18px;
  text-align: center;
  font-size: 14px;
  z-index: 10;
  transition: background 0.2s ease;
}

.file-remove:hover {
  background: rgba(255, 0, 0, 1);
}

/* === ANIMATIONS FORM === */

.slide-right-to-left {
  transform: translateX(100%);
  animation: slideRTL 0.5s forwards;
}
@keyframes slideRTL {
  to { transform: translateX(0); opacity: 1; }
}


/* === STRUCTURE PAGE === */
main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

footer {
  flex-shrink: 0;
  margin: 0 !important;
  padding: 0 !important;
}

/* ✅ Animation fluide : 1 image à la fois */
@keyframes slideSmooth {
  0%, 25%   { transform: translateX(0); }
  33%, 58%  { transform: translateX(-100%); }
  66%, 91%  { transform: translateX(-200%); }
  100%      { transform: translateX(0); }
}

/* ✅ Mobile : plus compact et fluide */
@media (max-width: 768px) {
  .carousel {
    height: 160px;
    border-radius: 8px;
  }

  .carousel-track {
    animation: slideSmooth 12s ease-in-out infinite;
  }
}

/* === ADAPTATION MOBILE === */
@media (max-width: 768px) {

  /* Réduit légèrement la taille du texte d'accueil */
  #home {
    font-size: 12px; /* au lieu de 14px */
    padding: 20px 10px;
  }

  /* Réduit la taille des icônes et du texte des boutons */
  .action-icon i {
    font-size: 1.3rem; /* au lieu de 1.7rem */
  }

  .action-icon {
    gap: 3px;
  }

  .action-icon span,
  .action-icon p {
    font-size: 12px;
  }

  /* Espace plus serré entre les boutons */
  .action-container {
    gap: 40px; /* au lieu de 80px */
  }

  /* Réduit la taille des titres dans les formulaires */
  .form-wrapper h2,
  .form-wrapper h3 {
    font-size: 13px;
  }

  /* Réduit la taille des boutons */
  form button {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}

.toast-success {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #4CAF50; /* vert succès */
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s ease;
  z-index: 9999;
}

.toast-success.show {
  opacity: 1;
  transform: translateY(0);
}

/* === Hero Immobilier === */
.hero-immobilier {
  position: relative;
  min-height: 70vh;
  background: url('https://images.unsplash.com/photo-1505691938895-1758d7feb511?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: justify;
  overflow: hidden;
  padding: 30px 20px;
}

/* Section hero principale */
.hero-immobilier {
  position: relative;
  display: flex;
  align-items: center;      /* ✅ centre verticalement le contenu */
  justify-content: center;
  min-height: 60vh;         /* ✅ réduit la hauteur (au lieu de 100vh) */
  padding: 30px 20px;       /* ✅ réduit le padding haut/bas */
  overflow: hidden;
}

/* Overlay */
.hero-immobilier-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,40,60,0.7);
  backdrop-filter: blur(2px);
}

/* Contenu */
.hero-immobilier-content {
  position: relative;
  max-width: 800px;
  padding: 10px 15px;       /* ✅ réduit le padding interne */
  animation: heroImmobilierFadeInUp 2.5s ease-out;
}

.hero-immobilier-content h1 {
  font-size: clamp(1.4rem, 4vw, 2.2rem); /* ✅ fluide */
  font-weight: 700;
  margin-bottom: 10px;      /* ✅ réduit l’espace sous le titre */
  line-height: 1.3;
  text-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

.hero-immobilier-content p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  margin-bottom: 15px;      /* ✅ réduit l’espace sous le paragraphe */
  line-height: 1.5;
}

.hero-immobilier-highlight {
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 600;
  color: #00d4ff;
  margin-top: 10px;         /* ✅ réduit l’espace au-dessus du texte highlight */
}

.hero-immobilier-btn {
  display: inline-block;
  margin-top: 15px;         /* ✅ réduit l’espace au-dessus du bouton */
  padding: 10px 20px;       /* ✅ bouton plus compact */
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #00d4ff, #0077b6);
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-immobilier-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Animation */
@keyframes heroImmobilierFadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Hero Fake Annonce === */
.hero-fake-annonce {
  position: relative;
  min-height: 70vh;
  background: url('https://images.unsplash.com/photo-1560185127-6ed189bf02f4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: justify;
  padding: 25px 20px;
}

.hero-fake-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10, 30, 50, 0.75);
  backdrop-filter: blur(2px);
}

.hero-fake-content {
  position: relative;
  max-width: 900px;
  z-index: 2;
  animation: heroFakeFadeIn 1.5s ease-out;
}

.hero-fake-content h1 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
  text-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

.hero-fake-content h2 {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 20px;
  color: #00d4ff;
}

.hero-fake-content p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  margin-bottom: 25px;
  line-height: 1.6;
}

.fake-annonce-list {
  list-style: none;
  padding: 0;
}

.fake-annonce-list li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
}

.fake-annonce-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-weight: bold;
}

/* Animation */
@keyframes heroFakeFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

