:root {
  --main-bg: #0e0e0e;
  --primary: #f8c304;
  --text: #ffffff;
  --accent: #ff6347;
  --font-main: 'Segoe UI', sans-serif;
  --font-header: 'Chakra Petch', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--main-bg);
  color: var(--text);
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  width: 70px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links a.active {
  color: var(--primary);
  font-weight: bold;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
}

.nav-links a:hover {
  color: var(--primary);
}

/* FOOTER SECTION */
.site-footer {
  background: #111;
  color: #ccc;
  display: flex;
  justify-content: space-between;
  padding: 2rem 5rem;
  flex-wrap: wrap;
  gap: 3rem;
  font-size: 0.95rem;
}

.footer-left h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-left p {
  line-height: 1.6;
  max-width: 400px;
}

.footer-right h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.socials {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.socials li img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.socials li img:hover {
  transform: scale(1.1);
}


/* HOME SECTION */
.hero-banner {
  background-image: url('https://fitmealsprep.com/wp-content/uploads/2023/08/Fit-Meals-Prep_Top-Reasons-Why-Using-Fresh-Ingredients-Really-Matters.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  text-align: center;
}

.hero-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 14, 14, 0.6);
  z-index: 1;
}

.hero-banner .hero-text {
  position: relative;
  z-index: 2;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 10px;
}

.hero-banner h1 {
  font-family: var(--font-header);
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-banner p {
  color: #eaeaea;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}


/* MENU SECTION */
.menu-page {
  padding: 0 1rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.menu-container h1 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  font-family: var(--font-header);
  margin-bottom: 2rem;
  position: relative;
}

.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filters button {
  padding: 0.6rem 1.2rem;
  background-color: var(--accent);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.filters button:hover {
  background-color: #ff4433;
}

.filters button.active {
  background-color: var(--primary);
  color: #000;
}

.floating-filter {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: #ffc400;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.floating-filter img {
  width: 60%;
  height: auto;
}

.category-group {
  margin-bottom: 3rem;
}

.category-group h2 {
  text-align: center;
  font-size: 2.3rem;
  color: var(--primary);
  font-family: var(--font-header);
  margin-bottom: 1rem;
}

.category-heading {
  font-size: 2rem;
  font-family: var(--font-header);
  color: var(--primary);
  margin: 2rem 0 1rem;
}

.grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.category-heading {
  font-size: 1.8rem;
  color: var(--primary);
  margin: 2rem 0 1rem;
  font-family: var(--font-header);
}

.menu-item {
  background: #1a1a1a;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.03);
}

.menu-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.menu-item .price {
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 0.7rem;
}

.order-btn {
  padding: 0.4rem 1rem;
  background-color: var(--primary);
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.order-btn:hover {
  background-color: #d4aa00;
}


/* CONTACT SECTION */
.contact-page {
  padding: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-left,
.contact-right {
  flex: 1;
  min-width: 300px;
}

.contact-left h2,
.contact-right h2,
.location h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-left p,
.contact-right p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.contact-right a {
  color: var(--text);
  text-decoration: underline;
}

.socials {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.socials li img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.socials li img:hover {
  transform: scale(1.1);
}

.location {
  margin-top: 3rem;
  width: 100%;
}

.map-container {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #333;
}

@media (max-width: 768px) {
  .logo {
    width: 70px;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-left,
  .footer-right {
    max-width: 100%;
  }

  .footer-left h3 {
    margin-bottom: 0.5rem;
  }

  .socials {
    justify-content: center;
  }


  /* HERO SECTION */
  .hero-banner {
    height: auto;
    padding: 4rem 1rem;
  }

  .hero-banner h1 {
    font-size: 2rem;
  }

  .hero-banner p {
    font-size: 1rem;
  }

  /* MENU SECTION */
  .menu-container h1 {
    font-size: 2rem;
  }

  .category-heading {
    font-size: 1.4rem;
  }

  .menu-item h3 {
    font-size: 1rem;
  }

  .filters {
    gap: 0.6rem;
    justify-content: space-between;
  }

  .filters button {
    flex: 1 0 40%;
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  .order-btn {
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
  }


  /* CONTACT SECTION */
  .contact-container {
    flex-direction: column;
    padding: 1rem;
  }

  h2 {
    text-align: center;
  }

  .location {
    margin-top: 2rem;
  }

  .map-container {
    height: 250px;
  }
}