:root {
  --mammamia_color: #cdb081;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  padding-top: 120px;
}

.navbar {
  background-color: transparent !important;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--mammamia_color) !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
  font-weight: 500;
  margin-left: 1rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

footer {
  background-color: #111;
  color: #aaa;
  text-align: center;
  padding: 2rem 0;
}

/* Hamburger button */
.navbar-custom {
  position: fixed;
  top: 0;         /* Collé en haut */
  left: 0;        /* Collé à gauche */
  right: 0;       /* Collé à droite */   
  z-index: 1001;
  background: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px; 
}

.hamburger {
  width: 30px;
  height: 22px;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
	  margin-right: 30px;

}

.hamburger span {
  height: 4px;
  background: var(--mammamia_color);
  border-radius: 4px;
  transition: 0.3s;
}

.logo-left {
  height: 100px;
  width: auto;
  cursor: pointer;
  margin-top: 30px;
  margin-left: 30px;
}

/* Menu overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.95);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.menu-overlay.active {
  display: flex;
}

.menu-overlay ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.menu-overlay ul li {
  margin: 1rem 0;
}

.menu-overlay ul li a {
  font-size: 2rem;
  color: var(--mammamia_color);
  text-decoration: none;
  font-weight: bold;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 3rem;
  color: white;
  cursor: pointer;
}

h1, .menu-category {
  font-family: 'Titan One', cursive;
  color: var(--mammamia_color);
}

.menu-category {
  font-size: 2rem;
  font-size: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--mammamia_color);
  padding-bottom: 0.5rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px dashed #ccc;
}

.menu-item h4 {
  margin: 0;
  font-weight: 700;
}

.menu-item > div:first-child {
  max-width: 70%; /* Limite la largeur du bloc titre + description */
  flex-shrink: 0;
}

.menu-item p {
  word-wrap: break-word;
  white-space: normal;
  color: #aaa;
}

.price {
  font-weight: bold;
  font-size: 1rem;
  color: #FFFFFF;
}

.price-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #fff;
}

@media (max-width: 768px) {
  .menu-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-list {
    align-items: flex-start;
    margin-top: 0.5rem;
  }

  .price-list div {
    justify-content: flex-start;
    gap: 1rem;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px); 
  }
}/* CSS Document */

