:root {
  --pink: #ff8fc7;
  --pink-dark: #e45aa4;
  --purple: #6a2c70;
  --white: #ffffff;
  --dark: #3a003a;
}

body {
  font-family: "sausage", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: var(--pink);
  color: var(--dark);
  line-height: 1.6;
}

.nav-wrapper {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
}

.pill-nav {
  background: transparent;
  border: 5px solid var(--white);
  border-radius: 999px;
  padding: 1rem 10rem;
  display: flex;  align-items: center;
  gap: 5rem;
  height: 2rem;
}

.pill-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.pill-nav a {
  text-decoration: none;
  color: var(--pink-dark);
  font-weight: bold;
}

.pill-nav .logo img {
  height: 100px;
}
.hero {
  padding: 8rem 6rem;
  text-align: right;
  position: relative;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  padding-bottom: 0.4rem;
}

.hero-text {
  max-width: 723px; 
  color: white;
  font-weight: 600;
  margin-bottom: 2rem;
  margin-right: 0%;
}

.hero-button:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #d46aa6;

}

@media (max-width: 900px) {
  .hero {
    padding: 6rem 2rem;
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

}
main section {
  background: var(--pink);
  padding: 4rem 1.5rem;
  text-align: center;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

main section:nth-child(even) {
  background: var(--white);
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  text-align: left;
}

.flavour-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.flavour-card {
  background: var(--pink);
  border-radius: 20px;
  padding: 1.5rem;
  width: 250px;
  text-align: center;
}

.flavour-card img {
  border-radius: 20px;
  margin-top: 1.5rem;
  width: 100%;
}

h2 {
  font-size: 5rem;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: "modak", sans-serif;
  font-weight: 400;
  font-style: normal;
}

section:nth-child(even) h2 {
  color: var(--pink-dark);
}

h3 {
  font-size: 1.4rem;
  color: var(--pink-dark);
  margin-bottom: 1rem;
}

p {
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
  color: white;
}
.new-cookie-section  {
  background: var(--white);
  text-align: center;
}
.new-cookie-section p {
  color: var(--pink-dark);
}

.about-image {
  max-width: 500px;
  border-radius: 20px;
  margin: 1.5rem 0;
} 

button {
  background-color: white;
  color: #b54b86;
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 0 #d46aa6;
  transition: transform 0.2s ease;
}

button:hover {
  transform: scale(1.05);
  background: #ffe1f0;
}

section ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

section ul li {
  background: var(--pink);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  font-weight: bold;
  min-width: 200px;
}

.fun-section {
  background-color: #ffffff;
  padding: 2rem 2rem;
  text-align: center;
}

.fun-intro {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #b54b86;
  font-weight: 600;
  line-height: 1.6;
}

.fun-puzzle {
  max-width: 600px;
  width: 100%;
}

td {
  width: 45px;
  height: 45px;
  background: var(--pink-dark);
  color: var(--white);
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  vertical-align: middle;
}

form {
  max-width: 400px;
  margin: 0 auto;
}

label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: #ffffff;
}

input {
  width: 100%;
  padding: 0.6rem;
  border-radius: 10px;
  border: none;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}

.site-footer {
  background-color: #6a3b5a;
  color: white;
  padding: 5rem 4rem 2rem;

}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-logo {
  max-height: 90px;
}

.footer-info {
  margin-bottom: 3rem;
}

.footer-info p {
  margin-bottom: 0.8rem;
  font-weight: 600;
  margin-left: 0;
}

.footer-info a {
  color: white;
  text-decoration: none;
  text-align: left;
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.7;
  text-align: center;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .footer-info {
    text-align: center;
  }
}
