:root {
    --primary: #78C841;
    --bg: #f9f5f0;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 100%;
    overflow-x: hidden;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg);
    color: #333;
  }
  
/* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 7%;
    background-color: var(--primary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
  }
  
  .navbar .navbar-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
  }
  
  .navbar .navbar-logo span {
    color: #fff;
  }
  
  .navbar .navbar-nav {
    display: flex;
  }
  
  .navbar .navbar-nav a {
    color: #fff;
    font-size: 1.3rem;
    margin: 0 1rem;
    font-weight: 600;
    position: relative;
    transition: 0.3s;
  }
  
  .navbar .navbar-nav a:hover {
    color: var(--bg);
  }
  
  .navbar .navbar-nav a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--bg);
    bottom: -4px;
    left: 0;
    transition: 0.3s ease-in-out;
  }
  
  .navbar .navbar-nav a:hover::after {
    width: 50%;
  }
  
  .navbar .navbar-ekstra a {
    color: #fff;
    margin-left: 1rem;
  }
  
  #hamburger-menu {
    display: none;
  }
  
/* Hero */
  .hero {
    min-height: 100vh;
    background: url('../img/background 2.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 0;
    background: linear-gradient(0deg, #ffffff00 8%, #ffffff00 50%);
  }
  
  .hero .content {
    padding: 2rem 7%;
    max-width: 60rem;
    z-index: 1;
  }
  
  .hero .content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 3px #000;
  }
  
  .hero .content p {
    font-size: 1.4rem;
    color: #fff;
    margin-top: 1rem;
    text-shadow: 1px 1px 3px #000;
    line-height: 1.6;
  }
  
  .hero .content .cta {
    display: inline-block;
    margin-top: 1.5rem;
    background-color: var(--primary);
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 1px 1px 3px #00000033;
    transition: background-color 0.3s ease;
  }
  
  .hero .content .cta:hover {
    background-color: #65ab34;
  }
  
/* Sections */
  section {
    padding: 8rem 7% 2rem;
  }
  
  section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
  }
  
  section h2 span {
    color: var(--primary);
  }
  
  /* About */
  .about .row .content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .about .row .content p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
/* Menu */
  .menu .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
  }
  
  .menu-card {
    text-align: center;
    flex: 1 1 250px;
  }
  
  .menu-card img {
    width: 80%;
    border-radius: 50%;
  }
  
  .menu-card-title {
    margin-top: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
  }
  
  .menu-card-price {
    font-size: 1.2rem;
    color: #555;
    margin-top: 0.3rem;
  }

/* Tombol WhatsApp */
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--primary);
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  margin-top: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.whatsapp-button:hover {
  background-color: #65ab34;
  color: #fff;
}

.whatsapp-button i {
  width: 20px;
  height: 20px;
}

/* Deskripsi menu */
.menu-card-desc {
  margin: 10px 0;
  font-size: 1rem;
  color: #555;
  padding: 0 10px;
}
  
/* Kontak */
  .contact .row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .contact .map {
    flex: 1 1 45rem;
    min-height: 350px;
    width: 100%;
    border: none;
  }
  
  .contact .contact-info {
    flex: 1 1 45rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--bg);
    border: 1px solid #eee;
    padding: 1rem;
    border-radius: 8px;
  }
  
  .contact-detail i {
    width: 32px;
    height: 32px;
    color: var(--primary);
  }
  
  .contact-detail-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
  }
  
  .contact-detail-content p,
  .contact-detail-content a {
    font-size: 1rem;
    color: #333;
  }
  
/* Footer */
  footer {
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    padding: 2rem 0;
  }
  
  footer .socials a {
    margin: 0 0.5rem;
    color: #fff;
    font-size: 1.5rem;
    display: inline-block;
  }
  
  footer .socials a:hover,
  footer .links a:hover {
    color: var(--bg);
  }
  
  footer .links {
    margin: 1rem 0;
  }
  
  footer .links a {
    color: #fff;
    margin: 0 1rem;
    font-weight: 500;
  }
  
  footer .credit {
    font-size: 0.9rem;
  }
  
  footer .credit a {
    font-weight: bold;
    color: #fff;
  }
  
/* Responsiv */
  @media (max-width: 768px) {
    html {
      font-size: 62.5%;
    }
  
    #hamburger-menu {
      display: inline-block;
    }
  
    .navbar .navbar-nav {
      position: absolute;
      top: 100%;
      right: -100%;
      background-color: #fff;
      width: 30rem;
      height: 100vh;
      flex-direction: column;
      padding: 2rem;
      transition: all 0.3s ease-in-out;
    }
  
    .navbar-nav.active {
      right: 0;
    }
  
    .navbar .navbar-nav a {
      color: #000;
      font-size: 2rem;
      margin: 1.5rem 0;
    }
  
    .contact .row {
      flex-direction: column;
    }
  
    .contact .map,
    .contact .contact-info {
      flex: 1 1 100%;
    }
  }
  
  @media (max-width: 450px) {
    html {
      font-size: 55%;
    }
  
    .hero .content h1 {
      font-size: 3rem;
    }
  }
  