body {
  background-color: #fcf2e0;
  color: #331D1C;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  height: 100%;
}

header {
  background-color: #ffffff;
  padding: 20px;
  text-align: center;
}

header img {
  max-height: 100px;
}

.hero {
  text-align: center;
  padding: 40px 20px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-family: "Bebas Neue";
}

.hero p {
  font-size: 1.1rem;
  font-family: "Lato";
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.bite-options,
.feedback {
  background-color: #fffaf5;
  margin: 40px auto;
  padding: 30px 20px;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.bite-options h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.options {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.option {
  padding: 15px 25px;
  background-color: #ffeedd;
  border-radius: 30px;
  margin: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.option:hover {
  background-color: #ffd7bb;
}

.option.selected {
  background-color: #ffb84c;
  color: #fff;
  font-weight: bold;
}


.first-bite-question-section {
  text-align: left;
  margin-top: 5%;
  padding: 1%;
}

.first-bite-question-section textarea {
  width: 100%;
  padding: 5px;
}

.quote {
  margin: 40px auto;
  max-width: 600px;
  text-align: center;
  font-style: italic;
  font-size: 1.2rem;
  color: #7d5a50;
}

.signup-form {
  max-width: 600px;
  background: #fff;
  margin: 30px auto;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.signup-form h2 {
  margin-bottom: 20px;
}

.signup-form-input,
.signup-form-select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.signup-form label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
}

.signup-form .checkbox-group {
  margin-top: 10px;
}

.signup-form .checkbox-group label {
  font-weight: normal;
}

.signup-form button {
  background-color: #ffb84c;
  border: none;
  color: #fff;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  margin-top: 5%;
}

.loyalty-card {
  text-align: center;
  margin: 50px auto;
  max-width: 600px;
  padding: 30px;
  background: #fff5ec;
  border-radius: 16px;
}

.loyalty-card h3 {
  margin-bottom: 10px;
}

.stamps {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.stamp {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffd9c0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.stamp.active {
  background-color: #ff934f;
  color: white;
}

.alerts {
  max-width: 600px;
  margin: 40px auto;
  background: #fff7e8;
  padding: 20px;
  border-left: 5px solid #ffa94d;
  border-radius: 10px;
}

.alerts h4 {
  margin-bottom: 10px;
}

.footer-note {
  text-align: center;
  padding: 30px 10px;
  font-size: 0.95rem;
  margin-top: 60px;
}

.footer-note strong {
  color: #331D1C;
}


/* Thank youi page */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.thank-you {
  max-width: 700px;
  margin: 100px auto;
  padding: 40px 30px;
  text-align: center;
  background-color: #fffaf5;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  flex: 1;
}
.thank-you h1 {
  font-size: 2.5rem;
  color: #ff934f;
  font-family: 'Bebas Neue', sans-serif;
  margin-bottom: 20px;
}
.thank-you p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #331D1C;
  font-family: 'Lato', sans-serif;
}
.thank-you .social {
  margin-top: 30px;
}
.thank-you .social p {
  font-weight: bold;
}
.thank-you a {
  color: #ff934f;
  font-weight: bold;
  text-decoration: none;
}

.birthdayMonth {
  text-align: left;
}
