/* ==========================
   GOOGLE FONT & RESET
========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #0b0b0b;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* ==========================
   VARIABLES
========================== */

:root {
  --primary: #6cff4a;
  --primary-dark: #50d632;

  --dark: #0b0b0b;

  --card: #161616;

  --card2: #1d1d1d;

  --text: #ffffff;

  --gray: #cfcfcf;
}

/* ==========================
   HEADER
========================== */

header {
  position: fixed;

  width: 100%;

  top: 0;

  left: 0;

  z-index: 999;

  background: rgba(10, 10, 10, 0.85);

  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
  display: flex;

  justify-content: space-between;

  align-items: center;

  height: 80px;
}

.logo {
  font-size: 32px;

  font-weight: 800;

  color: white;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;

  gap: 35px;
}

.nav-links a {
  color: white;

  font-weight: 500;

  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.desktop-btn {
  display: inline-block;
}

.hamburger {
  display: none;

  font-size: 28px;

  cursor: pointer;
}

/* ==========================
   BUTTONS
========================== */

.btn {
  background: var(--primary);

  color: #111;

  padding: 14px 34px;

  border-radius: 40px;

  font-weight: 700;

  transition: 0.3s;

  display: inline-flex;

  align-items: center;

  justify-content: center;
}

.btn:hover {
  transform: translateY(-4px);

  background: var(--primary-dark);

  box-shadow: 0 10px 30px rgba(108, 255, 74, 0.35);
}

.btn-outline {
  padding: 14px 34px;

  border-radius: 40px;

  border: 2px solid var(--primary);

  color: var(--primary);

  transition: 0.3s;

  display: inline-flex;

  align-items: center;

  justify-content: center;
}

.btn-outline:hover {
  background: var(--primary);

  color: #111;
}

/* ==========================
   HERO
========================== */

.hero {
  min-height: 100vh;

  display: flex;

  align-items: center;

  padding-top: 100px;
}

.hero-content {
  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 70px;
}

.hero-text h1 {
  font-size: 68px;

  line-height: 1.1;

  margin-bottom: 25px;

  font-weight: 800;
}

.hero-text span {
  color: var(--primary);
}

.hero-text p {
  font-size: 20px;

  color: var(--gray);

  margin-bottom: 40px;

  max-width: 600px;
}

.hero-buttons {
  display: flex;

  gap: 20px;

  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 30px;

  box-shadow: 0 30px 80px rgba(108, 255, 74, 0.18);

  transition: 0.4s;
}

.hero-image img:hover {
  transform: scale(1.03);
}

/* Glow behind image */

.hero-image::before {
  content: "";

  position: absolute;

  width: 350px;

  height: 350px;

  background: var(--primary);

  filter: blur(180px);

  opacity: 0.22;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  z-index: -1;
}

/* ==========================
   COMMON SECTION
========================== */

section {
  padding: 110px 0;
}

.section-title {
  text-align: center;

  font-size: 46px;

  margin-bottom: 60px;

  font-weight: 700;
}

/* ==========================
   SCROLLBAR
========================== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);

  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #8dff73;
}

/* =====================================================
   WHY US SECTION
===================================================== */

.features {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

  gap: 30px;
}

.feature {
  background: var(--card);

  padding: 45px 30px;

  border-radius: 20px;

  text-align: center;

  transition: 0.35s;

  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature:hover {
  transform: translateY(-12px);

  border-color: var(--primary);

  box-shadow: 0 15px 40px rgba(108, 255, 74, 0.12);
}

.feature i {
  font-size: 55px;

  color: var(--primary);

  margin-bottom: 25px;
}

.feature h3 {
  font-size: 24px;

  margin-bottom: 15px;
}

.feature p {
  color: var(--gray);

  font-size: 15px;
}

/* =====================================================
   MENU SECTION
===================================================== */

.meal-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 35px;
}

.meal-card {
  background: var(--card);

  border-radius: 22px;

  overflow: hidden;

  transition: 0.35s;

  border: 1px solid rgba(255, 255, 255, 0.05);

  display: flex;

  flex-direction: column;
}

.meal-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 20px 50px rgba(108, 255, 74, 0.15);

  border-color: var(--primary);
}

.meal-card img {
  height: 240px;

  object-fit: cover;

  transition: 0.5s;
}

.meal-card:hover img {
  transform: scale(1.08);
}

.meal-card h3 {
  margin: 25px 25px 8px;

  font-size: 28px;
}

.meal-card p {
  margin: 0 25px 20px;

  color: var(--gray);
}

.meal-card ul {
  margin: 0 25px;
}

.meal-card ul li {
  margin-bottom: 10px;

  color: #ddd;

  position: relative;

  padding-left: 22px;
}

.meal-card ul li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: var(--primary);

  font-weight: bold;
}

.price {
  margin: 25px;

  font-size: 34px;

  font-weight: 700;

  color: var(--primary);
}

.meal-card button {
  margin: 0 25px 30px;

  border: none;

  background: var(--primary);

  color: #111;

  padding: 15px;

  border-radius: 40px;

  cursor: pointer;

  font-size: 16px;

  font-weight: 700;

  transition: 0.3s;
}

.meal-card button:hover {
  background: var(--primary-dark);

  transform: translateY(-3px);
}

/* =====================================================
   PREMIUM CARD
===================================================== */

.premium {
  position: relative;

  overflow: hidden;

  border: 2px solid #ffd54f;
}

.premium::before {
  content: "PREMIUM";

  position: absolute;

  top: 18px;

  right: -40px;

  width: 180px;

  background: #ffd54f;

  color: #111;

  font-weight: 700;

  text-align: center;

  transform: rotate(45deg);

  padding: 6px 0;

  z-index: 10;
}

.premium h3 {
  color: #ffd54f;
}

.premium .price {
  color: #ffd54f;
}

.premium button {
  background: #ffd54f;
}

.premium button:hover {
  background: #ffcb21;
}

/* =====================================================
   MENU TITLE DECORATION
===================================================== */

.section-title {
  position: relative;
}

.section-title::after {
  content: "";

  display: block;

  width: 90px;

  height: 4px;

  margin: 18px auto 0;

  background: var(--primary);

  border-radius: 20px;
}

/* =====================================================
   CARD IMAGE OVERLAY
===================================================== */

.meal-card {
  position: relative;
}

.meal-card::after {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 240px;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));

  pointer-events: none;
}

/* =====================================================
   PRICE ANIMATION
===================================================== */

.price {
  transition: 0.3s;
}

.meal-card:hover .price {
  transform: scale(1.08);
}

/* =====================================================
   BUTTON ANIMATION
===================================================== */

.meal-card button {
  position: relative;

  overflow: hidden;
}

.meal-card button::before {
  content: "";

  position: absolute;

  width: 0;

  height: 100%;

  left: 0;

  top: 0;

  background: rgba(255, 255, 255, 0.15);

  transition: 0.35s;
}

.meal-card button:hover::before {
  width: 100%;
}

/* =====================================================
   MENU SPACING
===================================================== */

#menu {
  background: #101010;
}

/* =====================================================
   REVIEWS
===================================================== */

#reviews {
  background: #0d0d0d;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review {
  background: var(--card);
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  transition: 0.35s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.review:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(108, 255, 74, 0.12);
}

.review:first-line {
  color: #ffd54f;
  font-size: 22px;
}

.review p {
  margin: 20px 0;
  color: var(--gray);
}

.review h4 {
  color: var(--primary);
}

/* =====================================================
   FAQ
===================================================== */

#faq {
  background: #101010;
}

.faq {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: var(--card);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary);
  transition: 0.3s;
}

.faq-item:hover {
  transform: translateX(8px);
}

.faq-item h3 {
  margin-bottom: 10px;
}

.faq-item p {
  color: var(--gray);
}

/* =====================================================
   CONTACT
===================================================== */

#contact {
  background: linear-gradient(135deg, #6cff4a, #2a7f17);
  text-align: center;
  color: #111;
}

.contact {
  padding: 40px 20px;
}

.contact h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.contact p {
  font-size: 20px;
  margin-bottom: 35px;
}

.contact .btn {
  background: #111;
  color: white;
}

.contact .btn:hover {
  background: #222;
}

/* =====================================================
   FOOTER
===================================================== */

footer {
  background: #050505;
  padding: 35px 0;
  text-align: center;
  color: #999;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* =====================================================
   WHATSAPP FLOATING BUTTON
===================================================== */

.whatsapp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 65px;
  height: 65px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  z-index: 1000;
  transition: 0.3s;
}

.whatsapp:hover {
  transform: scale(1.12);
}

/* =====================================================
   MOBILE MENU
===================================================== */

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-text p {
    margin: auto auto 35px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .nav-links {
    position: fixed;

    top: 80px;

    left: -100%;

    width: 100%;

    background: #111;

    flex-direction: column;

    text-align: center;

    padding: 40px 0;

    gap: 25px;

    transition: 0.4s;
  }

  .nav-links.active {
    left: 0;
  }

  .hamburger {
    display: block;
  }

  .desktop-btn {
    display: none;
  }

  .section-title {
    font-size: 36px;
  }

  .contact h2 {
    font-size: 36px;
  }

  .contact p {
    font-size: 18px;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 600px) {
  .hero {
    padding-top: 120px;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 17px;
  }

  .btn,
  .btn-outline {
    width: 100%;
  }

  .price {
    font-size: 28px;
  }

  .meal-card h3 {
    font-size: 24px;
  }

  .section-title {
    font-size: 30px;
  }
}

/* =====================================================
   FADE ANIMATION
===================================================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.feature,
.meal-card,
.review,
.faq-item {
  animation: fadeUp 0.8s ease;
}

/* Active Nav */

.nav-links a.active {
  color: var(--primary);
}

/* Ripple Effect */

.btn,
.meal-card button {
  position: relative;

  overflow: hidden;
}

.ripple {
  position: absolute;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.35);

  transform: scale(0);

  animation: ripple 0.6s linear;

  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);

    opacity: 0;
  }
}
