* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  background-color: #f4f8fb;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* about page */

.hero-banner {
  background-image: url("https://images.unsplash.com/photo-1542838132-92c53300491e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  height: 350px;
  display: flex;
  align-items: center;
}

.hero-text-box {
  background-color: #3d8bb8;
  color: white;
  padding: 20px 30px;
  display: inline-block;
  max-width: 500px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-text-box h1 {
  font-size: 1.5rem;
  font-weight: 500;
}

.info-section {
  padding: 60px 0;
}

.grid-3-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.info-col h2 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: #222;
  font-weight: 700;
}

.info-col p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: #3d8bb8;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #2a6a91;
}

@media (max-width: 768px) {
  .grid-3-cols {
    grid-template-columns: 1fr;
  }
}

/* menu page */

.menu-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.menu-item {
  background: white;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.item-details strong {
  font-size: 1.2rem;
  color: #3b8dbd;
  margin-bottom: 5px;
}

.item-details .description {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

.price {
  font-weight: bold;
  font-size: 1.2rem;
  color: #333;
  background-color: #eef;
  padding: 5px 10px;
  border-radius: 4px;
  margin-left: 20px;
  min-width: 80px;
  text-align: center;
}

/* hours page */

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.hour-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-top: 4px solid #3b8dbd;
}

.hour-card h2 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.time-box p {
  margin: 5px 0;
  color: #555;
}

.label {
  font-weight: bold;
  color: #3b8dbd;
}

.status-closed {
  color: #e74c3c;
  font-weight: bold;
  font-size: 1.2rem;
  border: 2px solid #e74c3c;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 4px;
  margin-top: 5px;
  transform: rotate(-5deg);
}

/* Highlight for Today */
.current-day {
  border-top: 6px solid #e67e22;
  background-color: #fff8f0;
  transform: scale(1.05);
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 10;
}

.current-day::after {
  content: "TODAY";
  position: absolute;
  top: -15px;
  right: -10px;
  background: #e67e22;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
