/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #ffffff;
  color: #111;
  overflow-x: hidden;
}

/* =========================
   CONTAINER
========================= */
.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}

/* =========================
   NAVBAR (PREMIUM)
========================= */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  z-index: 999;
  transition: 0.3s;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

.navbar a {
  margin-left: 25px;
  text-decoration: none;
  color: #222;
  position: relative;
  transition: 0.3s;
}

/* underline animation */
.navbar a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: #0bbf6a;
  transition: 0.3s;
}

.navbar a:hover::after {
  width: 100%;
}

/* =========================
   BUTTON (HIGH END)
========================= */
.btn-primary {
  background: #0bbf6a;
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 8px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* ripple effect */
.btn-primary::before {
  content: '';
  position: absolute;
  width: 0;
  height: 300%;
  background: rgba(255,255,255,0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: 0.4s;
}

.btn-primary:hover::before {
  width: 120%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* =========================
   HERO (DEPTH + DRAMA)
========================= */
.hero {
  height: 100vh;
  background: url('images/hero.png') center/cover no-repeat;
  position: relative;
}

.overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  color: #fff;
  max-width: 600px;
  animation: fadeUp 1s ease;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  margin-bottom: 30px;
  opacity: 0.9;
}

/* =========================
   PRODUCT GRID (NIKE STYLE)
========================= */
.products {
  padding: 100px 0;
}

.products h2 {
  text-align: center;
  margin-bottom: 60px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  transition: 0.4s;
}

.card img {
  width: 100%;
  display: block;
  transition: 0.5s;
}

.card h3 {
  padding: 15px;
}

/* hover zoom + overlay */
.card::after {
  content: 'Lihat Produk';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0bbf6a;
  color: #fff;
  padding: 10px 20px;
  opacity: 0;
  transition: 0.3s;
  border-radius: 6px;
}

.card:hover img {
  transform: scale(1.1);
}

.card:hover::after {
  opacity: 1;
}

/* =========================
   FEATURES (ICON STYLE)
========================= */
.features {
  background: #f7f7f7;
  padding: 100px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-grid div {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  transition: 0.3s;
}

.feature-grid div:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* =========================
   CTA (STRONG IMPACT)
========================= */
.cta {
  background: linear-gradient(135deg, #0bbf6a, #099e58);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.cta h2 {
  margin-bottom: 15px;
}

/* =========================
   ABOUT
========================= */
.about {
  padding: 100px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about img {
  width: 100%;
  border-radius: 12px;
}

/* =========================
   CONTACT / ORDER
========================= */
.contact, .order {
  padding: 100px 0;
  text-align: center;
}

.contact-box, .order-box {
  background: #f7f7f7;
  padding: 40px;
  border-radius: 12px;
  display: inline-block;
  transition: 0.3s;
}

.contact-box:hover {
  transform: scale(1.02);
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #111;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 30px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

}

/* CATEGORY */
.categories {
  padding: 60px 0;
  background: #fff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.category {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: #f7f7f7;
  transition: 0.3s;
  cursor: pointer;
}

.category img {
  width: 50px;
  margin-bottom: 10px;
}

.category:hover {
  transform: translateY(-8px);
  background: #0bbf6a;
  color: #fff;
}

/* CARD INFO */
.card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

/* BUTTON IN CARD */
.card .btn-primary {
  display: block;
  margin: 15px;
  text-align: center;
}


/* ABOUT POINT */
.about-point {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.about-point img {
  width: 40px;
}

.about-point:hover {
  transform: translateX(10px);
}

/* VISION */
.vision {
  padding: 100px 0;
  background: #fff;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.vision-box {
  background: #f7f7f7;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}

.vision-box img {
  width: 60px;
  margin-bottom: 15px;
}

.vision-box:hover {
  transform: translateY(-10px);
  background: #0bbf6a;
  color: #fff;
}


/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

/* ITEM */
.contact-item {
  text-align: center;
  background: #f7f7f7;
  padding: 40px;
  border-radius: 12px;
  transition: 0.3s;
  cursor: pointer;
}

.contact-item img {
  width: 60px;
  margin-bottom: 15px;
}

.contact-item:hover {
  transform: translateY(-10px);
  background: #0bbf6a;
  color: #fff;
}

/* MAP */
.map {
  padding: 80px 0;
}

.map img {
  width: 100%;
  border-radius: 12px;
  transition: 0.3s;
}

.map img:hover {
  transform: scale(1.02);
}


/* GRID */
.order-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

/* ITEM */
.order-item {
  text-align: center;
  background: #f7f7f7;
  padding: 40px;
  border-radius: 12px;
  transition: 0.3s;
}

.order-item img {
  width: 60px;
  margin-bottom: 15px;
}

.order-item:hover {
  transform: translateY(-10px) scale(1.02);
  background: #0bbf6a;
  color: #fff;
}

/* BUTTON INSIDE */
.order-item .btn-primary {
  margin-top: 15px;
  display: inline-block;
}


/* NAVBAR BASE */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  transition: 0.3s;
}

/* CONTENT */
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo-text {
  font-weight: bold;
  font-size: 22px;
  position: relative;
  cursor: pointer;
}

/* glow hover */
.logo-text:hover {
  color: #0bbf6a;
}

/* MENU */
.nav-menu a {
  margin: 0 15px;
  text-decoration: none;
  color: #222;
  position: relative;
  transition: 0.3s;
}

/* underline anim */
.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #0bbf6a;
  transition: 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* CTA */
.nav-cta .btn-primary {
  padding: 10px 18px;
}

/* TOGGLE (HAMBURGER) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #222;
  margin: 4px 0;
  transition: 0.3s;
}

/* =========================
   MOBILE MENU
========================= */
@media (max-width: 768px) {

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
  }

  .nav-menu a {
    color: #fff;
    font-size: 20px;
    margin: 20px 0;
  }

  .nav-menu.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

}