/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.5;
}

header {
  background-color: #333;
  color: #fff;
  padding: 20px;
}

header h1 {
  margin: 0;
}

nav {
  background-color: #666;
  padding: 10px;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
}

nav ul li a {
  color: #fff;
  padding: 10px;
  text-decoration: none;
}

main {
  margin: 20px;
}

h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

section {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

section img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 4px;
}

section p {
  margin: 10px 0;
}

.price {
  font-weight: bold;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.dish-details table {
  margin-bottom: 40px; /* Ajoute une marge en bas du tableau */
}

.dish-details th,
.dish-details td {
  padding: 20px; /* Ajoute un espace intérieur aux cellules du tableau */
}

.dish-details th {
  text-align: left; /* Aligne le texte à gauche dans les en-têtes de colonne */
}

.dish-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dish-image {
  margin-right: 20px;
}

.dish-info table {
  margin-bottom: 10px;
}

.dish-info th,
.dish-info td {
  padding: 5px 10px;
}

.price {
  margin-top: 10px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 100px; /* Ajustez la largeur du logo selon vos besoins */
  height: auto;
}
.opening-hours,
.permanent-menu,
.kids-menu {
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 10px;
  text-align: left;
}

th {
  background-color: #f2f2f2;
}
.opening-hours {
  background-color: #f2f2f2;
  padding: 20px;
}

.opening-hours h3 {
  margin-bottom: 10px;
  text-align: center;
  color: #333;
}

.opening-hours ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.opening-hours li {
  margin-bottom: 10px;
}

.opening-hours .day {
  font-weight: bold;
}

.opening-hours .time {
  color: #666;
}

.menu {
  margin-bottom: 20px;
}

.menu h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.menu table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.menu table th,
.menu table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

.menu table th {
  background-color: #f9f9f9;
}

.menu table td {
  vertical-align: top;
}

.wine-section {
  margin-bottom: 20px;
}

.wine-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.wine-section table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.wine-section table th,
.wine-section table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

.wine-section table th {
  background-color: #f9f9f9;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

header {
    position: relative;
}

nav {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}

.menu-text {
    font-size: 18px;
    font-weight: bold;
}

img {
    display: block;
    width: 100%;
    height: auto;
}
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

header {
  position: relative;
}

nav {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
}

.menu-text {
  font-size: 18px;
  font-weight: bold;
}

.image-container {
  display: flex;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background-color: #f5f5f5;
}

img {
  display: block;
  width: 80%; /* Ajuster la largeur de l'image selon vos besoins */
  height: auto;
  border-radius: 5px;
}
