/* assets/css/main.css */

/* Général */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Top Banner Livraison */
.top-banner {
  background-color: #F4A300;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-weight: 600;
  font-size: 14px;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.logo {
  height: 60px;
}
.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: color 0.3s;
}
.nav a:hover {
  color: #D64529;
}

/* Hero */
.hero {
  background: url('../images/hero-background.jpg
