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

body {
  font-family: 'Inter', sans-serif;
  color: white;
  background-color: #161A35;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('/background.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background-position 0.2s ease-out;
    max-width: 100vh;
    margin: 0 auto;
}

/* Overlay luxe */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10,20,40,0.6), rgba(10,20,40,0.9));
  top: 0;
  left: 0;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 900px;

  /*background: #161A35;
  background: linear-gradient(rgba(10,20,40,0.6), rgba(10,20,40,0.8));
  */
}

.logo {
  width: 180px;
  margin-bottom: 20px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2rem;
  color: #d4af37;
  margin-bottom: 20px;
}

.services,
.locations {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 10px;
}

/* CTA */
.cta {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

.primary {
  background: linear-gradient(45deg, #d4af37, #b8962e);
  color: white;
}

.secondary {
  border: 1px solid #d4af37;
  color: #d4af37;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* SECTION */
.content {
  padding: 60px 20px;
  text-align: center;
}

.content h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }

  .logo {
    width: 140px;
  }

  .btn {
    width: 100%;
  }

  .cta {
    flex-direction: column;
  }
}


.footer {
  background: #081220;
  color: white;
  padding: 60px 20px 20px;
  font-size: 0.95rem;
}

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

/* BLOCS */
.footer h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.footer h3 {
  margin-bottom: 10px;
  color: #d4af37;
  font-size: 1rem;
}

/* TEXTE */
.tagline {
  color: #d4af37;
  margin-bottom: 10px;
}

.description {
  opacity: 0.8;
  line-height: 1.5;
  max-width: 400px;
}

/* CONTACT */
.footer-contact a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-contact a:hover {
  color: #d4af37;
}

/* SOCIAL */
.footer-social a {
  display: inline-block;
  margin-right: 10px;
  border: 1px solid #d4af37;
  padding: 6px 12px;
  border-radius: 4px;
  color: #d4af37;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #d4af37;
  color: #081220;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  opacity: 0.7;
}

.locations {
  margin-top: 5px;
  font-size: 0.85rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .description {
    margin: 0 auto;
  }

  .footer-social a {
    margin-bottom: 10px;
  }
}