body {
  font-family: "proxima-nova", sans-serif;
  margin: 0;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.5s ease;
}

.container {
  max-width: 1000px;
  width: 90%;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .container {
    padding: 10px;
    width: 100%;
    border-radius: 0px;
    box-shadow: none;
  }
}

h1 {
  font-family: "carrotflower", cursive;
  font-size: 3.5em;
  color: #333;
  margin-bottom: 0;
  text-align: center;
}

#season-dates {
  margin-top: 10px;
  margin-bottom: 30px;
  font-style: italic;
  color: #666;
  text-align: center;
}

.season-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.season-nav-btn {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
}

#next-season-btn {
  background-color: #4caf50;
  color: white;
}

#next-season-btn:hover {
  background-color: #45a049;
}

#return-current-season-btn {
  background-color: #f0f0f0;
  color: #333;
}

#return-current-season-btn:hover {
  background-color: #e0e0e0;
}

/* Seasonal color adjustments for the next season button */
body.spring #next-season-btn {
  background-color: #4caf50;
}
body.spring #next-season-btn:hover {
  background-color: #45a049;
}

body.summer #next-season-btn {
  background-color: #ff9800;
}
body.summer #next-season-btn:hover {
  background-color: #f57c00;
}

body.autumn #next-season-btn {
  background-color: #ff5722;
}
body.autumn #next-season-btn:hover {
  background-color: #e64a19;
}

body.winter #next-season-btn {
  background-color: #2196f3;
}
body.winter #next-season-btn:hover {
  background-color: #1976d2;
}
.menu-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-option {
  display: flex;
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.menu-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.menu-option.current-week {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.menu-option.current-week .week-info h2 {
  font-weight: bold;
}

.menu-option.current-week .week-info::before,
.menu-option.next-week .week-info::before {
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8em;
  margin-bottom: 10px;
  display: inline-block;
  font-weight: bold;
}

.menu-option.current-week .week-info::before {
  content: "Current Week";
}

.menu-option.next-week .week-info::before {
  content: "Next Week";
  background-color: rgba(0, 0, 0, 0.1);
  color: #666;
}

.view-menu-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: transparent;
  color: #4a4a4a;
  border: 1px solid currentColor;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9em;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Seasonal color adjustments */
body.spring .view-menu-btn {
  color: #2ecc71;
}
body.summer .view-menu-btn {
  color: #f1c40f;
}
body.autumn .view-menu-btn {
  color: #e67e22;
}
body.winter .view-menu-btn {
  color: #3498db;
}

body.spring .view-menu-btn:hover {
  background-color: #2ecc71;
  color: white;
}
body.summer .view-menu-btn:hover {
  background-color: #f1c40f;
  color: #222;
}
body.autumn .view-menu-btn:hover {
  background-color: #e67e22;
  color: white;
}
body.winter .view-menu-btn:hover {
  background-color: #3498db;
  color: white;
}

@media screen and (max-width: 768px) {
  .featured-items {
    display: none;
  }

  .menu-option {
    display: flex;
    flex-direction: column;
  }

  .week-info {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
  }

  .view-menu-btn {
    position: static;
    align-self: center;
    margin-top: 10px;
    transform: none;
    padding: 10px 20px;
    font-size: 1em;
  }
}

.week-info {
  flex: 1;
  padding: 20px;
  position: relative;
  padding-bottom: 50px; /* Make room for the button */
}

.week-info h2 {
  font-family: "carrotflower", cursive;
  font-size: 2em;
  margin-bottom: 10px;
  color: #444;
}

.week-info p {
  font-size: 0.9em;
  color: #666;
  margin: 5px 0;
}

.featured-items {
  flex: 1;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.05);
  position: relative;
}

.featured-items::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

.featured-items h3 {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 5px;
}

.featured-items ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.featured-items li {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 3px;
}

/* Seasonal colors */
body.spring {
  background-color: #e6f3e6;
}
body.spring .menu-option.current-week {
  background-color: rgba(230, 243, 230, 0.9);
}
body.spring .menu-option.current-week .week-info::before {
  background-color: #4caf50;
  color: white;
}

body.summer {
  background-color: #fff2cc;
}
body.summer .menu-option.current-week {
  background-color: rgba(255, 242, 204, 0.9);
}
body.summer .menu-option.current-week .week-info::before {
  background-color: #ffa500;
  color: white;
}

body.autumn {
  background-color: #ffe6cc;
}
body.autumn .menu-option.current-week {
  background-color: rgba(255, 230, 204, 0.9);
}
body.autumn .menu-option.current-week .week-info::before {
  background-color: #ff6347;
  color: white;
}

body.winter {
  background-color: #e6f2ff;
}
body.winter .menu-option.current-week {
  background-color: rgba(230, 242, 255, 0.9);
}
body.winter .menu-option.current-week .week-info::before {
  background-color: #4169e1;
  color: white;
}
