/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Colors */
:root {
  --yellow: #f5c518;
  --black: #111;
  --white: #ffffff;
  --light-gray: #f4f4f4;
}

/* Body */
body {
  background: var(--white);
  color: var(--black);
}

header {
    width: 100%;
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 50px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

.logo {
    margin: 0;
    display: flex;
    align-items: center;
}

.logo img {
    height: 90px;
    width: auto;
    display: block;
    transition: 0.2s ease;
}

.logo img:hover {
    transform: scale(1.02);
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    transition: 0.25s ease;
}

nav a:hover {
    color: #FFD700;
}

/* smooth underline effect */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #FFD700;
    transition: 0.25s ease;
}

nav a:hover::after {
    width: 100%;
}

.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* VIDEO */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 2;
}

/* CONTENT */ 
.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 800px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 20px; 
  padding: 0 20px;
}

/* TEXT */
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.primary-btn {
  background: #4da6ff; /* light blue */
  color: white;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.primary-btn:hover {
  background: #3399ff; /* slightly darker on hover */
  transform: translateY(-3px);
}
/* Section */
.section {
  padding: 60px 20px;
  text-align: center;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: var(--light-gray);
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  border-top: 5px solid var(--yellow);
}

/* Footer */
footer {
    background: black;
    color: white;
    padding: 30px 20px;
    text-align: center;
}


.map-container {
  position: relative;
  margin: 30px auto;
  width: 80%;
  max-width: 700px;
  height: 300px;
  border: 4px solid red;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Cercle rouge au-dessus de la map */
.map-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border: 4px solid red;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; /* permet de toujours utiliser la map */
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  header {
    flex-direction: column;
    gap: 10px;
  }

  nav a {
    margin: 0 10px;
  }
}
/* Section fond subtil */
.why-section {
  background: linear-gradient(to bottom, #ffffff, #f9f9f9);
}

/* Sous-titre */
.subtitle {
  margin-top: 10px;
  color: #555;
}

/* Grid plus moderne */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Cartes premium */
.info-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Icône */
.info-card .icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* Titre */
.info-card h3 {
  margin-bottom: 10px;
}

/* Hover WOW */
.info-card:hover {
  transform: translateY(-10px) scale(1.03);
  background: var(--black);
  color: var(--white);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Ligne jaune animée */
.info-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--yellow);
  transition: width 0.4s ease;
}

.info-card:hover::before {
  width: 100%;
}
.why-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
  position: relative;
}
.why-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: var(--yellow);
  margin: 10px auto;
  border-radius: 2px;
}




.why-marketing {
  max-width: 750px;
  margin: 20px auto 40px;
  text-align: center;
}

/* Première phrase */
.why-intro {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #555;
}

/* Phrase clé (ULTRA IMPORTANT) */
.why-highlight {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin: 15px 0;
  position: relative;
}



/* Texte normal */
.why-text {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  margin-top: 10px;
}
/* Section fond léger */
.about-section {
  background: #f9f9f9;
}

/* Container */
.about-container {
  max-width: 900px;
  margin: auto;
}

/* Titre */
.about-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
}

/* Sous-titre */
.about-subtitle {
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 15px;
}

/* Texte */
.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #444;
}

/* Phrase finale (impact) */
.about-highlight {
  margin-top: 20px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--black);
  position: relative;
}

/* Ligne jaune */
.about-highlight {
  margin-top: 20px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--black);
  position: relative;
  display: inline-block;
}

/* Luxury animated line */
.about-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 3px;
  width: 0%;
  border-radius: 2px;

  /* Gradient = premium look */
  background: linear-gradient(
    90deg,
    transparent,
    var(--yellow),
    var(--yellow),
    transparent
  );

  transition: width 0.6s ease;
}

/* Smooth reveal on load */
.about-highlight.visible::after {
  width: 100%;
}
/* Layout 2 colonnes */
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* Texte */
.about-text {
  flex: 1;
}

.about-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
}

.about-subtitle {
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #444;
}

/* Highlight */
.about-highlight {
  margin-top: 20px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--black);
}

/* Image */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Responsive mobile */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
}
.why-proof {
  margin-top: 25px;
  text-align: center;
}

.why-proof strong {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.process-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.3s;
  text-align: left;
}

.process-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.process-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* TEXT */
.process-card h3 {
  margin: 15px 20px 10px;
  font-size: 1.2rem;
}

.process-card p {
  margin: 0 20px 25px;
  color: #555;
  line-height: 1.5;
}

/* TITLE */
.process-cards h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 50px;
  position: relative;
}

.process-cards h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: var(--yellow);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* MOBILE */
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* mobile */
@media (max-width: 768px) {
  .process-box {
    flex-direction: column;
    text-align: center;
  }

  .process-step {
    justify-content: center;
  }
}
.faq-section {
    margin-top: 60px;
    padding: 40px;
    background: #f5f5f5;
    color: #0080fe;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    max-width: 750px;
    margin: 10px auto;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
  color: #333;
}

/* quand ouvert */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}
.about-container {
  gap: 25px; /* smaller spacing between text and image */
}

.why-title {
  margin-bottom: 10px;
}

.about-subtitle {
  margin-bottom: 10px;
}

.why-text,
.why-intro,
.why-highlight,
.about-subtitle {
  margin: 5px 0;
  line-height: 1.35;
}

header .logo {
    margin: 0;
    display: flex;
    align-items: center;
}

header .logo img {
    height: 80px;  
    width: auto;
    display: block;
    transform: scale(1.3); 
    transform-origin: left center;
}
.big-flashcard {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px 50px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(246, 255, 0, 0.822);
    text-align: center;
}

.big-flashcard .why-why {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.8;
    color: #1a1a1a;
    margin: 0;
}
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.privacy-link {
    color: white;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.9;
    transition: 0.3s;
}

.privacy-link:hover {
    opacity: 1;
    text-decoration: underline;
}
/* Better styling for embedded Google My Map */

.map-image {
    max-width: 1000px;
    margin: 30px auto 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    background: white;
}

.map-image iframe {
    width: 100%;
    height: 500px;
    display: block;
    border: none;
}
/* =========================
   MODERN PREMIUM UPGRADE (NO LAYOUT CHANGES)
========================= */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Better typography baseline */
body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
}

/* Section spacing refinement */
.section {
  padding: 80px 20px;
}

/* Headings upgrade */
h1, h2, h3 {
  letter-spacing: -0.5px;
}

/* Make section titles cleaner */
.section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
}

/* Yellow underline accent */
.section h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: var(--yellow);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* =========================
   CARD UPGRADE (AIRBNB STYLE)
========================= */

.card,
.info-card,
.process-card {
  border-radius: 16px;
  transition: all 0.3s ease;
}

/* softer hover effect */
.card:hover,
.info-card:hover,
.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

/* =========================
   HERO TEXT IMPROVEMENT
========================= */

.hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* =========================
   BUTTON POLISH
========================= */

.primary-btn {
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 15px 34px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.25s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* =========================
   ABOUT SECTION POLISH
========================= */

.about-text p {
  font-size: 1.05rem;
  color: #444;
}

/* =========================
   INFO CARDS TEXT BALANCE
========================= */

.info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.info-card p {
  font-size: 0.95rem;
  color: #555;
}

/* =========================
   FAQ CLEANER LOOK
========================= */

.faq-item {
  transition: 0.3s;
}

.faq-item:hover {
  transform: scale(1.01);
}

.faq-question {
  font-size: 1rem;
}

/* =========================
   MAP PREMIUM LOOK
========================= */

.map-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* =========================
   FOOTER UPGRADE
========================= */

footer {
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}
/* =========================
   STICKY HEADER
========================= */

header {
  position: sticky;
  top: 0;
  z-index: 999;
}
/* =========================
   PREMIUM POLISH LAYER (NO LAYOUT CHANGE)
========================= */

/* Global typography upgrade */
body {
  font-family: Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Better spacing rhythm */
p {
  color: #444;
  line-height: 1.75;
  font-size: 1rem;
}

/* Section breathing room */
.section {
  padding: 90px 20px;
}

/* Headings feel more premium */
h1, h2, h3 {
  letter-spacing: -0.6px;
}

/* Smooth hover transitions everywhere */
a, button, .card, .info-card, .process-card {
  transition: all 0.25s ease;
}


header {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}


.hero h1 {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  color: #eee;
}

/* =========================
   BUTTON POLISH
========================= */

.primary-btn {
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.primary-btn:hover {
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

.card,
.info-card,
.process-card {
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.card:hover,
.info-card:hover,
.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}

.info-card h3 {
  font-size: 1.15rem;
}

.info-card p {
  opacity: 0.85;
}

.about-section {
  background: linear-gradient(to bottom, #fafafa, #ffffff);
}

.map-image {
  border: 1px solid rgba(245,197,24,0.3);
  box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.faq-item {
  border: 1px solid rgba(0,0,0,0.06);
}

.faq-question {
  padding: 18px;
}

footer {
  letter-spacing: 0.3px;
  font-size: 0.95rem;
  opacity: 0.95;
}
.hero-content {
  animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
:root {
  --yellow: #f5c518;
}



.hero-overlay {
  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.65)
  );
}

.hero h1 {
  background: linear-gradient(160deg,var(--yellow) ,#fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.primary-btn {
  background: var(--yellow);
  color: #111;
  border: 2px solid transparent;
  font-weight: 800;
}

.primary-btn:hover {
  background: #111;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}


.card,
.info-card,
.process-card {
  border-top: 4px solid var(--yellow);
}


.card:hover,
.info-card:hover,
.process-card:hover {
  box-shadow: 0 20px 55px rgba(245, 197, 24, 0.25);
}

.info-card:hover {
  background: #111;
  color: white;
}

.info-card:hover h3 {
  color: var(--yellow);
}



.map-image {
  border: 2px solid rgba(245, 197, 24, 0.5);
}


nav a.active {
  color: var(--yellow);
}

nav a.active::after {
  background: var(--yellow);
}


.section h2::after {
  background: var(--yellow);
  width: 90px;
}


.why-title::after {
  background: var(--yellow);
}


footer {
  border-top: 4px solid var(--yellow);
}


a:hover {
  color: var(--yellow);
}
/* =========================
   PREMIUM YELLOW THEME POLISH
========================= */

/* Background upgrade (subtle depth) */
body {
  background: linear-gradient(to bottom, #ffffff, #f7f7f7);
}

/* ================= HEADER UPGRADE ================= */
header {
  background:#000(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--yellow);
}

/* Active nav indicator feel */
nav a {
  padding: 6px 10px;
  border-radius: 6px;
}

nav a:hover {
  background: rgba(245, 197, 24, 0.12);
}

/* ================= HERO IMPROVEMENT ================= */
.hero-overlay {
  background: linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.75)
  );
}

/* Make hero feel more “luxury” */
.hero h1 {
  text-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ================= CARDS (BIG UPGRADE) ================= */
.card,
.info-card,
.process-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.05);
}

/* stronger hover glow */
.card:hover,
.process-card:hover {
  box-shadow: 0 25px 60px rgba(245, 197, 24, 0.18);
}

/* ================= INFO CARDS ================= */
.info-card {
  position: relative;
}

/* subtle glow line */
.info-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--yellow);
  transition: 0.4s ease;
}

.info-card:hover::after {
  width: 100%;
}

/* ================= SECTION FEEL ================= */
.section {
  position: relative;
}

/* soft floating divider */
.section::before {
  opacity: 0.35;
}

/* ================= BUTTON UPGRADE ================= */
.primary-btn {
  letter-spacing: 0.3px;
}

.primary-btn:active {
  transform: scale(0.97);
}

/* ================= FOOTER CLEAN ================= */
footer {
  background: #0a0a0a;
}
/* =========================
   REMOVE THE "VOID" FEEL
   (MORE DENSE / CONNECTED UI)
========================= */

/* Reduce huge vertical gaps */
.section {
  padding: 60px 20px; /* was 90px */
}

/* Bring sections closer together visually */
.section + .section {
  padding-top: 40px;
}

/* Make headings less spaced-out */
.section h2 {
  margin-bottom: 10px;
}

/* Reduce paragraph airiness */
p {
  margin-bottom: 10px;
  line-height: 1.55;
}

/* Cards feel tighter and more structured */
.cards,
.process-grid,
.info-cards {
  margin-top: 20px;
  gap: 15px;
}

/* Reduce card padding slightly */
.card,
.info-card,
.process-card {
  padding: 18px;
}

/* Process cards less "floating apart" */
.process-card img {
  height: 160px;
}

/* About section: remove excess breathing room */
.about-container {
  gap: 20px;
}

/* Map section tighter */
.map-image {
  margin: 20px auto 0;
}

/* FAQ tighter spacing */
.faq-section {
  padding: 25px;
  margin-top: 40px;
}

.faq-item {
  margin: 6px auto;
}

/* HERO feels less empty */
.hero {
  height: 80vh;
}

/* Make proof section less isolated */
.why-proof {
  margin-top: 10px;
}

/* Remove extra empty feeling between blocks */
br {
  display: none;
}
/* =========================
   REMOVE THE "VOID" FEEL
   (MORE DENSE / CONNECTED UI)
========================= */

/* Reduce huge vertical gaps */

/* Bring sections closer together visually */


/* Make headings less spaced-out */
.section h2 {
  margin-bottom: 10px;
}

/* Reduce paragraph airiness */
p {
  margin-bottom: 10px;
  line-height: 1.55;
}

/* Cards feel tighter and more structured */
.cards,
.process-grid,
.info-cards {
  margin-top: 20px;
  gap: 15px;
}

/* Reduce card padding slightly */
.card,
.info-card,
.process-card {
  padding: 18px;
}

/* Process cards less "floating apart" */
.process-card img {
  height: 160px;
}

/* About section: remove excess breathing room */
.about-container {
  gap: 20px;
}

/* Map section tighter */
.map-image {
  margin: 20px auto 0;
}

/* FAQ tighter spacing */
.faq-section {
  padding: 25px;
  margin-top: 40px;
}

.faq-item {
  margin: 6px auto;
}

/* HERO feels less empty */
.hero {
  height: 80vh;
}

/* Make proof section less isolated */
.why-proof {
  margin-top: 10px;
}

/* Remove extra empty feeling between blocks */
br {
  display: none;
}
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

   
}

/* VIDEO BACKGROUND */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.45);

    z-index: 2;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 3;

    color: white;
    max-width: 850px;
    padding: 0 20px;
}
.hero-image {
    position: absolute;
    top: 0;
    left: 0;


    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;
}
/* Replace your current font-family with this */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito Sans', sans-serif;
}
.footer-contact{
    margin-top: 18px;
    font-size: 15px;
    color: white;
    font-weight: 600;
}

.footer-contact a{
    color: #FFD700;
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-contact a:hover{
    color: white;
}
.map-image {
    width: 100%;
    max-width: 1100px;
    margin: 30px auto;
    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.map-image img {
    width: 100%;
    height: auto;

    display: block;
    object-fit: contain;
}