*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}

body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  border-collapse: collapse;
  width: 100%;
}

input,
textarea {
  font: inherit;
  border: none;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

.navbar {
  background: #bf3014;
  color: white;
  padding: 12px 1rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-logo img {
  width: 150px;
}
.navbar-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.navbar-menu li a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  transition: 0.3s;
}
.navbar-menu li a:hover {
  color: #333;
}
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .navbar-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: #bf3014;
    width: 100%;
    padding: 1rem;
  }
  .navbar-toggle {
    display: block;
  }
  .navbar.active .navbar-menu {
    display: flex;
  }
}

footer {
  background: #0a0a0a;
  text-align: center;
  width: 100%;
  padding: 60px 0;
}
footer .contact {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-bottom: 60px;
}
footer .contact p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  footer .contact {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
footer .footer-info {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer .footer-info h2 {
  margin-bottom: 12px;
}
footer .footer-info .info {
  display: flex;
  justify-content: center;
  gap: 4px;
  align-items: center;
}
footer .footer-info .info p {
  margin-bottom: 0;
}

body {
  font-family: Arial, sans-serif;
  color: #fff;
  background: #0a0b0d url("../img/test.png") fixed no-repeat center center/cover;
  min-height: 100vh;
}

.page-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

#hero {
  position: relative;
  background: url("../img/DeNuit.jpg") no-repeat center/cover;
  color: white;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#hero .hero-wrapper {
  flex: 2;
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
}
#hero .hero-bottom {
  flex: 1;
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  #hero .hero-bottom {
    display: none;
  }
}
#hero h1 {
  font-size: 40px;
  margin-bottom: 18px;
}
#hero h2 {
  margin-bottom: 30px;
}
#hero p {
  font-size: 20px;
}
#hero .hero-content {
  flex: 2;
}
#hero .hero-content h1, #hero .hero-content h2, #hero .hero-content h3 {
  margin-bottom: 12px;
}
#hero .hero-content h2 {
  font-size: 30px;
  margin-bottom: 30px;
}
#hero .hero-content h3 {
  font-size: 24px;
}
@media (max-width: 767px) {
  #hero .hero-content {
    align-content: center;
    justify-content: center;
  }
}
#hero .avis {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  text-align: center;
}
#hero .avis h3 {
  margin-bottom: 12px;
}
#hero .avis a {
  text-decoration: underline;
}
@media (max-width: 767px) {
  #hero .avis {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
  }
}
#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
#hero #event_wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#hero #event_wrapper .today-evenement {
  flex: 1;
  background: #bf3014;
  padding: 12px;
  border-radius: 8px;
}
#hero #event_wrapper .today-evenement h2, #hero #event_wrapper .today-evenement h3 {
  margin-bottom: 2rem;
}

#menu {
  display: flex;
  gap: 20px;
  margin: 0 auto;
  max-width: 1400px;
}
#menu .menu-list {
  flex: 1;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 767px) {
  #menu .menu-list {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px;
  }
}
#menu .menu-list .menu-item-wrapper {
  flex: 1;
}
@media (max-width: 767px) {
  #menu .menu-list .menu-item-wrapper {
    width: 100%;
  }
}
#menu .menu-list .menu-item-wrapper .menu-item {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  background: #bf3014;
  border-radius: 8px;
}
#menu .menu-list .menu-item-wrapper .menu-item h3 {
  margin-bottom: 12px;
}
#menu .menu-list .menu-item-wrapper .menu-item p {
  font-size: 18px;
}

.plat-price {
  min-width: 80px;
  text-align: right;
}
.plat-price span {
  font-size: 20px;
  font-weight: bold;
}

.tooltip-icon {
  position: relative;
  display: inline-block;
  cursor: help;
}
.tooltip-icon .icon {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.tooltip-icon .tooltip-text {
  visibility: hidden;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}
.tooltip-icon:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.categorie_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  margin-top: 80px;
}
.categorie_wrapper .categorie {
  margin: 32px 0;
  padding: 0 20px;
}
.categorie_wrapper .categorie .category-header {
  position: relative;
  background: #bf3014;
  border-radius: 4px;
  margin-bottom: 36px;
}
.categorie_wrapper .categorie .category-header img {
  position: absolute;
  z-index: 2;
  height: 120px;
  top: -35px;
  left: 4px;
}
.categorie_wrapper .categorie .category-header .name {
  display: flex;
  justify-content: flex-end;
}
.categorie_wrapper .categorie .category-header .name h2 {
  position: relative;
  z-index: 3;
  padding: 12px 12px 12px 0;
  text-transform: uppercase;
  max-width: 289px;
  text-align: right;
}
.categorie_wrapper .categorie h3 {
  text-transform: uppercase;
}
.categorie_wrapper .categorie .plat-item {
  display: flex;
  justify-content: space-between;
  padding: 0 0 0 12px;
}
.categorie_wrapper .categorie .plat-item .boisson-detail {
  display: flex;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #c00;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.page_title {
  text-align: center;
  margin: 80px 0;
}
.page_title h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.spacing-page-title {
  margin-top: 180px;
}

@media (max-width: 767px) {
  .hero-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    padding: 190px 20px;
    text-align: center;
  }
  .hero-content {
    margin-bottom: 50px;
  }
}

/*# sourceMappingURL=style.css.map */
