:root {
  --primary-purple: #6A4C93;
  --light-purple: #B8A9D9;
  --cream: #F5EDE4;
  --waffle-brown: #C68642;
  --dark-text: #2E2E2E;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--dark-text);
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8%;
  background: var(--primary-purple);
  color: white;
  position: sticky;
  top: 0;
  z-index: 2000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 4px;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: rotate(10deg) scale(1.05);
}

nav, #nav-links {
  display: flex;
  gap: 20px;
}

nav a, #nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  padding: 5px;
  z-index: 2100;
}

/* HERO */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  background: #d2c7ff;
  padding: 40px 8% 60px;
}

/* MENU */
.menu {
  padding: 50px 8%;
  text-align: center;
}

.menu h2 {
  font-family: 'Fredoka', sans-serif;
  margin-bottom: 30px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px 8% 20px;
  background: var(--primary-purple);
  color: white;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #f5f5f5;
}

.franchise-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--waffle-brown);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 10px 0;
  transition: 0.3s;
}

.franchise-btn:hover {
  background: #b3722e;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 5%;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  nav, #nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-purple);
    flex-direction: column;
    width: 100%;
    display: none;
    padding: 0;
    gap: 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  nav.active, #nav-links.active {
    display: flex;
  }

  nav a, #nav-links a {
    padding: 14px 8%;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1rem;
  }

  nav a:last-child, #nav-links a:last-child {
    border-bottom: none;
  }

  nav a:hover, #nav-links a:hover {
    background: rgba(255,255,255,0.1);
  }

  .menu-toggle {
    display: block;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 8px 4%;
  }

  .logo img {
    width: 35px;
    height: 35px;
  }

  nav a, #nav-links a {
    padding: 12px 5%;
    font-size: 0.95rem;
  }
}
/* MENU SECTION */
.menu {
  padding: 60px 8%;
  text-align: center;
}

.menu h2 {
  font-family: 'Fredoka', sans-serif;
  margin-bottom: 30px;
  color: #48336b;
}

@media (max-width: 768px) {
  .menu {
    padding: 40px 5%;
  }

  .menu h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .menu {
    padding: 30px 4%;
  }

  .menu h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
}

.category.active {
  background: var(--primary-purple);
  color: white;
}

/* MENU GRID */
.menu-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 8%;
}

@media (max-width: 768px) {
  .menu-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 3%;
  }
  .category-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-width: 12px;
  }
}

@media (max-width: 480px) {
  .menu-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 2%;
  }
  .category-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-width: 8px;
  }
  .category-card h3 {
    font-size: 0.75rem;
    padding: 4px 2px;
  }
}

/* CATEGORY CARD - NO WHITE BACKGROUND */
.category-card {
  text-decoration: none;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-card img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  object-fit: cover;
  background: transparent;
  padding: 0;
  border-radius: 50%;
  box-shadow: none;
  border: 16px solid #48336b;
}

.category-card:nth-child(even) img {
  border-color: #d2c7ff;
}

.category-card h3 {
  padding: 10px 5px;
  font-family: 'Fredoka', sans-serif;
  color: var(--dark-text);
  text-align: center;
}

/* HOVER EFFECT */
.category-card:hover {
  transform: translateY(-5px) scale(1.03);
}

/* CARD */
.menu-card {
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
  text-align: left;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-card h3 {
  font-family: 'Fredoka', sans-serif;
  margin-bottom: 5px;
}

.price {
  color: var(--waffle-brown);
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-items {
    grid-template-columns: 1fr;
  }
}
/* MENU HEADER */
.menu-header {
  text-align: center;
  padding: 40px;
}

.menu-header h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.5rem;
}

/* SEASONAL */
.seasonal {
  padding: 40px 8%;
}

.season-card {
  display: flex;
  gap: 20px;
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  align-items: center;
}

.season-card img {
  width: 120px;
  border-radius: 15px;
}

.season-card span {
  color: var(--waffle-brown);
  font-weight: bold;
  font-size: 1.2rem;
}

/* MENU SECTION */
.menu-section {
  padding: 40px 8%;
}

.menu-section h2 {
  font-family: 'Fredoka', sans-serif;
  margin-bottom: 20px;
}

/* LIST STYLE */
.menu-list p {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 12px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.menu-list span {
  color: #e67e22;
  font-weight: 600;
}
.menu-list p:active {
  transform: scale(0.98);
}
.menu-section {
  margin-bottom: 30px;
}
.menu-section {
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
}

/* MOBILE */
@media (max-width: 768px) {
  .season-card {
    flex-direction: column;
    text-align: center;
  }
}
/* ===== CATEGORY NAV ===== */
.menu-nav {
  position: sticky;
  top: 74px; /* below navbar */
  z-index: 1500;
  background: #f5ede4;
  padding: 10px 8%;
  display: flex;
  gap: 12px;
  overflow-x: auto;
}

.menu-nav::-webkit-scrollbar {
  display: none;
}

.menu-nav a {
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 20px;
  background: var(--primary-purple);
  color: white;
  font-size: 14px;
  white-space: nowrap;
  transition: 0.3s;
}

.menu-nav a.active {
  background: #3e2a61;
}
/* ===== MENU HEADER ===== */
.menu-header {
  text-align: center;
  padding: 30px 20px;
}

.menu-header h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.2rem;
}
.menu-header {
  margin-top: 20px;
}
/* ===== SEASONAL ===== */
.seasonal {
  padding: 30px 8%;
}

.season-card {
  display: flex;
  gap: 20px;
  background: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  align-items: center;
}

.season-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
}

.season-card span {
  color: var(--waffle-brown);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ===== MENU SECTION ===== */
.menu-section {
  padding: 30px 8%;
}

.menu-section h2 {
  font-family: 'Fredoka', sans-serif;
  margin-bottom: 15px;
}

/* ===== MENU ITEMS ===== */
.menu-list p {
  display: flex;
  justify-content: space-between;
  background: white;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 10px;
  font-size: 15px;
}

.menu-list span {
  color: var(--waffle-brown);
  font-weight: 600;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .menu-header h1 {
    font-size: 1.6rem;
  }

  .menu-section {
    padding: 20px 5%;
  }

  .menu-list p {
    font-size: 14px;
    padding: 10px;
  }

  .season-card {
    flex-direction: column;
    text-align: center;
  }

  .season-card img {
    width: 90px;
    height: 90px;
  }
}
/* ===== NAVBAR ===== */
.logo {
  color: white;
}
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  border-radius: 25px;
  background: var(--waffle-brown);
  color: white;
  text-decoration: none;
}

.menu-section {
  padding: 40px 8%;
  scroll-margin-top: 120px;
}
/* CATEGORY BANNER */
.category-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 15px 0 20px;
  background: transparent;
}

.category-banner img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.menu-nav {
  display: flex;
  gap: 10px;
  padding: 12px 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-nav::-webkit-scrollbar {
  display: none;
}

.menu-nav a {
  flex: 0 0 auto;
  padding: 8px 16px;
  border-radius: 20px;
  background: #4b2e83;
  color: white;
  font-size: 14px;
}
.menu-section {
  padding: 25px 16px;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== HERO TAGLINE ===== */
.hero-tagline {
  margin-top: 40px;
  padding: 25px 20px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-tagline h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.tagline-line {
  font-size: 1.15rem;
  color: #f5f5f5;
  margin: 8px 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.tagline-cta {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-top: 15px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-logo {
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin-bottom: 36px;
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 768px) {
  .hero {
    padding: 20px 5% 40px;
  }

  .hero-logo {
    max-width: 550px;
    margin-bottom: 28px;
  }

  .hero-content {
    width: 100%;
    padding: 0 10px;
  }

  .btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }

  .hero-tagline {
    margin-top: 20px;
    padding: 18px 15px;
  }

  .hero-tagline h2 {
    font-size: 1.3rem;
  }

  .tagline-line {
    font-size: 1rem;
  }

  .tagline-cta {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 10px 3% 20px;
  }

  .hero-logo {
    width: 300px;
    margin-bottom: 15px;
  }

  .hero-tagline {
    margin-top: 10px;
    padding: 12px 8px;
  }

  .hero-tagline h2 {
    font-size: 1rem;
  }

  .tagline-line {
    font-size: 0.85rem;
  }

  .tagline-cta {
    font-size: 0.8rem;
  }

  .btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}

/* FOOTER RESPONSIVE */
@media (max-width: 768px) {
  footer {
    padding: 25px 5% 15px;
  }

  .footer-desc {
    font-size: 0.85rem;
    padding: 0 10px;
  }

  .franchise-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 20px 4% 12px;
  }

  .footer-desc {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .franchise-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}
/* CATEGORY BANNER - NO WHITE BACKGROUND */
.category-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 15px 0 20px;
  background: transparent;
}

.category-banner img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}
/* ===== HERO FIX (NO IMAGE SIZE CHANGE) ===== */

.hero {
  padding-top: 20px !important;
  padding-bottom: 50px !important;
}

/* Fix text spacing */
.hero-content {
  gap: 8px;
}

/* Fix tagline readability */
.hero-tagline {
  background: transparent !important;
  backdrop-filter: none !important;
  border: none !important;
  padding: 0 10px !important;
  margin-top: 10px !important;
}

/* Clean text */
.tagline-line {
  color: #4b3a63 !important;
  text-shadow: none !important;
  font-size: 14px !important;
  line-height: 1.6;
}

/* Main heading */
.hero-tagline h2 {
  color: #4b3a63 !important;
  text-shadow: none !important;
  font-size: 15px !important;
}

/* CTA line */
.tagline-cta {
  color: #4b3a63 !important;
  text-shadow: none !important;
  font-size: 14px !important;
  font-weight: 500;
}

/* Button spacing fix */
.btn {
  margin-top: 18px !important;
}
