@import url('https://use.typekit.net/oov2wcw.css');


/* ==================================================
   ROOT
================================================== */

:root {
  --color-baby-yellow: #f7e77d;
  --color-brown-title: #a3481b;
  --color-sunflower: #f4c400;
  --color-dark: #1d1d1d;

  --font-main:
    "futura-pt",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}


/* ==================================================
   RESET
================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);

  font-weight: 500;

  color: var(--color-dark);

  line-height: 1.5;

  min-height: 100vh;

  /*
  ==================================================
  BACKGROUND UTAMA WEBSITE
  ==================================================

  Background hanya berada pada body.

  Section lain dibuat transparan sehingga
  background ini tetap terlihat.
  */

  background-color: #f7e77d;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.68),
      rgba(255, 225, 100, 0.72)
    ),
    url('../assets/images/homepage/bg-home.png');

  background-size: cover;

  background-repeat: no-repeat;

  background-position: center center;

  background-attachment: fixed;
}


/* ==================================================
   CONTAINER
================================================== */

.container {
  width: 100%;

  max-width: 1100px;

  margin: 0 auto;

  padding: 0 2rem;

  background: transparent;

  box-shadow: none;

  border: none;
}


/* ==================================================
   NAVBAR
================================================== */

.navbar {
  width: 100%;

  height: 54px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 251, 190, 0.96) 0%,
      rgba(255, 226, 104, 0.96) 100%
    );

  backdrop-filter: blur(8px);

  position: sticky;

  top: 0;

  z-index: 1000;

  display: flex;

  align-items: center;

  box-shadow: none;

  border: none;
}


/* ==================================================
   NAVBAR CONTAINER
================================================== */

.nav-container {
  width: 100%;

  max-width: 1100px;

  margin: 0 auto;

  padding: 0 2rem;

  display: flex;

  justify-content: space-between;

  align-items: center;

  background: transparent;

  box-shadow: none;
}


/* ==================================================
   NAVBAR LOGO
================================================== */

.nav-logo {
  display: flex;

  align-items: center;

  text-decoration: none;
}

.nav-logo img {
  width: 30px;

  height: 30px;

  object-fit: contain;
}


/* ==================================================
   NAVBAR LINKS
================================================== */

.nav-links {
  display: flex;

  align-items: center;

  gap: 3.8rem;
}

.nav-item {
  display: flex;

  align-items: center;

  gap: 0.55rem;

  text-decoration: none;

  color: #111;

  font-size: 0.8rem;

  font-weight: 700;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-item:hover {
  transform: translateY(-2px);

  opacity: 0.8;
}

.nav-item img {
  width: 27px;

  height: 27px;

  object-fit: contain;
}


/* ==================================================
   HERO SECTION
================================================== */

.hero-section {
  width: 100%;

  /*
  Jarak dari navbar ke hero.

  Padding berada pada section,
  bukan pada hero-content.

  Dengan begitu gambar dan tulisan
  tetap sejajar secara vertikal.
  */

  padding: 4.9rem 0 2rem;

  /*
  HERO TRANSPARAN
  */

  background: transparent;

  /*
  TIDAK ADA SHADOW
  */

  box-shadow: none;

  border: none;
}


/* ==================================================
   HERO GRID
================================================== */

.hero-grid {
  display: grid;

  /*
  Kolom kiri untuk gambar.
  Kolom kanan untuk konten.
  */

  grid-template-columns:
    0.9fr
    1.1fr;

  gap: 4.5rem;

  /*
  PENTING

  Kedua kolom dimulai dari posisi
  vertikal yang sama.
  */

  align-items: start;

  background: transparent;

  box-shadow: none;

  border: none;
}


/* ==================================================
   HERO IMAGE WRAPPER
================================================== */

.hero-image-wrapper {
  position: relative;

  /*
  Gambar sedikit melebar ke arah kiri
  seperti pada mockup.
  */

  width: calc(100% + 2rem);

  margin-left: -2rem;

  overflow: hidden;

  /*
  TIDAK ADA SHADOW
  */

  box-shadow: none;

  background: transparent;

  border: none;
}


/* ==================================================
   HERO IMAGE OVERLAY
================================================== */

/*
Overlay ini bukan shadow.

Overlay digunakan untuk membuat
gambar hero sebelah kiri terlihat
lebih gelap seperti mockup.
*/

.hero-overlay {
  display: none;
}


/* ==================================================
   HERO IMAGE
================================================== */

.hero-img {
  width: 100%;

  height: 400px;

  display: block;

  object-fit: cover;

  object-position: center;

  /*
  TIDAK ADA SHADOW
  */

  box-shadow: none;

  border: none;

  filter: saturate(0.9);
}


/* ==================================================
   HERO CONTENT
================================================== */

.hero-content {
  /*
  PENTING

  Jangan menggunakan padding-top di sini.

  Sebelumnya:
  padding-top: 3.5rem;

  Sekarang:
  padding-top: 0;

  Hasilnya:
  Posisi "Durian Makes You Happy"
  sejajar dengan bagian atas gambar.
  */

  padding-top: 0;

  background: transparent;

  box-shadow: none;

  border: none;
}


/* ==================================================
   HERO TITLE
================================================== */

.hero-title {
  font-size: clamp(
    3rem,
    4vw,
    4rem
  );

  font-weight: 700;

  color: var(--color-brown-title);

  line-height: 0.98;

  /*
  Pastikan tidak ada margin
  di bagian atas.
  */

  margin-top: 0;

  margin-bottom: 1.3rem;
}


/* ==================================================
   HERO SUBTITLE
================================================== */

.hero-subtitle {
  font-size: 1.05rem;

  font-weight: 700;

  color: var(--color-sunflower);

  margin-top: 0;

  margin-bottom: 1.5rem;
}


/* ==================================================
   HERO DESCRIPTION
================================================== */

.hero-desc {
  max-width: 430px;

  font-size: 0.78rem;

  color: #222;

  margin-top: 0;

  margin-bottom: 3.5rem;

  font-weight: 500;

  line-height: 1.5;
}


/* ==================================================
   HERO GALLERY
================================================== */

.hero-gallery {
  display: flex;

  align-items: center;

  gap: 1.5rem;

  background: transparent;

  box-shadow: none;

  border: none;
}

.hero-gallery img {
  width: 90px;

  height: 123px;

  object-fit: cover;

  border-radius: 0;

  /*
  Tidak ada shadow.
  */

  box-shadow: none;

  border: none;

  transition:
    transform 0.3s ease;
}

.hero-gallery img:hover {
  transform: translateY(-5px);
}


/* ==================================================
   ABOUT SECTION
================================================== */

.about-section {
  width: 100%;

  padding: 4.5rem 0 5rem;

  background: transparent;

  box-shadow: none;

  border: none;
}


/* ==================================================
   ABOUT GRID
================================================== */

.about-grid {
  display: grid;

  grid-template-columns:
    0.9fr
    1.1fr;

  gap: 4.5rem;

  align-items: center;

  background: transparent;

  box-shadow: none;

  border: none;
}


/* ==================================================
   ABOUT TITLE
================================================== */

.about-title-wrapper {
  background: transparent;

  box-shadow: none;

  border: none;
}

.about-title-wrapper h2 {
  font-size: clamp(
    3rem,
    4vw,
    4rem
  );

  font-weight: 700;

  color: var(--color-brown-title);

  line-height: 0.98;

  margin: 0;
}


/* ==================================================
   ABOUT CONTENT
================================================== */

.about-content {
  background: transparent;

  box-shadow: none;

  border: none;
}

.about-content p {
  max-width: 500px;

  font-size: 0.78rem;

  line-height: 1.55;

  color: #222;

  text-align: justify;

  margin: 0;
}


/* ==================================================
   FOOTER
================================================== */

.footer {
  width: 100%;

  padding: 1rem 0 2rem;

  background: transparent;

  box-shadow: none;

  border: none;
}


/* ==================================================
   FOOTER GRID
================================================== */

.footer-grid {
  display: grid;

  grid-template-columns:
    0.8fr
    1fr
    1fr
    1.5fr;

  gap: 2rem;

  align-items: center;

  background: transparent;

  box-shadow: none;

  border: none;
}


/* ==================================================
   FOOTER BRAND
================================================== */

.footer-brand {
  display: flex;

  align-items: center;

  background: transparent;
}

.footer-logo {
  width: 70px;

  height: auto;

  object-fit: contain;

  box-shadow: none;

  border: none;
}


/* ==================================================
   FOOTER INFO
================================================== */

.footer-info {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 0.5rem;

  font-size: 0.7rem;

  font-weight: 700;

  color: #111;

  text-align: center;

  background: transparent;

  box-shadow: none;

  border: none;
}


/* ==================================================
   FOOTER ICON
================================================== */

.footer-icon {
  width: 22px;

  height: 22px;

  object-fit: contain;

  box-shadow: none;

  border: none;
}


/* ==================================================
   FOOTER ADDRESS
================================================== */

.footer-info address {
  font-style: normal;

  font-weight: 700;

  line-height: 1.3;

  max-width: 220px;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

  /* Navbar */

  .nav-links {
    gap: 2rem;
  }


  /* Hero */

  .hero-grid {
    grid-template-columns:
      1fr
      1fr;

    gap: 2.5rem;
  }

  .hero-image-wrapper {
    width: 100%;

    margin-left: 0;
  }

  /*
  Tetap 0 agar tulisan
  sejajar dengan gambar.
  */

  .hero-content {
    padding-top: 0;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-gallery {
    gap: 1rem;
  }

  .hero-gallery img {
    width: 80px;

    height: 110px;
  }


  /* About */

  .about-grid {
    gap: 2.5rem;
  }

  .about-title-wrapper h2 {
    font-size: 3rem;
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px) {

  body {
    /*
    Fixed background dimatikan di mobile
    untuk performa yang lebih baik.
    */

    background-attachment: scroll;
  }


  /* Container */

  .container {
    padding: 0 1.5rem;
  }


  /* ================================================
     NAVBAR MOBILE
  ================================================ */

  .navbar {
    height: auto;

    padding: 0.7rem 0;
  }

  .nav-container {
    padding: 0 1.5rem;
  }

  .nav-logo img {
    width: 28px;

    height: 28px;
  }

  .nav-links {
    gap: 1rem;
  }

  /*
  Pada mobile hanya ikon yang ditampilkan.
  */

  .nav-item {
    font-size: 0;
  }

  .nav-item img {
    width: 25px;

    height: 25px;
  }


  /* ================================================
     HERO MOBILE
  ================================================ */

  .hero-section {
    padding: 2rem 0;
  }

  /*
  Di mobile gambar dan konten
  berubah menjadi satu kolom.
  */

  .hero-grid {
    grid-template-columns: 1fr;

    gap: 2rem;
  }

  .hero-image-wrapper {
    width: 100%;

    margin-left: 0;

    box-shadow: none;
  }

  .hero-img {
    height: 260px;

    box-shadow: none;
  }

  /*
  Tetap tanpa padding top.
  */

  .hero-content {
    padding-top: 0;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-desc {
    margin-bottom: 2rem;
  }


  /* Gallery */

  .hero-gallery {
    gap: 1rem;
  }

  .hero-gallery img {
    width: 30%;

    height: 120px;

    box-shadow: none;
  }


  /* ================================================
     ABOUT MOBILE
  ================================================ */

  .about-section {
    padding: 2rem 0 3rem;
  }

  .about-grid {
    grid-template-columns: 1fr;

    gap: 2rem;
  }

  .about-title-wrapper h2 {
    font-size: 3rem;
  }

  .about-content p {
    max-width: 100%;
  }


  /* ================================================
     FOOTER MOBILE
  ================================================ */

  .footer {
    padding: 2rem 0;
  }

  .footer-grid {
    grid-template-columns:
      1fr
      1fr;

    gap: 2rem;
  }

  .footer-brand {
    justify-content: center;
  }
}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 480px) {

  /* Navbar */

  .nav-links {
    gap: 0.8rem;
  }

  .nav-item img {
    width: 22px;

    height: 22px;
  }


  /* Hero */

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-gallery img {
    height: 100px;
  }


  /* Footer */

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================================================
   HALAMAN MENU SPECIFIC STYLES
================================================== */

.menu-header {
  text-align: center;
  padding: 3rem 0 1rem;
}

.page-title {
  font-size: clamp(3.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #111;
  letter-spacing: -1px;
  line-height: 1;
}

.menu-section {
  padding: 2rem 0 4rem;
}

.menu-category {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: start;
}

.category-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #111;
  line-height: 1.1;
  padding-top: 0.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: transparent;
}

.product-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 1.2rem;
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-info {
  text-align: center;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.6rem;
}

.product-desc {
  font-size: 0.8rem;
  font-weight: 500;
  color: #222;
  line-height: 1.4;
  max-width: 220px;
  margin: 0 auto;
}

/* Responsive Menu Page */
@media (max-width: 900px) {
  .menu-category {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .products-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .category-title {
    text-align: center;
  }
}

/* ==================================================
   BACKGROUND KHUSUS HALAMAN MENU
================================================== */

body.page-menu {
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.68),
      rgba(255, 225, 100, 0.72)
    ),
    url('../assets/images/menu/bg-menu.png'); /* Sesuaikan lokasi file bg-menu.png */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

/* ==================================================
   CONTACT PAGE
================================================== */

.page-kontak {
  min-height: 100vh;

  background-color: #f7e77d;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.68),
      rgba(255, 225, 100, 0.72)
    ),
    url('../assets/images/homepage/bg-home.png');

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}


/* ==================================================
   CONTACT PAGE MAIN
================================================== */

.contact-page {
  width: 100%;
}


/* ==================================================
   CONTACT HERO
================================================== */

.contact-hero {
  width: 100%;

  padding: 5rem 0 3rem;

  background: transparent;

  box-shadow: none;
  border: none;
}


/* ==================================================
   CONTACT HERO GRID
================================================== */

.contact-hero-grid {

  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 3rem;

  align-items: center;

  background: transparent;

  box-shadow: none;
  border: none;
}


/* ==================================================
   CONTACT HERO IMAGE
================================================== */

.contact-hero-image {

  width: 100%;

  height: 270px;

  overflow: hidden;

  background: transparent;

  box-shadow: none;
  border: none;
}


.contact-hero-image img {

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  box-shadow: none;
  border: none;
}


/* ==================================================
   CONTACT HERO CONTENT
================================================== */

.contact-hero-content {

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: flex-start;

  background: transparent;

  box-shadow: none;
  border: none;
}


.contact-hero-content h1 {

  margin: 0 0 1.5rem;

  font-size: clamp(
    2rem,
    3vw,
    3rem
  );

  font-weight: 700;

  line-height: 1.05;

  color: var(--color-brown-title);
}


.contact-hero-content p {

  margin: 0;

  font-size: 1rem;

  font-weight: 700;

  color: var(--color-sunflower);

}


/* ==================================================
   CONTACT SECTION
================================================== */

.contact-section {

  width: 100%;

  padding: 2rem 0 5rem;

  background: transparent;

  box-shadow: none;
  border: none;
}


/* ==================================================
   CONTACT CARD
================================================== */

.contact-card {

  width: 100%;

  min-height: 245px;

  padding: 2.5rem 3rem;

  display: grid;

  grid-template-columns:
    0.8fr
    1.5fr;

  gap: 3rem;

  align-items: start;

  background: #f4c400;

  border-radius: 14px;

  box-shadow: none;

  border: none;
}


/* ==================================================
   CONTACT CARD TITLE
================================================== */

.contact-card-title {

  display: flex;

  align-items: flex-start;

  justify-content: flex-start;
}


.contact-card-title h2 {

  margin: 0;

  font-size: clamp(
    2rem,
    3vw,
    2.8rem
  );

  font-weight: 700;

  line-height: 1;

  color: #000;
}


/* ==================================================
   CONTACT INFORMATION GRID
================================================== */

.contact-card-info {

  display: grid;

  grid-template-columns:
    1fr
    1fr;

  column-gap: 3rem;

  row-gap: 2rem;

}


/* ==================================================
   CONTACT ITEM
================================================== */

.contact-item {

  display: flex;

  align-items: flex-start;

  gap: 1rem;

  color: #000;
}


.contact-item img {

  width: 22px;

  height: 22px;

  flex-shrink: 0;

  object-fit: contain;

  margin-top: 2px;

  box-shadow: none;

  border: none;
}


.contact-item p {

  margin: 0;

  font-size: 0.75rem;

  font-weight: 500;

  line-height: 1.45;

  color: #000;
}


.contact-label {

  display: block;

  margin-bottom: 0.6rem;

  font-size: 0.75rem;

  font-weight: 700;

  color: #000;
}


/* ==================================================
   OPERATIONAL HOURS
================================================== */

.operational-hours {

  display: flex;

  flex-direction: column;

  gap: 0.4rem;
}


.operational-hours div {

  display: grid;

  grid-template-columns:
    1fr
    auto;

  gap: 2rem;

  min-width: 280px;
}


.operational-hours strong {

  font-size: 0.7rem;

  font-weight: 700;

  color: #000;
}


.operational-hours span {

  font-size: 0.7rem;

  font-weight: 500;

  color: #000;

  white-space: nowrap;
}


/* ==================================================
   FOOTER CONTACT PAGE
================================================== */

.page-kontak .footer {

  padding: 1rem 0 2rem;

  background: transparent;

  box-shadow: none;

  border: none;
}


/* ==================================================
   RESPONSIVE TABLET
================================================== */

@media (max-width: 900px) {

  .contact-hero {

    padding: 4rem 0 2rem;

  }


  .contact-hero-grid {

    gap: 2rem;

  }


  .contact-hero-image {

    height: 240px;

  }


  .contact-hero-content h1 {

    font-size: 2rem;

  }


  .contact-card {

    grid-template-columns: 1fr;

    gap: 2rem;

    padding: 2.5rem;

  }


  .contact-card-info {

    column-gap: 2rem;

  }

}


/* ==================================================
   RESPONSIVE MOBILE
================================================== */

@media (max-width: 768px) {

  .page-kontak {

    background-attachment: scroll;

  }


  .contact-hero {

    padding: 2.5rem 0 2rem;

  }


  .contact-hero-grid {

    grid-template-columns: 1fr;

    gap: 2rem;

  }


  .contact-hero-image {

    height: 260px;

  }


  .contact-hero-content {

    align-items: center;

    text-align: center;

  }


  .contact-hero-content h1 {

    font-size: 2.3rem;

  }


  .contact-hero-content p {

    font-size: 0.9rem;

  }


  .contact-section {

    padding: 1rem 0 3rem;

  }


  .contact-card {

    padding: 2rem 1.5rem;

    border-radius: 12px;

  }


  .contact-card-title {

    justify-content: center;

  }


  .contact-card-title h2 {

    font-size: 2.3rem;

  }


  .contact-card-info {

    grid-template-columns: 1fr;

    gap: 1.5rem;

  }


  .operational-hours div {

    grid-template-columns: 1fr;

    gap: 0.1rem;

  }


  .operational-hours span {

    white-space: normal;

  }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 480px) {

  .contact-hero-image {

    height: 220px;

  }


  .contact-hero-content h1 {

    font-size: 1.9rem;

  }


  .contact-card {

    padding: 1.8rem 1.2rem;

  }


  .contact-card-title h2 {

    font-size: 2rem;

  }


  .contact-item p,
  .contact-label {

    font-size: 0.7rem;

  }

}

/* ==================================================
   TOKO PAGE
================================================== */

.page-toko {

  min-height: 100vh;

  background-color: #f7e77d;

  background-image:

    linear-gradient(
      rgba(255, 255, 255, 0.68),
      rgba(255, 225, 100, 0.72)
    ),

    url('../assets/images/homepage/bg-home.png');

  background-size: cover;

  background-repeat: no-repeat;

  background-position: center center;

  background-attachment: fixed;

}


/* ==================================================
   STORE PAGE
================================================== */

.store-page {

  width: 100%;

  background: transparent;

}


/* ==================================================
   STORE HERO
================================================== */

.store-hero {

  width: 100%;

  padding: 0;

  background: transparent;

}


/* ==================================================
   STORE HERO IMAGE
================================================== */

.store-hero-image {

  width: 100%;

  height: 260px;

  overflow: hidden;

  background: transparent;

  box-shadow: none;

  border: none;

}


.store-hero-image img {

  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  box-shadow: none;

  border: none;

}


/* ==================================================
   STORE TITLE SECTION
================================================== */

.store-title-section {

  width: 100%;

  padding: 3.5rem 0 3rem;

  text-align: center;

  background: transparent;

  box-shadow: none;

  border: none;

}


.store-title {

  margin: 0;

  font-size: clamp(
    2.5rem,
    4vw,
    3.5rem
  );

  font-weight: 700;

  line-height: 1;

  color: var(--color-brown-title);

}


/* ==================================================
   STORE SECTION
================================================== */

.store-section {

  width: 100%;

  padding: 0 0 5rem;

  background: transparent;

  box-shadow: none;

  border: none;

}


/* ==================================================
   STORE CARD
================================================== */

.store-card {

  width: 100%;

  min-height: 220px;

  padding: 1.8rem 2rem;

  display: grid;

  grid-template-columns:
    225px
    1fr;

  gap: 2.5rem;

  align-items: center;

  background: var(--color-sunflower);

  border-radius: 14px;

  box-shadow: none;

  border: none;

}


/* ==================================================
   STORE IMAGE
================================================== */

.store-image {

  width: 225px;

  height: 170px;

  overflow: hidden;

  border-radius: 8px;

  background: transparent;

  box-shadow: none;

  border: none;

}


.store-image img {

  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  box-shadow: none;

  border: none;

}


/* ==================================================
   STORE INFORMATION
================================================== */

.store-info {

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: flex-start;

}


/* ==================================================
   STORE NAME
================================================== */

.store-info h2 {

  margin: 0 0 0.8rem;

  font-size: clamp(
    2rem,
    3vw,
    2.7rem
  );

  font-weight: 700;

  line-height: 1;

  color: #000;

}


/* ==================================================
   STORE ADDRESS
================================================== */

.store-address {

  max-width: 450px;

  margin: 0 0 1rem;

  font-size: 0.75rem;

  font-weight: 500;

  line-height: 1.45;

  color: #000;

}


/* ==================================================
   STORE HOURS
================================================== */

.store-hours {

  width: 100%;

  max-width: 450px;

}


.store-hours h3 {

  margin: 0 0 0.8rem;

  font-size: 0.75rem;

  font-weight: 700;

  color: #000;

}


/* ==================================================
   HOURS ROW
================================================== */

.hours-row {

  width: 100%;

  display: grid;

  grid-template-columns:
    1fr
    150px;

  gap: 1rem;

  margin-bottom: 0.2rem;

}


.hours-row strong {

  font-size: 0.7rem;

  font-weight: 700;

  color: #000;

}


.hours-row span {

  font-size: 0.7rem;

  font-weight: 500;

  color: #000;

  white-space: nowrap;

}


/* ==================================================
   FOOTER
================================================== */

.page-toko .footer {

  padding: 1rem 0 2rem;

  background: transparent;

  box-shadow: none;

  border: none;

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {


  /* Hero */

  .store-hero-image {

    height: 240px;

  }


  /* Card */

  .store-card {

    grid-template-columns:
      200px
      1fr;

    gap: 2rem;

    padding: 1.5rem;

  }


  .store-image {

    width: 200px;

    height: 160px;

  }


  .store-info h2 {

    font-size: 2rem;

  }


}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px) {


  .page-toko {

    background-attachment: scroll;

  }


  /* Hero */

  .store-hero-image {

    height: 220px;

  }


  /* Title */

  .store-title-section {

    padding: 2.5rem 0 2rem;

  }


  .store-title {

    font-size: 2.7rem;

  }


  /* Section */

  .store-section {

    padding-bottom: 3rem;

  }


  /* Card */

  .store-card {

    grid-template-columns: 1fr;

    gap: 1.5rem;

    padding: 1.5rem;

  }


  /* Image */

  .store-image {

    width: 100%;

    height: 220px;

  }


  /* Info */

  .store-info {

    align-items: flex-start;

  }


  .store-info h2 {

    font-size: 2rem;

  }


  /* Hours */

  .hours-row {

    grid-template-columns:
      1fr
      auto;

  }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 480px) {


  .store-hero-image {

    height: 190px;

  }


  .store-title {

    font-size: 2.3rem;

  }


  .store-card {

    padding: 1.2rem;

    border-radius: 12px;

  }


  .store-image {

    height: 190px;

  }


  .store-info h2 {

    font-size: 1.7rem;

  }


  .store-address {

    font-size: 0.7rem;

  }


  .store-hours h3 {

    font-size: 0.7rem;

  }


  .hours-row {

    grid-template-columns: 1fr;

    gap: 0.1rem;

    margin-bottom: 0.6rem;

  }


  .hours-row strong,
  .hours-row span {

    font-size: 0.68rem;

  }

}

/* ==================================================
   PROFIL PAGE
================================================== */

.page-profil {
  min-height: 100vh;

  background-color: #f7e77d;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.68),
      rgba(255, 225, 100, 0.72)
    ),
    url('../assets/images/homepage/bg-home.png');

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}


/* ==================================================
   PROFILE PAGE
================================================== */

.profile-page {
  width: 100%;
  background: transparent;
}


/* ==================================================
   PROFILE HERO
================================================== */

.profile-hero {
  position: relative;

  width: 100%;
  height: 335px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      #f4ad73 0%,
      #ffc17f 50%,
      #f5b172 100%
    );

  box-shadow: none;
  border: none;
}


/* ==================================================
   GAMBAR PROFIL
   Gambar menjadi layer utama di tengah
================================================== */

.profile-hero-image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  overflow: hidden;

  z-index: 1;

  pointer-events: none;
}


/* ==================================================
   GAMBAR KARAKTER DURIAN
================================================== */

.profile-hero-image img {
  width: auto;

  height: 120%;

  max-width: none;

  display: block;

  object-fit: contain;

  object-position: center bottom;

  margin: 0;

  border: none;

  box-shadow: none;

  filter: none;
}


/* ==================================================
   JUDUL TENTANG & KAMI
================================================== */

.profile-hero-title {
  position: relative;

  z-index: 5;

  width: 30%;

  height: 100%;

  display: flex;

  align-items: center;
}


/* ==================================================
   TEXT HERO
================================================== */

.profile-hero-title h1 {
  margin: 0;

  font-size: clamp(
    3.5rem,
    5vw,
    4.8rem
  );

  font-weight: 700;

  line-height: 1;

  color: var(--color-brown-title);

  white-space: nowrap;
}


/* ==================================================
   TENTANG - POSISI KIRI
================================================== */

.title-left {
  justify-content: flex-end;

  padding-right: 2rem;
}


/* ==================================================
   KAMI - POSISI KANAN
================================================== */

.title-right {
  justify-content: flex-start;

  padding-left: 2rem;
}


/* ==================================================
   PROFILE DESCRIPTION
================================================== */

.profile-description {
  width: 100%;

  padding: 5rem 0 3rem;

  background: transparent;

  box-shadow: none;

  border: none;
}


.profile-description p {
  max-width: 100%;

  margin: 0;

  font-size: 0.75rem;

  font-weight: 500;

  line-height: 1.5;

  color: #111;

  text-align: left;
}


/* ==================================================
   VISION & MISSION
================================================== */

.vision-mission {
  width: 100%;

  padding: 2rem 0 5rem;

  background: transparent;

  box-shadow: none;

  border: none;
}


/* ==================================================
   PROFILE ROW
================================================== */

.profile-row {
  display: grid;

  grid-template-columns:
    0.8fr
    1.2fr;

  gap: 3rem;

  align-items: center;

  margin-bottom: 4rem;
}


/* ==================================================
   PROFILE ROW TITLE
================================================== */

.profile-row-title {
  display: flex;

  align-items: center;
}


.profile-row-title h2 {
  margin: 0;

  font-size: clamp(
    3rem,
    4vw,
    4rem
  );

  font-weight: 700;

  line-height: 1;

  color: var(--color-brown-title);
}


/* ==================================================
   PROFILE ROW CONTENT
================================================== */

.profile-row-content {
  max-width: 500px;
}


.profile-row-content p {
  margin: 0 0 1.5rem;

  font-size: 0.75rem;

  font-weight: 500;

  line-height: 1.5;

  color: #111;
}


.profile-row-content p:last-child {
  margin-bottom: 0;
}


/* ==================================================
   FOOTER
================================================== */

.page-profil .footer {
  padding: 1rem 0 2rem;

  background: transparent;

  box-shadow: none;

  border: none;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

  /* HERO */

  .profile-hero {
    height: 320px;
  }


  /* GAMBAR */

  .profile-hero-image img {
    height: 115%;
  }


  /* TITLE */

  .profile-hero-title h1 {
    font-size: 3.5rem;
  }


  .title-left {
    padding-right: 1rem;
  }


  .title-right {
    padding-left: 1rem;
  }


  /* ROW */

  .profile-row {
    gap: 2rem;
  }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px) {

  .page-profil {
    background-attachment: scroll;
  }


  /* ================================================
     HERO
  ================================================ */

  .profile-hero {
    height: 400px;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;
  }


  /* ================================================
     GAMBAR
  ================================================ */

  .profile-hero-image {
    inset: 0;

    width: 100%;
    height: 100%;

    align-items: flex-end;
  }


  .profile-hero-image img {
    height: 100%;

    width: auto;

    max-width: none;

    margin: 0;
  }


  /* ================================================
     TITLE
  ================================================ */

  .profile-hero-title {
    width: 50%;

    height: auto;

    position: relative;

    z-index: 5;

    padding-top: 2.5rem;
  }


  .profile-hero-title h1 {
    font-size: 2.8rem;
  }


  /* TENTANG */

  .title-left {
    justify-content: flex-start;

    padding-left: 1.5rem;

    padding-right: 0;
  }


  /* KAMI */

  .title-right {
    justify-content: flex-end;

    padding-right: 1.5rem;

    padding-left: 0;
  }


  /* ================================================
     DESCRIPTION
  ================================================ */

  .profile-description {
    padding: 3rem 0 2rem;
  }


  .profile-description p {
    font-size: 0.72rem;

    text-align: justify;
  }


  /* ================================================
     VISION & MISSION
  ================================================ */

  .vision-mission {
    padding: 2rem 0 3rem;
  }


  .profile-row {
    grid-template-columns: 1fr;

    gap: 1.5rem;

    margin-bottom: 3rem;
  }


  .profile-row-title {
    justify-content: flex-start;
  }


  .profile-row-title h2 {
    font-size: 3rem;
  }


  .profile-row-content {
    max-width: 100%;
  }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 480px) {

  /* HERO */

  .profile-hero {
    height: 350px;
  }


  /* GAMBAR */

  .profile-hero-image img {
    height: 100%;
  }


  /* TITLE */

  .profile-hero-title {
    padding-top: 2rem;
  }


  .profile-hero-title h1 {
    font-size: 2.3rem;
  }


  .title-left {
    padding-left: 1rem;
  }


  .title-right {
    padding-right: 1rem;
  }


  /* DESCRIPTION */

  .profile-description {
    padding: 2.5rem 0 1.5rem;
  }


  /* VISI MISI */

  .profile-row-title h2 {
    font-size: 2.7rem;
  }


  .profile-row-content p {
    font-size: 0.7rem;
  }

}