/* === Reset & Base Styles === */
body {
  background-color: #fff8e1;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

h1, h2, nav a {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

p {
  font-family: 'Outfit', sans-serif;
  color: black;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 1em;
}

/* === Header === */
header {
  background-color: #ffcc00;
  padding: 1em;
  text-align: center;
}

nav a {
  margin: 0 1em;
  color: #d00000;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #a80000;
  text-decoration: underline;
  transition: color 0.3s ease;
}

/* === Main Content === */
main {
  padding: 2em;
  text-align: center;
  flex: 1;
}

h1 {
  font-size: 45px;
}

.heady {
  font-size: 35px;
}

.saccy-sies {
  font-size: 20px;
}

/* === Hero Section === */
.hero {
  background-color: #ffe9c4;
  color: #d00000;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2em;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
}

.hero h2 {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}

/* === Menu Row === */
.menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  max-width: 700px;
  margin: 4em auto;
  padding: 0 1em;
}

.menu-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  color: #d00000;
  margin: 0;
  padding: 20px;
}

.burger-button {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  background-color: #fff8e1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.burger-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.burger-button:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* === Delivery Section === */
.delivery {
  background-color: #ffe9c4;
  text-align: center;
  padding: 3em 1em;
  font-family: 'Outfit', sans-serif;
}

.delivery h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  color: #d00000;
  margin-bottom: 0.5em;
}

.delivery p {
  font-size: 18px;
  margin: 0.5em 0;
}

.fine-print {
  font-size: 14px;
  color: #444;
  font-style: italic;
}

.delivery-btn {
  display: inline-block;
  margin-top: 1em;
  padding: 0.8em 1.5em;
  background-color: #d00000;
  color: #fff8e1;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  text-decoration: none;
  border-radius: 25px;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.delivery-btn:hover {
  transform: scale(1.05);
  background-color: #a80000;
}

/* === Featured Items === */
.featured {
  background-color: #fff1cc;
  padding: 2.5em 1em;
  text-align: center;
}

.featured h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  margin-top: 0.25em;
  margin-bottom: 1em;
  color: #d00000;
}

.items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}

.item {
  background: #e6d3ae;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  padding: 1em;
  max-width: 260px;
  transition: transform 0.2s;
}

.item:hover {
  transform: scale(1.05);
}

.item img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 0.5em;
}

.item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  color: #d00000;
  margin: 0.5em 0;
}

.item p {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #333333;
}

/* === Apply for a Job Section === */
.apply-job-section {
  background-color: #ffe9c4;
  color: #d00000;
  text-align: center;
  padding: 3em 1em 4em;
  font-family: 'Poppins', sans-serif;
  margin: 3em auto 4em;
  border-radius: 12px;
  max-width: 700px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.apply-job-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1em;
}

.apply-job-button {
  background-color: #d00000;
  color: #fff8e1;
  padding: 1em 2.5em;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
  display: inline-block;
}

.apply-job-button:hover {
  background-color: #a00000;
  transform: scale(1.05);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.5);
}

/* === Join the Discord Section === */
.discord-join {
  max-width: 700px;
  margin: 3em auto 4em;
  padding: 2em 1em;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #d00000;
  background-color: #fff0b3;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  flex-wrap: wrap;
}

.discord-join h2 {
  font-size: 2.5rem;
  margin: 0;
  flex-grow: 1;
  text-align: center;
}

.discord-button {
  display: inline-block;
  width: 75px;
  height: 75px;
  background-color: #7289da;
  border-radius: 50%;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  padding: 15px;
}

.discord-button img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.4));
}

.discord-button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

/* === News Section === */
.news {
  padding: 2em 1.5em;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  background-color: #fff1c4;
}

.news h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  color: #d00000;
  margin-bottom: 1em;
}

.news ul {
  list-style-type: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}

.news li {
  margin-bottom: 0.8em;
  font-size: 18px;
}

/* === Awards Section === */
.awards {
  background-color: #ffe9c4;
  padding: 2em 1.5em;
  text-align: center;
}

.awards h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  color: #d00000;
  margin-top: 0.5em;
  margin-bottom: 1em;
}

.awards ul {
  list-style-type: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 2.5em;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
}

/* === Lawsuit Stats Section === */
.lawsuit-stats {
  background-color: #ffdfb0;
  padding: 3em 1.5em;
  text-align: center;
  font-family: 'Outfit', sans-serif;
}

.lawsuit-stats h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  color: #d00000;
  margin-bottom: 0.5em;
}

.lawsuit-number {
  font-size: 48px;
  color: #a80000;
  font-weight: bold;
}

.fine-print {
  font-size: 14px;
  color: #444;
  font-style: italic;
  margin-top: 0.5em;
}

/* === Quotes Section === */
.quotes {
  background-color: #fff3d1;
  text-align: center;
  padding: 2.5em 1em;
  font-family: 'Outfit', sans-serif;
}

.quotes h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 35px;
  color: #d00000;
  margin-bottom: 1em;
}

#rotatingQuote {
  font-style: italic;
  font-size: 20px;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

/* === Reviews Section === */
.reviews {
  background-color: #faecd4;
  padding: 3em 1em;
  text-align: center;
  font-family: 'Outfit', sans-serif;
}

.reviews h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  color: #d00000;
  margin-bottom: 1em;
}

.review-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}

.review {
  background-color: #fff8e1;
  border-left: 6px solid #d00000;
  padding: 1.5em;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  border-radius: 12px;
  text-align: left;
}

.review p {
  font-size: 16px;
  margin-bottom: 0.5em;
}

.review span {
  font-size: 14px;
  font-style: italic;
  color: #333333;
}

/* === Merch Section === */
.merch {
  background-color: #ffe1b3;
  padding: 2.5em 1em;
  text-align: center;
  font-family: 'Outfit', sans-serif;
}

.merch h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  color: #d00000;
  margin-bottom: 0.5em;
}

.merch p {
  font-size: 18px;
  margin-bottom: 0.5em;
}

.merch .soon {
  font-size: 16px;
  font-style: italic;
  color: #555;
}

/* === FAQ Section === */
.faq {
  background-color: #fff1c4;
  padding: 2.5em 1.5em;
  text-align: center;
  font-family: 'Outfit', sans-serif;
}

.faq h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  color: #d00000;
  margin-bottom: 0.5em;
}

.faq ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 2.5em;
  font-size: 18px;
  text-align: center;
}

/* === Footer === */
footer {
  background: #d00000;
  color: white;
  text-align: center;
  padding: 0.5em 1em;
  font-size: 14px;
  box-sizing: border-box;
  width: 100%;
}

.footer {
  color: #fff8e1;
  width: 100%;
  padding: 1em;
  background: #d00000;
  text-align: center;
}

/* === Career Wall Section === */
.career-wall {
  background-color: #fff3c4;
  text-align: center;
  padding: 4em 1.5em;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.career-wall-content {
  max-width: 800px;
  margin: 0 auto;
}

.career-wall h2 {
  font-size: 50px;
  color: #d00000;
  margin-bottom: 0.4em;
  font-family: 'Poppins', sans-serif;
}

.career-wall p {
  font-size: 22px;
  font-family: 'Outfit', sans-serif;
  color: #444;
  margin-bottom: 2em;
}

.career-wall-button {
  background-color: #d00000;
  color: #fff8e1;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1em 2.5em;
  border-radius: 35px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.career-wall-button:hover {
  background-color: #a80000;
  transform: scale(1.08);
}



