/* PANIER — Fruits Décoratifs — Luxe Blanc */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --white: #ffffff;
  --off-white: #fafafa;
  --cream: #f5f3f0;
  --charcoal: #1a1a1a;
  --dark: #2d2d2d;
  --gray: #6b6b6b;
  --light-gray: #e8e8e8;
  --accent: #8B7355;
  --accent-light: #A89070;
  --gold: #C8A96E;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 20px 5%;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 14px 5%;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.4s ease;
}
.navbar.scrolled .nav-logo { color: var(--charcoal); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 13px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--charcoal); }
.navbar.scrolled .nav-links a:hover { color: var(--accent); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span {
  display: block; width: 28px; height: 2px;
  background: var(--white); transition: all 0.3s ease;
}
.navbar.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE MENU */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0;
  width: 100%; height: 100vh;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column; justify-content: center; align-items: center;
  gap: 30px; z-index: 999;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  color: var(--charcoal); text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 400;
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--accent); }

/* HERO */
.hero {
  height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?w=1600') center/cover no-repeat;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.5));
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px; padding: 0 20px;
}
.hero-badge {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 30px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400; color: var(--white);
  line-height: 1.1; margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p {
  font-size: 16px; color: rgba(255,255,255,0.8);
  line-height: 1.8; max-width: 520px; margin: 0 auto 40px;
}
.hero-cta {
  display: inline-block;
  padding: 16px 48px;
  background: var(--white);
  color: var(--charcoal);
  text-decoration: none;
  font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  transition: all 0.3s ease;
}
.hero-cta:hover {
  background: var(--accent);
  color: var(--white);
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute; bottom: 40px;
  left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator span {
  display: block; width: 1px; height: 60px;
  background: rgba(255,255,255,0.4);
  position: relative; overflow: hidden;
}
.scroll-indicator span::after {
  content: ''; position: absolute; top: -100%;
  width: 100%; height: 100%; background: var(--white);
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown { 0% { top: -100%; } 100% { top: 100%; } }

/* SECTIONS */
section { padding: 100px 5%; }

.section-label {
  font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400; color: var(--charcoal);
  margin-bottom: 20px;
}
.section-desc {
  font-size: 15px; color: var(--gray);
  line-height: 1.8; max-width: 600px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }

/* PHILOSOPHIE */
.philosophie { background: var(--off-white); }
.philo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; margin-top: 60px;
}
.philo-card {
  text-align: center; padding: 50px 30px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: all 0.4s ease;
}
.philo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  border-color: var(--accent);
}
.philo-icon {
  margin-bottom: 24px;
}
.philo-icon svg { stroke: var(--accent); }
.philo-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 400;
  margin-bottom: 14px; color: var(--charcoal);
}
.philo-card p {
  font-size: 14px; color: var(--gray); line-height: 1.7;
}

/* PRODUITS / CREATIONS */
.creations { background: var(--white); }
.creations-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.creation-card {
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}
.creation-card:hover { transform: translateY(-4px); }
.creation-card img {
  width: 100%; height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.creation-card:hover img { transform: scale(1.05); }
.creation-info {
  padding: 24px 0;
}
.creation-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 400;
  color: var(--charcoal); margin-bottom: 8px;
}
.creation-info p {
  font-size: 13px; color: var(--gray); line-height: 1.6;
  margin-bottom: 10px;
}
.creation-price {
  font-size: 16px; font-weight: 600;
  color: var(--accent);
}

/* GALERIE */
.galerie { background: var(--off-white); }
.galerie-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.galerie-item {
  overflow: hidden; cursor: pointer;
  position: relative;
}
.galerie-item img {
  width: 100%; height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.galerie-item:hover img { transform: scale(1.08); }
.galerie-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
}
.galerie-item:hover::after { background: rgba(0,0,0,0.15); }

/* REASSURANCE */
.reassurance {
  background: var(--white);
  padding: 80px 5%;
}
.reassurance-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.reassurance-item {
  text-align: center; padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.reassurance-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.reassurance-item svg {
  stroke: var(--accent);
  margin-bottom: 16px;
}
.reassurance-item h4 {
  font-size: 14px; font-weight: 600;
  color: var(--charcoal); margin-bottom: 6px;
}
.reassurance-item p {
  font-size: 13px; color: var(--gray);
}

/* CONTACT */
.contact { background: var(--off-white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; margin-top: 40px;
}
.contact-info-block { display: flex; flex-direction: column; gap: 30px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item svg { stroke: var(--accent); flex-shrink: 0; margin-top: 2px; }
.contact-item h4 {
  font-size: 14px; font-weight: 600;
  color: var(--charcoal); margin-bottom: 4px;
}
.contact-item p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.contact-map {
  border-radius: 8px; overflow: hidden;
  height: 350px;
}
.contact-map iframe {
  width: 100%; height: 100%; border: 0;
}

/* FOOTER */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 60px 5%;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px; color: var(--white);
  letter-spacing: 2px; margin-bottom: 16px;
}
.footer p { font-size: 13px; line-height: 1.8; }
.footer-copy {
  margin-top: 30px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
}

/* LIGHTBOX */
.lightbox {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; }
.lightbox img { max-width: 90%; max-height: 90%; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: #fff; font-size: 36px; cursor: pointer;
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  animation: revealFallback 0.8s ease 0.3s forwards;
}
.reveal.visible { opacity: 1; transform: translateY(0); animation: none; }
@keyframes revealFallback { to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .philo-grid { grid-template-columns: 1fr; gap: 24px; }
  .creations-grid { grid-template-columns: repeat(2, 1fr); }
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
  .reassurance-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 70px 5%; }
  .hero h1 { font-size: 36px; }
  .creations-grid { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: 1fr 1fr; }
  .galerie-item img { height: 200px; }
  .reassurance-grid { grid-template-columns: 1fr 1fr; padding: 40px 5%; }
  .philo-card { padding: 30px 20px; }
  .creation-card img { height: 280px; }
  .contact-map { height: 250px; }
}
