/* 🌟 STYLE GLOBAL */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* ✨ TITRES ÉLÉGANTS */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  color: #1a1a1a;
}

/* 🎂 BOUTONS MODERNES */
button, .btn {
  background-color: #C9A84C;
  color: white;
  border-radius: 30px;
  padding: 12px 25px;
  border: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

/* Effet au survol */
button:hover, .btn:hover {
  background-color: #b8963f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* 📦 SECTIONS AÉRÉES */
section {
  padding: 60px 20px;
}

/* 🖼️ IMAGES PLUS PRO */
img {
  border-radius: 15px;
}

/* 💎 CARTES (produits / blocs) */
.card, .product {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

/* Effet hover cartes */
.card:hover, .product:hover {
  transform: translateY(-5px);
}

/* 🧭 MENU PLUS ÉLÉGANT */
nav a {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

nav a:hover {
  color: #C9A84C;
}

/* ✨ BANNIÈRE TEXTE */
.hero h1 {
  font-size: 42px;
  font-weight: 600;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* 📱 RESPONSIVE MOBILE */
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }

  section {
    padding: 40px 15px;
  }
}