:root {
  --bg1: #000;
  --accent: white;
  --text: #A67B5B;
  --nav-height: 64px;
        --radius: 12px;
      --shadow: 0 8px 14px #A67B5B;
      --gap: 18px;
      
  --font-link: "Fascinate Inline", system-ui;;
  --font-title: "Chango", system-ui;
  --font-text: "Chicle", system-ui;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

a {
  color: #5b3a29;
}
a, button {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
    /* Tombol welcome overlay */
    #welcome-screen {
      position: fixed;
      inset: 0;
      background: #3a2413; /* warna coklat biar match sama tema lo */
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      z-index: 9999;
      color: #fff;
      transition: opacity 0.8s ease;
    }
    #welcome-screen.hidden {
      opacity: 0;
      pointer-events: none;
    }
    .welcome-text {
      letter-spacing: 5px;
      font-size: 3rem;
      font-family: "Rampart One", system-ui;
      margin-bottom: 3%;
    }
    #welcome-btn {
      letter-spacing: 2px;
      font-family: var(--font-text);
      background: #fff;
      color: #3a2413;
      border: none;
      padding: 15px 30px;
      border-radius: 15px;
      font-size: 1.5rem;
      cursor: pointer;
      transition: transform 0.2s ease;
      width: 40%;
    }
    #welcome-btn:hover {
      transform: scale(1.05);
    }
/* BODY */
body {
  font-family: var(--font-text), Inter, system-ui, -apple-system;
  min-height: 100vh;
  background: var(--accent);
  color: #5b3a29;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

/* HEADER */
.site-header {
  font-family: var(--font-link);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  backdrop-filter: blur(6px);
  background: #6F4E37;
}

.brand h1 {
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: 2px;
}

/* NAV DESKTOP */
nav.primary {
  font-family: "BBH Sans Hegarty", system-ui;
  display: flex;
  gap: 1rem;
}

nav.primary a {
  color: var(--accent);
  background: #6F4E37;
  padding: .5rem .75rem;
  border-radius: 8px;
  font-family: var(--font-nav);
  font-weight: 600;
  letter-spacing: 2px;
  opacity: .95;
}


nav.primary a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* HAMBURGER */
.hamburger {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  cursor: pointer;
  z-index: 35;
}

.hamburger .lines {
  width: 24px;
  height: 24px;
  position: relative;
}

.hamburger .lines span {
  position: absolute;
  left: 0;
  height: 3px;
  width: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: all .3s ease;
}

.hamburger .lines span:nth-child(1) { top: 4px; }
.hamburger .lines span:nth-child(2) { top: 10px; }
.hamburger .lines span:nth-child(3) { top: 16px; }

.hamburger.active .lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.active .lines span:nth-child(2) {
  opacity: 0;
}
.hamburger.active .lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* MOBILE NAV FIX */
.mobile-nav {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: #6F4E37;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.35s ease;
  z-index: 25;
  max-height: 0;
  overflow: hidden;
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  max-height: 500px; /* biar ada ruang buat animasi */
  padding: 15px 0;
}

.mobile-nav a {
  width: 100%;
  padding: 14px 20px;
  color: var(--accent);
  text-decoration: none;
  font-family: var(--font-nav);
  font-size: 1.2rem;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s ease;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  background: rgba(255,255,255,0.05);
}
main {
  margin-top: 30%;
  flex: 1;
  margin-top: var(--nav-height);
  
}
.sambutan {
  margin-top: 50%;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  padding: 60px 20px;   
  margin: 0 auto;           
}

.title-sambutan {
  margin-top: 10%;
  font-family: var(--font-title);
  color: #5b3a29;
  width: 100%;
  font-size: 2.7rem;
  margin-bottom: 10px;
}

.desk-sambutan {
  color: var(--text);
  width: 100%;
  font-size: 1rem;
  line-height: 1.6;
}
.show-produk {
  padding: 0;
  margin-top: 10%;
}
svg {
  margin-bottom: -1%;
}
.container-bg {
  background: #FFE0B2;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 1.2rem 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem;
}


header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:26px;
}

h1{font-size:20px;margin:0}
p.lead{margin:0;color:var(--muted);font-size:14px}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
}
.title-produk {
  margin-bottom: -4%;
  width: 100%;
  color: #3a2413;
    font-family: var(--font-title);
  font-size: 35px;
  font-weight: bold;
  text-align: center;
}
/* Card */
.card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition: all 1s ease-in-out;
  border:1px solid var(--text);
  background: white;
}

.card:hover{
  transform: scale(0.96);
}

.thumb{
  width:100%;
  aspect-ratio: 4/4;
  object-fit:cover;
  display:block;
}

.card-body{
  
  padding:10px;
  display:flex;
  flex-direction:column;
  gap:5px;
  flex:1 1 auto;
}

.title{ 
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight:700;
  font-size:25px;
}

.price{
  font-weight:700;
  font-size:23px;
  color: var(--text);
  
}
.gold {
  -webkit-text-stroke: 0.3px black;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 500;
  background: linear-gradient(90deg, #fff6d9 0%, #f6d27a 25%, #e1a11f 50%, #b67908 75%, #f6d27a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.gold-k{
  -webkit-text-stroke: 0.3px black;
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: 500;
  background: linear-gradient(90deg, #fff6d9 0%, #f6d27a 25%, #e1a11f 50%, #b67908 75%, #f6d27a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
/* FOOTER */
footer {
  font-family: "Tac One", system-ui;
  font-size: 1.3em;
  color: var(--accent);
  background: #4B3832;
  text-align: center;
  padding: 15px 0;
  margin-top: auto;
}
.span-footer {
  letter-spacing: 1px;
  font-size: 1.2rem;
  font-family: var(--font-link);
  margin-left: 5px;
  margin-right: 5px;
}

/* RESPONSIVE */
@media (min-width: 300px) and (max-width: 450px) {
  .welcome-btn {
    width: 50%;
    font-size: 1rem;
  }
.brand h1 {
  font-size: 1.2rem;
}
.title-sambutan {
  font-size: 1.3rem;
}
.desk-sambutan {
  font-size: 1rem;
}
.title-produk {
  font-size: 1.3rem;
}
.products {
  grid-template-columns: repeat(2, 1fr)
}
.title {
  font-size: 18px;
}
.gold-k {
  font-size: 10px;
}
svg {
  margin-bottom: -2%;
}
footer {
  font-size: 1rem;
}
.span-footer {
  font-size: 0.94rem;
}
}
@media (max-width: 768px) {

  nav.primary { display: none; }
  .hamburger { display: grid; }
}
@media (min-width: 900px) {
  /* CSS khusus desktop di sini */
  .container {
    max-width: 1100px;
    margin: 0 auto;
  }
  .show-produk {
  padding: 0;
  margin-top: 0%;
}
.title-sambutan {
  font-size: 5rem;
}
.desk-sambutan {
  font-size: 2rem;
}
}
