
/*
Theme Name: Mon Site Perso
Author: Moi
Description: Thème personnalisé pour French Panini Master
Version: 1.0
*/
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}
header {
  background: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
}
.hamburger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.hamburger div {
  height: 4px;
  background: #333;
}
.nav-menu {
  display: none;
  flex-direction: column;
}
.nav-menu.active {
  display: flex;
}
main {
  text-align: center;
  padding: 2rem 1rem;
}
.logo {
  width: 120px;
}
.hero-section {
  width: 100%;
  height: 200px;
  background: url('https://via.placeholder.com/1200x300') center/cover no-repeat;
  margin: 2rem 0;
}
.order-btn {
  background: #e63946;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
}
footer {
  text-align: center;
  padding: 1rem;
  background: #f8f8f8;
}
