body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}
.hero-section {
    background-color: #343a40;
    color: white;
    padding: 4rem 0;
    text-align: center;
}
.section-title {
    border-bottom: 2px solid #dc3545;
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}
.about-section, .history-section, .menu-section {
    padding: 3rem 0;
}
.carousel-item img {
    height: 400px;
    object-fit: cover;
}
.menu-card {
    transition: transform 0.3s;
    margin-bottom: 1.5rem;
}
.menu-card:hover {
    transform: translateY(-5px);
}
.footer {
    background-color: #343a40;
    color: white;
    padding: 2rem 0;
}
.food-category {
    margin-top: 2rem;
    margin-bottom: 3rem;
}
.category-title {
    border-left: 4px solid #dc3545;
    padding-left: 10px;
    margin-bottom: 1.5rem;
}
.map-container {
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}
.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-img-top {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.warning-container {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #ffeb3b, #ff5722);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    max-width: 600px;
    margin: 20px auto;
  }
  
  .warning-icon {
    margin-right: 16px;
    flex-shrink: 0;
  }
  
  .warning-text {
    font-size: 16px;
    font-weight: bold;
    color: #3c0000;
  }
  
  /* Modal Styles */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  
  .modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .modal-container {
    width: 100%;
    max-width: 500px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s;
  }
  
  .modal-overlay.active .modal-container {
    transform: scale(1);
  }
  
  .modal-header {
    background: linear-gradient(to right, #ff9800, #f44336);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
  }
  
  .modal-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    margin-left: 12px;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .modal-footer {
    background: #f9f9f9;
    padding: 12px 20px;
    text-align: right;
    border-top: 1px solid #eee;
  }
  
  .modal-button {
    background: #ff9800;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
  }