/* General Styles */

body {
    /* font-family: 'Comic Sans MS', cursive, sans-serif; */
    background-color: #000;
    /* Light croissant-themed background */
    color: white;
    /* Dark brown for text */
    margin: 0;
    padding: 0;
}

header {
    background-color: #000;
    /* Soft orange */
    padding: 20px;
    text-align: center;
}

header .header-content p {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

header h1 {
    color: red;
    /* Warm orange */
    font-size: 3rem;
    margin: 10px 0;
}

.logo,
.halal-logo {
    height: 100px;
}

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #000;
    /* Light orange */
    padding: 10px;
}

nav button {
    background-color: red;
    /* Bright orange */
    border: none;
    border-radius: 25px;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

nav button:hover {
    background-color: #FF5722;
    /* Darker orange */
}

main {
    padding: 20px;
    background-color: white;
}

section {
    margin-bottom: 40px;
}

h2 {
    color: red;
    /* Warm orange */
    font-size: 2rem;
    margin-bottom: 20px;
}

.menu-item {
    display: flex;
    align-items: center;
    background-color: #000;
    /* Light croissant color */
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.menu-item img {
    height: 80px;
    width: 80px;
    border-radius: 10px;
    margin-right: 20px;
}

.item-info h3 {
    margin: 0;
    color: red;
    /* font-family: 'Montserrat', sans-serif !important; */
    /* Warm orange */
}

.item-info p {
    margin: 5px 0;
    color: white;
}

.calories {
    font-size: 14px;
    color: #6D4C41;
    /* Darker brown */
}

.price {
    font-weight: bold;
    color: red !important;
    /* Warm orange */
     /* font-family: 'Montserrat', sans-serif !important; */
}

footer {
    background-color: #000;
    /* Soft orange */
    text-align: center;
    padding: 10px;
    color: white;
    font-size: 1.2rem;
    margin-top: 20px;
}
.sticky-note {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #fff8b0, #ffe680);
  padding: 10px 14px;
  border: 1px solid #e0d85a;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: transform 0.2s ease;
}
.sticky-note:hover {
  transform: translateY(-2px);
}
.sticky-note .icon {
  margin-right: 6px;
  font-size: 1.1rem;
}

/* Responsive tweaks for small screens */
@media (max-width: 600px) {
  .sticky-note {
    bottom: 12px;
    right: 12px;
    padding: 6px 8px;
    font-size: 0.8rem;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  }
  .sticky-note .icon {
    margin-right: 4px;
    font-size: 0.9rem;
  }
}
