@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Patrick+Hand&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #8bc34a;
  --green-dark: #6ea332;
  --black: #111111;
  --white: #ffffff;
  --gray: #f4f4f4;
  --gray-dark: #777777;
  --border: #e6e6e6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--red);
  color: var(--black);
  overflow-x: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Patrick Hand', cursive;
  color: #8BC34A;
}


img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section {
  padding: 100px 0;
}

/* NAVBAR */

nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-dark);
}

.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--green-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--black);
  background: transparent;
  color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

/* HERO */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
  url('../img/background1.jpg')
    center/cover no-repeat;
}

.hero-content {
  max-width: 700px;
}

.hero-subtitle {
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}


.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero p {
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* TITLES */

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  color: var(--green-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.section-title p {
  max-width: 650px;
  margin: auto;
  color: var(--gray-dark);
}

/* FEATURES */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--gray);
  padding: 40px 30px;
  border-radius: 24px;
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: #eef7e3;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--green);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 25px;
}

.feature-card h3 {
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--gray-dark);
  line-height: 1.7;
}







/* MENU */

.menu-section {
  background: #d0eb96;
  border-radius: 40px;
  width: 90%;
  margin: 0 auto;
  padding: 70px 80px;
}

.menu-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.menu-text {
  flex: 1;
  text-align: left;
}

.menu-section h2 {
  font-size: 3.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.menu-section p {
  font-size: 1.15rem;
  color: #666666;
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.menu-btn {
  display: inline-block;
  background: #84c341;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 18px 35px;
  border-radius: 999px;
  transition: 0.3s ease;
}

.menu-btn:hover {
  background: #74b134;
}

.menu-image {
  flex: 0 0 55%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-image img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
}

/* Tablet */

@media (max-width: 1200px) {
  .menu-section {
    padding: 60px;
  }

  .menu-section h2 {
    font-size: 3rem;
  }

  .menu-image img {
    max-width: 550px;
  }
}

/* Smartphone */

@media (max-width: 900px) {
  .menu-section {
    padding: 40px 25px;
  }

  .menu-content {
    flex-direction: column;
    text-align: center;
  }

  .menu-text {
    text-align: center;
  }

  .menu-section h2 {
    font-size: 2.4rem;
  }

  .menu-section p {
    max-width: 100%;
  }

  .menu-image {
    width: 100%;
  }

  .menu-image img {
    max-width: 450px;
  }
}
















/* Mobil */
@media (max-width: 900px) {
  .menu-section {
    padding: 50px 30px;
  }

  .menu-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .menu-image img {
    max-width: 320px;
  }
}

/* Mobil */
@media (max-width: 768px) {
  .menu-content {
    flex-direction: column;
  }

  .menu-image {
    min-height: 300px;
  }
}

/* GALLERY */

.gallery-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.gallery-text h2 {
  font-size: 3rem;
  margin-bottom: 25px;
}

.gallery-text p {
  color: var(--gray-dark);
  line-height: 1.9;
  margin-bottom: 25px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-grid img {
  border-radius: 24px;
  height: 250px;
  object-fit: cover;
}

.gallery-grid img:nth-child(3) {
  grid-column: span 2;
  height: 320px;
}

/* CONTACT */

.contact-section {
  background: var(--gray);
  border-radius: 40px;
  width: 90%;
  margin: auto;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
}

.contact-info h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form {
  background: white;
  padding: 40px;
  border-radius: 28px;
}

.input-group {
  margin-bottom: 20px;
}

input,
textarea {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--gray-dark);
}

/* MOBILE */

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 900px) {

  .hero h1 {
    font-size: 3rem;
  }

  .gallery-wrapper {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 30px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 600px) {

  .hero h1 {
    font-size: 2.2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img:nth-child(3) {
    grid-column: span 1;
  }
}

/* ANIMATION */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}