@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --green: #146321;
  --green-dark: #0b3d15;
  --cream: #f3f0df;
  --lime: #d8ff4f;
  --black: #111111;
  --white: #ffffff;
  --border: rgba(17, 17, 17, 0.14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  min-height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 5vw;

  background: rgba(243, 240, 223, 0.92);

  backdrop-filter: blur(18px);

  border-bottom: 1px solid var(--border);
}

.brand {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 600;
}

.nav-menu a:hover {
  opacity: 0.5;
}

.nav-cta {
  padding: 13px 20px;

  background: var(--green);
  color: var(--white);

  border-radius: 100px;

  font-size: 14px;
  font-weight: 600;
}

.menu-toggle {
  display: none;

  border: none;
  background: none;

  font-size: 28px;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  padding: 130px 5vw 70px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;

  position: relative;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(70px, 8.5vw, 135px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.075em;

  max-width: 850px;
}

.hero h1 span {
  color: var(--green);
}

.hero-description {
  margin-top: 32px;

  max-width: 530px;

  font-size: 18px;
  line-height: 1.6;

  opacity: 0.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.hero-meta {
  margin-top: 55px;

  display: flex;
  gap: 40px;

  border-top: 1px solid var(--border);
  padding-top: 25px;
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta strong {
  font-size: 14px;
}

.hero-meta span {
  font-size: 12px;
  opacity: 0.5;
}

.hero-visual {
  min-height: 650px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle {
  width: min(38vw, 520px);
  aspect-ratio: 1;

  border-radius: 50%;

  background: var(--green);

  position: absolute;
}

.hero-durian {
  position: relative;
  z-index: 2;

  width: min(46vw, 650px);

  object-fit: contain;

  filter: drop-shadow(
    0 40px 40px rgba(0, 0, 0, 0.25)
  );

  animation: floatingDurian 4s ease-in-out infinite;
}

.hero-price {
  position: absolute;

  right: 0;
  bottom: 90px;

  z-index: 5;

  width: 150px;
  height: 150px;

  border-radius: 50%;

  background: var(--lime);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transform: rotate(8deg);
}

.hero-price span {
  font-size: 11px;
  font-weight: 700;
}

.hero-price strong {
  font-family: "Manrope";
  font-size: 28px;
  line-height: 1;
}

.hero-price small {
  font-weight: 700;
}

.hero-sticker {
  position: absolute;

  top: 120px;
  left: 0;

  z-index: 5;

  background: var(--black);
  color: var(--white);

  border-radius: 100px;

  padding: 18px 22px;

  font-size: 11px;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;

  transform: rotate(-10deg);
}

@keyframes floatingDurian {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-18px) rotate(2deg);
  }

}

.ticker {
  background: var(--green);
  color: var(--white);

  overflow: hidden;

  padding: 22px 0;
}

.ticker-content {
  display: flex;
  justify-content: space-around;

  min-width: 1000px;

  font-family: "Manrope";
  font-size: 18px;

  font-weight: 700;
}

.ticker-content span::after {
  content: "✦";
  margin-left: 50px;

  color: var(--lime);
}

.section {
  padding: 120px 5vw;
}

.section-heading {
  max-width: 900px;
}

.section-heading h2 {
  font-family: "Manrope";
  font-size: clamp(50px, 7vw, 100px);

  line-height: 0.95;

  letter-spacing: -0.06em;
}

.section-heading h2 span {
  color: var(--green);
}

.promo-card {
  margin-top: 70px;

  background: var(--green);

  color: var(--white);

  min-height: 400px;

  padding: 50px;

  border-radius: 30px;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.promo-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 700;

  margin-bottom: 15px;
}

.promo-card h3 {
  font-family: "Manrope";
  font-size: clamp(50px, 7vw, 110px);

  letter-spacing: -0.06em;
}

.promo-card p {
  opacity: 0.7;
}

.promo-price {
  text-align: right;
}

.promo-price small,
.promo-price span {
  display: block;
}

.promo-price strong {
  font-family: "Manrope";
  font-size: clamp(50px, 7vw, 100px);

  line-height: 1;
}

.product-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

  margin-top: 60px;
}

.product-card {
  background: var(--white);

  border-radius: 24px;

  overflow: hidden;
}

.product-image {
  height: 380px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-info {
  padding: 30px;
}

.product-category {
  font-size: 11px;

  letter-spacing: 0.12em;

  font-weight: 700;

  color: var(--green);
}

.product-info h3 {
  margin-top: 10px;

  font-family: "Manrope";
  font-size: 28px;
}

.product-info p {
  margin-top: 12px;

  line-height: 1.5;

  opacity: 0.65;
}

.product-info a {
  display: inline-block;

  margin-top: 25px;

  font-size: 13px;
  font-weight: 700;
}

.about {
  display: grid;

  grid-template-columns: 0.35fr 1fr;

  gap: 60px;

  background: var(--black);
  color: var(--white);
}

.about-number {
  font-size: 14px;

  opacity: 0.5;
}

.about-copy h2 {
  font-family: "Manrope";

  font-size: clamp(45px, 6vw, 90px);

  letter-spacing: -0.06em;

  line-height: 1;
}

.about-copy h2 span {
  color: var(--lime);
}

.about-copy > p:last-child {
  margin-top: 35px;

  max-width: 650px;

  font-size: 18px;
  line-height: 1.7;

  opacity: 0.65;
}

.location {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  align-items: center;

  gap: 70px;
}

.location h2 {
  font-family: "Manrope";

  font-size: clamp(48px, 6vw, 90px);

  letter-spacing: -0.06em;

  line-height: 1;
}

.location-address {
  margin: 25px 0;

  font-size: 18px;

  opacity: 0.65;
}

.map-placeholder {
  height: 500px;

  background: var(--green);

  color: var(--white);

  border-radius: 28px;

  display: flex;

  align-items: center;
  justify-content: center;

  font-family: "Manrope";

  font-size: 35px;
  font-weight: 800;
}

footer {
  background: var(--green-dark);

  color: var(--white);

  padding: 80px 5vw 30px;

  display: grid;

  gap: 50px;
}

.footer-brand {
  font-family: "Manrope";

  font-size: clamp(50px, 9vw, 140px);

  letter-spacing: -0.07em;

  font-weight: 800;
}

.footer-links {
  display: flex;

  gap: 30px;

  font-size: 14px;
}

footer p {
  font-size: 12px;

  opacity: 0.5;
}

@media (max-width: 900px) {

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu.active {
    position: absolute;

    top: 82px;
    left: 0;
    right: 0;

    display: flex;

    flex-direction: column;

    padding: 30px;

    background: var(--cream);

    border-bottom: 1px solid var(--border);
  }

  .hero {
    grid-template-columns: 1fr;

    padding-top: 130px;
  }

  .hero h1 {
    font-size: clamp(60px, 16vw, 110px);
  }

  .hero-visual {
    margin-top: 30px;
  }

  .durian-placeholder {
    width: min(85vw, 500px);
  }

  .promo-card {
    flex-direction: column;

    align-items: flex-start;

    gap: 80px;
  }

  .promo-price {
    text-align: left;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .location {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 600px) {

  .navbar {
    min-height: 72px;
  }

  .section {
    padding: 85px 20px;
  }

  .hero {
    padding:
      115px 20px
      70px;
  }

  .hero h1 {
    letter-spacing: -0.06em;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;

    align-items: flex-start;
  }

  .promo-card {
    padding: 30px;

    border-radius: 20px;
  }

  .product-image {
    height: 300px;
  }

  .location {
    padding-left: 20px;
    padding-right: 20px;
  }

  .map-placeholder {
    height: 350px;
  }

  footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* =========================
   PRODUCT HOVER EFFECT
========================= */

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.map-wrap {
  height: 500px;
  border-radius: 28px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* =========================
   MULTI BRANCH LOCATION
========================= */

.location-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.location-header {
  max-width: 900px;
}

.location-header h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(50px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.location-header h2 span {
  color: var(--green);
}


/* BRANCH BUTTON */

.branch-tabs {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;

  margin-top: 45px;
  margin-bottom: 35px;
}

.branch-tab {
  padding: 13px 22px;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 100px;

  background: transparent;

  cursor: pointer;

  font-size: 14px;
  font-weight: 600;

  transition: 0.25s ease;
}

.branch-tab:hover {
  background: rgba(20, 99, 33, 0.08);
}

.branch-tab.active {
  background: var(--green);
  color: white;

  border-color: var(--green);
}


/* LOCATION CONTENT */

.location-content {
  display: grid;

  grid-template-columns: 0.65fr 1.35fr;

  gap: 30px;
}


/* BRANCH INFORMATION */

.branch-info {
  min-height: 500px;

  padding: 45px;

  background: white;

  border-radius: 28px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.branch-label {
  font-size: 11px;

  letter-spacing: 0.15em;

  font-weight: 700;

  color: var(--green);
}

.branch-info h3 {
  margin-top: 20px;

  font-family: "Manrope", sans-serif;

  font-size: clamp(35px, 4vw, 55px);

  line-height: 1;

  letter-spacing: -0.05em;
}

.location-address {
  margin-top: 25px;

  max-width: 400px;

  font-size: 16px;
  line-height: 1.6;

  opacity: 0.6;
}

.branch-info .button {
  margin-top: auto;
}


/* MAP */

.map-wrap {
  height: 500px;

  border-radius: 28px;

  overflow: hidden;

  background: #ddd;
}

.map-wrap iframe {
  display: block;

  width: 100%;
  height: 100%;

  border: 0;
}


/* MOBILE */

@media (max-width: 800px) {

  .location-content {
    grid-template-columns: 1fr;
  }

  .branch-info {
    min-height: 350px;
  }

  .map-wrap {
    height: 400px;
  }

}