* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0B0B0B;
  color: white;
  overflow-x: hidden;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background:     
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.75)),
    url('images/bg.png') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  padding: 60px;
}

.hero-content h1 {
  font-size: 60px;
  color: #C8A96A;
}

/* BUTTONS */
.btn {
  text-decoration: none;
  background: #C8A96A;
  color: black;
  padding: 12px 24px;
  border-radius: 30px;
  display: inline-block;
}

.btn:hover {
  background: #b89658;
  color: black;
}

.btn-secondary {
  margin-top: 30px;
}
a {
  outline: none;
}

.btn, .cta {
  border: none;
}

/* SERVICES */
.services-section {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px;
}

.service-card {
  display: flex;
  justify-content: space-between;
  background: #121212;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 10px;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1.2;
  object-fit: cover;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;

  background: transparent;
  transition: 0.3s ease;
}

/* état après scroll */
.navbar.scrolled {
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #C8A96A;
}

.nav-links .cta {
  background: #C8A96A;
  color: black;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
}

.nav-links .cta:hover {
  background: #b89658;
  color: black;
}

.logo img {
  height: 50px;
  width: 50px;           /* important pour le rond */
  object-fit: cover;
  border-radius: 50%;    /* rend rond */
}

/* SECTION CONTACT */
.contact-section {
  background: black;
}

/* MAP */
.map {
  width: 100%;
  height: 300px;
  border: none;
  filter: grayscale(50%) brightness(0.7);
}

/* GRID INFOS */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 60px;
}

/* TITRES */
.contact-grid h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* TEXTE ET LIENS  */
.contact-grid p,
.contact-grid a {
  color: #aaa;
  text-decoration: none;
}

.contact-grid a:hover {
  color: #C8A96A;
}


@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
 
#tarifs {
  scroll-margin-top: 90px;
}

footer {
 text-align: center;
  padding: 15px 10px;
  font-size: 13px;
  color: #777;

  background: #000;
}

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 15px;
  }

  .hero {
    background-attachment: scroll;
    background-position: center top;
    padding: 20px;
    height: 100vh;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .services-section {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .map {
    height: 200px;
  }
}