:root {
  --primary-color: #d10000;
  --background-color: #000;
  --text-color: #fff;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
   background-image: url('./bgg.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-color);
}

header {
  background-color: var(--background-color);
  text-align: center;
  padding: 1rem;
}

header h1 {
  color: var(--primary-color);
  margin: 0;
  font-size: 2.5rem;
}

header p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  color: #eee;
}

main {
  text-align: center;
  padding: 3rem 1rem;
}

main h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.class-box-container,
.meal-box-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.class-box,
.meal-box {
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--text-color);
  padding: 2rem 1.5rem;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  font-size: 1.2rem;
  width: 180px;
  cursor: pointer;
  transition: 0.3s ease;
}

.class-box:hover,
.meal-box:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: scale(1.05);
}

.class-box.selected,
.meal-box.selected {
  background-color: var(--primary-color);
  border-color: #fff;
  color: #fff;
}

#confirm-btn {
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

#confirm-btn:hover {
  background-color: #b00000;
}
