body {
  
  font-family: 'Della Respira', serif;
  text-align: center;
  margin: 0;
  padding: 2rem;
}

h1 {
  font-family: 'Quattrocento', serif;
  text-transform: uppercase;
  text-align: center;
  font-size: 4rem;
  margin-bottom: 0.5rem;
}

.header-accent-tropic {
  color: #9eff1f;
}

.header-accent-infusions {
  color: #9440dd;
}

h2 {
  font-family: 'Della Respira', serif;
  font-size: 2.5rem;
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
  color: white;
  text-align: center;
}

.flavor-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.flavor-menu a {
  font-family: 'Della Respira', serif;
  display: inline-block;
  text-decoration: none;
  font-size: 1.5rem;
  color: white;
  padding: 1rem 2rem;
  border: 2px solid black;
  border-radius: 8px;
  transition: filter 0.3s ease;
}

/* Individual button colors */
.flavor-menu a.mango      { background:linear-gradient(90deg, #f19a5c, #f9db6f)}
.flavor-menu a.kiwi       { background:linear-gradient(90deg, #e76366, #8355eb)}
.flavor-menu a.carrot     { background:linear-gradient(45deg, #1ebda5, #e26a00, #ffe046)}
.flavor-menu a.celery     { background:linear-gradient(45deg, #c90003, #185100, #64aa38)}
.flavor-menu a.cucumber   { background:linear-gradient(180deg, #7cce6b, #d8ffd0)}
.flavor-menu a.apple      { background:linear-gradient(180deg, #731919, #e52b2b)}
.flavor-menu a.watermelon { background:linear-gradient(45deg, #aaff4e,#9a6bff,#ff44da)}
.flavor-menu a.grape { background:linear-gradient(45deg, #6da215)}
.flavor-menu a.papaya { background:linear-gradient(180deg, #997300,#ffc000)}
.flavor-menu a.citrus { background:linear-gradient(45deg, #431043,#d34681)}

.flavor-menu a:hover {
  filter: brightness(0.9);
}

#background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Footer styling */
footer {
  width: 100%;
  padding: 2rem 0;
  text-align: center;
  background: transparent;
  color: black;
}

/* Tagline styling */
.tagline {
  margin-top: 2rem;
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
}

/* Flavor page layout */
.flavor-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.flavor-image {
  max-width: 300px;
  height: auto;
  border-radius: 12px;
}

.flavor-text {
  max-width: 500px;
  width: 100%;
  text-align: left;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  h1 {
    font-size: 2.4rem;
    font-family: 'Quattrocento', serif;
  }

  h2 {
    font-size: 1.6rem;
    font-family: 'Della Respira', serif;
  }

  h1, h2 {
    text-align: center;
    margin: 0 auto 1rem auto;
    width: 100%;
    line-height: 1.2;
  }

  .flavor-container {
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
  }

  .flavor-text {
    text-align: center;
  }

  .flavor-image {
    width: 90%;
    max-width: 350px;
  }

  .flavor-menu {
    gap: 0.5rem;
  }

  .flavor-menu a {
    font-size: 1.2rem;
    padding: 0.75rem 1.5rem;
    width: 90%;
    max-width: 320px;
  }

  footer {
    padding: 1rem 0;
  }
}
