:root {
  --bg: #f7fdf9;
  --text: #2e7d32;
  --muted: #6d6d6d;
  --card: #e0f2f1;
  --black: #1b5e20;
  --white: #ffffff;
  --accent: #c8e6c9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

body {
  font-family: "Nunito Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

.matcha {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.matcha .bar {
  height: 3px;
  width: 100%;
  background-color: var(--text);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}

.logo {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--text);
  font-size: 22px;
  -webkit-text-stroke: 2px transparent;
  transition: all 0.2s;
}
.logo:hover {
  color: transparent;
  -webkit-text-stroke: 2px var(--text);
}
.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  font-family: "Nunito Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a:hover {
  opacity: 0.7;
  color: var(--text);
}
.nav-links a::after {
  content: "";
  height: 3px;
  width: 100%;
  bottom: 0;
  transition: all 0.2s;
}
.nav-links a:hover::after {
  background-color: var(--black);
  position: absolute;
  bottom: -5px;
  border-radius: 5px;
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 60px 20px 40px;
}

.hero-text h1 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(38px, 7vw, 92px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--text);
}

.hero-text p {
  max-width: 560px;
  margin: 18px 0 26px;
  color: var(--muted);
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--black);
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: var(--black);
  color: var(--accent);
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
}

.tilt-card {
  background: var(--card);
  border-radius: 16px;
  transform: rotate(-4deg);
  padding: 12px;
  box-shadow: 0 20px 60px rgba(46, 125, 50, 0.25);
}

.tilt-card img {
  border-radius: 12px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.badge {
  position: absolute;
  right: -10px;
  top: 10px;
  background: #c8e6c9;
  border: 2px solid var(--black);
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  transform: rotate(10deg);
  color: var(--black);
  animation: spin 10s linear infinite;
}
.about {
  width: 100%;
  display: grid;
  justify-items: center;
  padding: 8rem 0;
  font-family: "Nunito Sans", sans-serif;
  color: var(--accent);
  background-color: var(--text);
}

.about-grid {
  max-width: 1000px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 144px auto;
  gap: 1rem;
}

.about-text {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
  font-size: 4rem;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0.5px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: var(--accent);
  z-index: 10;
}

.about-image {
  grid-column: 2 / span 2;
  grid-row: 2;
  align-self: center;
  justify-self: end;
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.about-image img {
  width: 434px;
  border-radius: 12px;
}

.about-image p {
  font-family: "Nunito Sans", sans-serif;
  color: var(--card);
  font-size: 1rem;
  z-index: 10;
}
.whyus {
  width: 100%;
  padding: 6rem 20px;
  background-color: var(--bg);
  color: var(--text);
  display: flex;
  justify-content: center;
}

.whyus-container {
  max-width: 1200px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 2rem;
}

.whyus-text,
.whyus-image {
  flex: 1;
}

.whyus-text h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--black);
}

.whyus-text p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
}

.whyus-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.video-section {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}

.overlay h2 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 15px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: var(--accent);
  -webkit-text-stroke: 0.5px #1b5e20;
}

.play-btn {
  font-size: 28px;
  color: var(--white);
  background: var(--text);
  border: 2px solid var(--accent);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
.menu {
  padding: 5rem 20px;
  background: var(--bg);
  color: #1b5e20;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.menu-container h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #2e7d32;
  margin-bottom: 1rem;
}

.menu-container p {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #4e944f;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.menu-item {
  background: white;
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  position: relative;
  display: inline-block;
  text-align: center;
}
.menu-item img {
  width: 100%;
  border-radius: 12px;
}

.menu-item h3 {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: #1b5e20;
}

.menu-item p {
  font-size: 1rem;
  color: #388e3c;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  background-color: var(--text);
}
.menu-item:hover h3 {
  color: var(--accent);
}
.menu-item:hover p {
  color: var(--white);
}

.badge.star {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--black);
  color: var(--accent);
  font-weight: bold;
  font-size: 12px;
  padding: 20px;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;

  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );

  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}
.x-bands {
  position: relative;
  width: 100%;
  height: 8rem;
  overflow: hidden;
}

.band {
  font-family: "M PLUS Rounded 1c", sans-serif;
  position: absolute;
  left: -25%;
  width: 150%;
  height: 3.5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.band-left {
  top: 3rem;
  background: var(--accent);
  color: var(--text);
  transform: rotate(-3.5deg);
}

.band-right {
  top: 3.8rem;
  background: var(--text);
  color: var(--accent);
  transform: rotate(3.5deg);
}

.band-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
}

.band-right .band-track {
  animation: scroll-right 20s linear infinite;
}

.band-track span {
  display: inline-block;
  padding: 0 2rem;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
.offer {
  background: linear-gradient(135deg, #1b5e20, #4caf50); /* أخضر فاتح وغامق */
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  margin: 3rem auto;
  width: 90%;
  max-width: 900px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.offer h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.offer p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.countdown {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.offer .btn {
  background: #fff;
  color: #1b5e20;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.offer .btn:hover {
  background: #4caf50;
  color: #fff;
}

.reviews {
  background: var(--bg);
  padding: 4rem 2rem;
}

.reviews-title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: var(--black);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.reviews-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.review-card {
  font-family: "M PLUS Rounded 1c", sans-serif;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.review-card h4 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.review-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}
.footer {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: var(--text);
  background: var(--black);
}

.footer-top {
  display: flex;
  width: 100%;
}

.footer-photos {
  display: flex;
  flex: 3;
}

.footer-photos img {
  width: 25%;
  object-fit: cover;
}

.footer-insta {
  flex: 1;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 3rem;
  text-align: center;
  color: var(--accent);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  background: var(--card);
  padding: 3rem 2rem;
}

.footer-left h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--black);
}

.footer-left h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.footer-left p {
  font-size: 0.9rem;
  max-width: 400px;
  margin-bottom: 1rem;
  color: var(--muted);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.7rem;
  border: 1px solid var(--text);
  outline: none;
  background: var(--white);
  color: var(--text);
  border-radius: 10px;
}

.newsletter-form button {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  border-radius: 30px;
}

.footer-right ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
}

.footer-right ul li {
  margin: 0.5rem 0;
}

.footer-right ul li a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom {
  background: var(--black);
  padding: 1rem 2rem;
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  /* GENERAL */
  body {
    overflow-x: hidden;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-family: "Nunito Sans", system-ui, -apple-system, Segoe UI, Roboto,
      Arial, sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: var(--accent);
    z-index: 999;
  }

  .nav-links.active a {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text);
    font-family: "Nunito Sans", system-ui, -apple-system, Segoe UI, Roboto,
      Arial, sans-serif;
    text-decoration: none;
  }

  .matcha {
    border: var(--black);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1000;
    position: relative;
  }

  .matcha .bar {
    width: 30px;
    height: 3px;
    background: var(--black);
    border-radius: 5px;
    transition: 0.3s;
  }

  /* Animation لما يبقى active */
  .matcha.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .matcha.active .bar:nth-child(2) {
    opacity: 0;
  }

  .matcha.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* HERO */
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 20px;
  }
  .hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.1;
  }
  .hero-text p {
    font-size: 1rem;
    margin: 15px auto;
  }
  .hero-media {
    margin-top: 20px;
  }
  .tilt-card img {
    width: 100%;
    height: auto;
  }
  .badge {
    width: 60px;
    height: 60px;
    font-size: 10px;
  }

  /* ABOUT */

  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    align-items: flex-start;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    width: 100%;
  }

  .about-text h2 {
    font-size: 22px;
    margin-bottom: 10px;
    text-align: left;
  }

  .about-image {
    width: 100%;
  }

  .about-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* WHY US */
  .whyus-container {
    flex-direction: column;
    text-align: center;
  }
  .whyus-text h2 {
    font-size: 2rem;
  }
  .whyus-text p {
    font-size: 1rem;
  }

  /* VIDEO */
  .video-section {
    height: 250px;
  }
  .overlay h2 {
    font-size: 20px;
  }
  .play-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  /* MENU */
  .menu-container h2 {
    font-size: 2rem;
  }
  .menu-container p {
    font-size: 1rem;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }

  /* OFFER */
  .offer {
    padding: 2rem 1rem;
  }
  .offer h2 {
    font-size: 1.8rem;
  }
  .offer p {
    font-size: 1rem;
  }

  /* REVIEWS */
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-card {
    font-size: 0.9rem;
  }

  /* FOOTER */
  .footer-top {
    flex-direction: column;
  }
  .footer-photos img {
    width: 50%;
  }

  .footer-photos {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .footer-main {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .footer-right ul {
    flex-direction: column;
    gap: 10px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
