
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  background-color: #fff8f2; 
  color: #333;
}


.navbar {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 10px 0;
  text-align: center;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar li {
  display: inline-block;
  margin: 0 15px;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: #ff7b00;
}


.intro {
  text-align: center;
  padding: 60px 20px;
}

.logo {
  width: 320px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s;
  border-radius: 90%;
   mix-blend-mode: darken;
}

.logo:hover {
  transform: scale(1.05);
}

h1 {
  margin-top: 20px;
  font-size: 2em;
  color: #ff7b00;
}

p {
  max-width: 600px;
  margin: 15px auto;
  font-size: 1rem;
  line-height: 1.5;
}


.emergency-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #c00000;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s;
}

.emergency-btn:hover {
  background-color: #a00000;
}


@media (max-width: 768px) {
  .navbar li {
    display: block;
    margin: 10px 0;
  }

  .logo {
    width: 100px;
  }

  p {
    width: 90%;
  }
}

.allergens-section {
  text-align: center;
  padding: 40px 20px;
}

.allergens-section h2 {
  color: #ff7b00;
  margin-bottom: 10px;
}

.allergens-section p {
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.allergen-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.allergen {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, border 0.2s;
}

.allergen:hover {
  transform: scale(1.1);
  border: 2px solid #ff7b00;
}

.allergen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.allergen.custom {
  background-color: #ff7b00;
  color: white;
  font-size: 2em;
  font-weight: bold;
  align-items: center;
  justify-content: center;
}


.selected-allergens {
  margin: 30px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.selected-allergens .badge {
  background-color: #ff7b00;
  color: white;
  padding: 8px 12px;
  border-radius: 50px;
  font-size: 0.9em;
}


.submit-btn {
  background-color: #ff7b00;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #e06600;
}


@media (max-width: 768px) {
  .allergen {
    width: 60px;
    height: 60px;
  }

  .allergens-section p {
    width: 90%;
  }
}

.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fff8f2;
  margin: 15% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-content h3 {
  margin-bottom: 15px;
  color: #ff7b00;
}

.modal-content input {
  width: 80%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.modal-content button {
  background-color: #ff7b00;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
}

.modal-content button:hover {
  background-color: #e06600;
}

.close-btn {
  float: right;
  font-size: 1.5em;
  cursor: pointer;
  color: #333;
}

.menu-section {
  text-align: center;
  padding: 40px 20px;
}

.menu-section h2 {
  color: #ff7b00;
  margin-bottom: 10px;
}

.menu-section p {
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}



.menu-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: left;
  margin-bottom: 20px;
}

.menu-card h3 {
  color: #ff7b00;
  margin-bottom: 10px;
}

.menu-card ul {
  list-style: none;
  padding: 0;
}

.menu-card li {
  font-weight: normal;  
  color: black;         
  margin-bottom: 3px;
}

.menu-card li.allergen {
  font-weight: normal;  
  color: black;
}


.menu-card li.allergen {
  font-weight: bold;    
  color: black;         
}
