@import url(https://fonts.googleapis.com/css?family=Almarai:300,regular,700,800);
@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);
.terms {
  padding-block: 80px;
}
.terms h1 {
  color: #000;
  text-align: center;
  font-family: Almarai;
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.terms p {
  color: #000;
  font-family: Almarai;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body {
  font-family: Almarai, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex-grow: 1;
}
:root {
  scroll-behavior: smooth;
}
.footer {
  padding: 32px 15px;
}

.footer__wrapper {
  border-radius: 24px;
  background: #1e1b00;
  padding: 16px 80px;
}
.footer__logo img {
  width: 32px;
  height: 32px;
}
a {
  text-decoration: none;
}
button {
  border: none;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;

  color: #fff;
  font-family: Poppins;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.footer-links a {
  display: block;
  color: #fff;
  font-family: Almarai;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer-links {
  padding-top: 24px;
  border-top: 1px solid #fff;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
}
.footer__cp {
  color: #b8b8b8;
  font-family: Almarai;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: #ae9e28;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffe082;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  padding-block: 40px 80px;
}

.hero-content {
  border-radius: 60px;
  background: linear-gradient(180deg, #cabc56 0%, #fff 100%);
  padding: 40px;
}

.game-window {
  width: 100%;
  padding: 20px;
  border-radius: 60px;
  background: #f8f5ff;
  box-shadow: 0px 4px 24px 0px rgba(175, 175, 175, 0.25);
  margin-bottom: 40px;
  height: 300px;
}

.farm-image {
  border-radius: 60px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text h1 {
  color: #59524c;
  font-family: Almarai;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1.44px;
  margin-bottom: 28px;
}

.hero-text p {
  color: #1d1a17;

  /* Regular (XL) */
  font-family: Almarai;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%; /* 30.24px */
  letter-spacing: -0.105px;
  margin-bottom: 40px;
}
.home__btn img {
  width: 20px;
  height: 20px;
}
.home__btn {
  display: flex;
  width: fit-content;
  padding: 20px 40px;
  border-radius: 40px;
  background: radial-gradient(
    286.37% 67% at 4.6% 40.8%,
    #376200 0%,
    #77b900 100%
  );
  box-shadow: 0px -3px 3px 0px #2b4201 inset;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #fffbf8;
  font-family: Almarai;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 144%; /* 25.92px */
  letter-spacing: -0.09px;
}
/* About Section */
.about {
  padding: 80px 0;
  background: white;
}

.about h2 {
  color: #59524c;
  font-family: Almarai;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.2px;
  margin-bottom: 56px;
}

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

.feature-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #fff8e1;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #2e7d32;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.feature-card p {
  color: #666;
  line-height: 1.5;
}

/* What Is Section */
.what-is {
  padding: 80px 0;
}

.what-is-content {
  border-radius: 60px;
  background: linear-gradient(180deg, #cabc56 0%, #fff 100%),
    linear-gradient(180deg, #c0a4fa 0%, #d9caf8 100%);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.what-is h2 {
  color: #59524c;
  font-family: Almarai;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1.2px;
  margin-bottom: 32px;
}

.what-is-text p {
  color: #1d1a17;

  /* Regular (L) */
  font-family: Almarai;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%; /* 25.92px */
  letter-spacing: -0.09px;
  margin-bottom: 16px;
}

.what-is-text h3 {
  color: #1d1a17;
  font-family: Almarai;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 144%; /* 25.92px */
  letter-spacing: -0.09px;
  margin-bottom: 1rem;
}

.what-is-text ul {
  list-style: none;
  padding-left: 0;
}

.what-is-text li {
  color: #1d1a17;

  /* Regular (L) */
  font-family: Almarai;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%;
  letter-spacing: -0.09px;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.what-is-text li::before {
  content: "✓";
  color: #4caf50;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.feature-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
  background: white;
}

.gallery h2 {
  color: #59524c;
  text-align: center;
  font-family: Almarai;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.2px;
  margin-bottom: 56px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.gallery-image {
  width: 100%;
  height: 250px;
  padding: 24px;
  object-fit: cover;
  border-radius: 60px;
  background: #faf8ee;
  box-shadow: 0px 4px 24px 0px rgba(175, 175, 175, 0.25);
}

/* Did You Know Section */
.did-you-know {
  padding: 80px 0;
  background: #fff;
}

.did-you-know h2 {
  color: #59524c;
  font-family: Almarai;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
}

.did-you-know > .container > p {
  color: #1d1a17;

  /* Regular (L) */
  font-family: Almarai;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%; /* 25.92px */
  letter-spacing: -0.09px;
  margin-bottom: 40px;
}

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

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 60px;
  background: #faf8ee;
  box-shadow: 0px 4px 24px 0px rgba(175, 175, 175, 0.25);
  padding: 40px;
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.stat-card h3 {
  color: #1d1a17;
  text-align: center;
  font-family: Almarai;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 30px */
  letter-spacing: -0.48px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: white;
}

.testimonials h2 {
  color: #59524c;
  font-family: Almarai;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.2px;
  margin-bottom: 56px;
}

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

.testimonial-card {
  padding: 32px 24px;
  border-radius: 40px;
  background: linear-gradient(180deg, #cabc56 0%, #fff 100%),
    linear-gradient(180deg, #c0a4fa 0%, #d9caf8 100%);
}

.testimonial-rating {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.testimonial-card h3 {
  color: #1d1a17;
  font-family: Almarai;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 20px */
  letter-spacing: -0.4px;
  padding-bottom: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid #1d1a17;
}

.testimonial-card p {
  color: #1d1a17;

  /* Regular (L) */
  font-family: Almarai;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%; /* 25.92px */
  letter-spacing: -0.09px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.contact-info h2 {
  color: #59524c;
  font-family: Almarai;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.2px;
  margin-bottom: 24px;
}

.contact-info p {
  color: #1d1a17;

  /* Regular (L) */
  font-family: Almarai;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%; /* 25.92px */
  letter-spacing: -0.09px;
  margin-bottom: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.break {
  word-break: break-all;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact__text2 {
  color: #1d1a17;
  margin-bottom: 0 !important;
  /* Regular (L) */
  font-family: Almarai;
  text-align: left;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%; /* 25.92px */
  letter-spacing: -0.09px;
}

.character-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

.contact-form {
  border-radius: 60px;
  background: #faf8ee;
  box-shadow: 0px 4px 24px 0px rgba(175, 175, 175, 0.25);
  padding: 40px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4caf50;
}

.submit-btn {
  border-radius: 40px;
  background: radial-gradient(
    286.37% 67% at 4.6% 40.8%,
    #376200 0%,
    #77b900 100%
  );
  box-shadow: 0px -3px 3px 0px #2b4201 inset;

  border: none;
  padding: 20px;
  color: #fff;
  text-align: center;
  font-family: Almarai;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .terms h1 {
    font-size: 42px;
  }
  .footer__wrapper {
    padding-inline: 20px;
  }
  .burger-menu {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #ae9e28;
    flex-direction: column;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .hero-content {
    padding-inline: 20px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .what-is-content {
    padding-inline: 20px;
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .stats-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .gallery-image {
    height: 200px;
  }

  .navbar {
    padding: 1rem;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .about,
  .what-is,
  .gallery,
  .did-you-know,
  .testimonials,
  .contact {
    padding: 60px 0;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p,
  .what-is-text p,
  .contact-info p {
    font-size: 1rem;
  }

  .about h2,
  .gallery h2,
  .did-you-know h2,
  .testimonials h2 {
    font-size: 2rem;
  }

  .what-is-text h2,
  .contact-info h2 {
    font-size: 1.8rem;
  }

  .feature-card,
  .stat-card,
  .testimonial-card {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .gallery-image {
    height: 180px;
  }
}
