/* General Body and Font Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdfdfd;
  margin: 0;
  padding: 0;
  color: #333;
}
/* Header and Footer Styles */
header {
  background-color: #b71c1c;
  color: #fff;
  padding: 1.5rem 2rem;
  text-align: center;
  border-bottom: 5px solid #8e1616;
}
header h1 {
  margin: 0;
}
footer {
  text-align: center;
  background: #333;
  color: #fff;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: 2rem;
}
/* Main Content Layout */
.link-section {
  background-color: #f4b3b3;
  text-align: center;
  border-style: groove;
  border-color: #000000;
  border-radius: 2px;
  padding: 1rem;
  display: flex;
}
.col{
  flex: 1;
  background-color: aquamarine;
  padding: 1rem;
  text-align: center;
}
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
.menu-section {
  background-color: #fff;
  margin-bottom: 3rem;
}
.menu-section h2 {
  border-left: 8px solid #b71c1c;
  padding-left: 12px;
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #444;
}
.dish-description {
    font-size: 0.9rem;
    color: #666;
    padding: 0 15px 15px 15px;
    line-height: 1.4;
    text-align: center;
}
.dish-name {
  padding: 15px 15px 5px 15px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dish-category {
  margin-bottom: 1.5rem;
}
.dish-category h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #b71c1c;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.5rem;
}
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.dish-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.dish-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.dish-name {
  padding: 15px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Order Page List Styles */
.order-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #eee;
}
.order-list label {
    display: flex;
    align-items: center;
    cursor: pointer;
    flex-grow: 1;
}
.order-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 15px;
}
.order-list input[type="checkbox"] {
    margin-right: 10px;
}
.item-price {
    color: #333;
    font-weight: bold;
    margin-left: 1rem;
    white-space: nowrap;
}
/* Form Styles (checkout.html) */
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
}
.form-group textarea {
    height: 150px;
    resize: vertical;
}
/* Action Buttons */
.action-button-container {
    text-align: center;
    padding: 2rem;
    background-color: #f5f5f5;
}
.action-link {
    background-color: #1a73e8;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-block;
}
.action-link:hover {
    background-color: #155ab6;
    transform: translateY(-2px);
}
.submit-button {
    display: block;
    width: 100%;
    background-color: #b71c1c;
    color: white;
    padding: 15px;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 2rem;
}
.submit-button:hover {
    background-color: #8e1616;
}
/* Responsive Design for smaller screens */
@media (max-width: 900px) {
  .dish-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media (max-width: 600px) {
  .dish-grid {
    grid-template-columns: 1fr;
  }
  .content-wrapper {
    padding: 1rem;
  }
}