@charset "utf-8";
/* CSS Document */
  /* ===== RESET & BASE ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --brun: #734924;
    --miel: #D98D30;
    --creme: #FDF7EA;
    --brun-light: #a06535;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Lato', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--creme);
    color: var(--brun);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  img { max-width: 100%; display: block; }

  /* ===== NAV ===== */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--creme);
    border-bottom: 1.5px solid var(--miel);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
  }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--brun);
  display: none;
}

  .nav-logo img {
    height: 52px;
    width: auto;
  }

  .nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--brun);
    opacity: 0.75;
    transition: opacity .2s;
  }

  .nav-links a:hover { opacity: 1; color: var(--miel); }

  /* hamburger hidden on mobile initially */
  .nav-toggle { display: none; }

  /* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 280px;
  overflow: hidden;
}

  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(115,73,36,0.05) 0%,
      rgba(115,73,36,0.0) 40%,
      rgba(115,73,36,0.65) 100%
    );
  }

  .hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    color: var(--creme);
    text-align: center;
  }

  .hero-content h1 {
    font-family: var(--serif);
    font-size: clamp(22px, 5.5vw, 42px);
    font-weight: 400;
    line-height: 1.25;
    text-shadow: 0 1px 6px rgba(0,0,0,.35);
    margin-bottom: 8px;
  }

  .hero-content p {
    font-size: clamp(10px, 2vw, 13px);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: 0.88;
    text-shadow: 0 1px 4px rgba(0,0,0,.3);
  }

  /* ===== SECTIONS COMMON ===== */
  section {
    padding: 0px;
  }

  .section-title {
    font-family: var(--serif);
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 400;
    color: var(--brun);
    text-align: center;
    margin-bottom: 6px;
  }

  .divider {
    width: 56px;
    height: 2px;
    background: var(--miel);
    margin: 10px auto 32px;
  }

  /* ===== MIELS GRID ===== */
  
  .mention-poids {
  text-align: center;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--miel);
  margin-bottom: 28px;
  opacity: 0.8;
}
  
  #miels { background: var(--creme); padding: 48px 20px;  }

  .miels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .miel-card {
    background: #fff;
    border: 1px solid rgba(217,141,48,.35);
    border-radius: 6px;
    padding: 20px 14px 18px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
    cursor: default;
  }

  .miel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(115,73,36,.12);
  }

  .miel-icon {
    width: 52px;
    height: 52px;
    background: var(--miel);
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }

  .miel-card h3 {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--brun);
    margin-bottom: 5px;
  }

  .miel-card p {
    font-size: 12px;
    color: var(--brun);
    opacity: 0.7;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .price-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--miel);
    border: 1px solid var(--miel);
    padding: 3px 12px;
    border-radius: 2px;
  }

  /* ===== À PROPOS ===== */
  #apropos {
    background: var(--brun);
    color: var(--creme);
    padding: 52px 20px;
  }

  #apropos .section-title { color: var(--creme); }
  #apropos .divider { background: var(--miel); }

  .about-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    text-align: center;
  }

  .about-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--miel);
    background: var(--brun-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.85;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto;
  }

  .about-facts {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 18px;
    flex-wrap: wrap;
  }

  .about-avatar {
  	object-fit: cover;
  }
  
  .fact {
    text-align: center;
  }

  .fact strong {
    display: block;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--miel);
  }

  .fact span {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.65;
  }

  /* ===== CONTACT / FOOTER ===== */
  #contact {
    background: var(--creme);
    text-align: center;
    padding: 48px 20px;
    border-top: 2px solid var(--miel);
  }

  #contact .section-title { margin-bottom: 6px; }

  .contact-info {
    margin: 0 auto;
    max-width: 340px;
  }

  .contact-info p {
    font-size: 14px;
    color: var(--brun);
    opacity: 0.85;
    line-height: 2;
  }

  .contact-info a {
    color: var(--miel);
    text-decoration: none;
    font-weight: 700;
  }

  .contact-badge {
    display: inline-block;
    margin-top: 20px;
    background: var(--brun);
    color: var(--creme);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 3px;
  }
  
  .footer-logo {
    margin: 32px auto 0;
    width: 80px;
    opacity: 0.45;
  }

  .footer-copy {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.4;
    margin-top: 12px;
  }

  /* ===== TABLET (480px+) ===== */
  @media (min-width: 480px) {
    nav { padding: 14px 32px; }
	.nav-title { display: block; }
    section { padding: 0; }
	#miels { padding: 56px 32px; }
    .miels-grid { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
    .about-inner { flex-direction: row; text-align: left; align-items: flex-start; }
    .about-text p { margin: 0; }
    .about-facts { justify-content: flex-start; }
  }

  /* ===== DESKTOP (768px+) ===== */
  @media (min-width: 768px) {
    nav { padding: 16px 48px; }
    .nav-logo img { height: 60px; }
	section {padding :0}
    #apropos { padding: 72px 48px; }
    .miels-grid {
      grid-template-columns: repeat(3, 1fr);
      max-width: 900px;
      margin: 0 auto;
    }
    .about-inner { max-width: 820px; margin: 0 auto; }
    .hero-content h1 { margin-bottom: 12px; }
  }

  /* ===== WIDE (1024px+) ===== */
  @media (min-width: 1024px) {
    nav { padding: 16px 80px; }
    section { padding:0; }
    #apropos { padding: 80px 80px; }
    .miels-grid { grid-template-columns: repeat(3, 1fr); max-width: 1000px; }
  }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-content { animation: fadeUp .8s ease both; animation-delay: .2s; opacity: 0; }

  .miel-card {
    opacity: 0;
    animation: fadeUp .5s ease both;
  }
  .miel-card:nth-child(1) { animation-delay: .1s; }
  .miel-card:nth-child(2) { animation-delay: .2s; }
  .miel-card:nth-child(3) { animation-delay: .3s; }
  .miel-card:nth-child(4) { animation-delay: .4s; }
  .miel-card:nth-child(5) { animation-delay: .5s; }
