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

/* TYPO */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: #222;
  background: #fff;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 22px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-size: 0.9rem;
}

.nav-btn {
  background: #d4a373;
  color: white;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 100px;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1509440159596-0249088772ff') center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 90px;
}

.overlay {
  background: rgba(0,0,0,0.45);
  padding: 60px;
  text-align: center;
  color: white;
}

.overlay h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  background: #d4a373;
  color: white;
  text-decoration: none;
  border-radius: 100px;
}

.btn.dark {
  background: black;
}

/* SECTIONS */
.section {
  padding: 120px 20px;
  text-align: center;
}

.section.light {
  background: #f7f7f7;
}

.section h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.section p {
  color: #555;
}

/* 🖼️ PREMIUM GALLERY (style Awwwards / éditorial) */
.gallery-section {
  padding: 100px 0;
  background: #fff;
}

.gallery-track {
  display: flex;
  gap: 40px;
  overflow-x: auto;

  padding: 0 60px;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* hide scrollbar */
.gallery-track::-webkit-scrollbar {
  display: none;
}

/* 👉 STYLE PREMIUM IMPORTANT */
.gallery-item {
  flex: 0 0 auto;

  width: 60%;
  height: 420px;

  object-fit: cover;

  border-radius: 6px;

  scroll-snap-align: center;

  transition: transform 0.5s ease, opacity 0.5s ease;

  opacity: 0.85;
}

/* focus visuel (effet luxe subtil) */
.gallery-item:hover {
  transform: scale(1.02);
  opacity: 1;
}

/* CONNECT */
.connect {
  padding: 140px 20px;
  text-align: center;
}

.connect h2 {
  font-size: 2.6rem;
}

.connect p {
  color: #666;
  margin: 20px 0 30px;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-btn {
  border: 1px solid #222;
  padding: 10px 24px;
  text-decoration: none;
  color: #222;
  transition: 0.3s;
  border-radius: 100px;
}

.social-btn:hover {
  background: #222;
  color: white;
}

/* FOOTER */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 40px;
  font-size: 0.8rem;
}

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

  .nav-links {
    display: none;
  }

  .overlay h1 {
    font-size: 2.2rem;
  }

  .gallery-item {
    width: 85%;
    height: 300px;
  }

  .social-buttons {
    flex-direction: column;
  }
}