/* FONTS */
@font-face {
  font-family: 'Product Sans';
  src: local('Product Sans');
}

@font-face {
  font-family: 'Awesome Serif';
  src: local('Awesome Serif');
}

:root {
  --header-h: 88px;
  --black: #1E1E1E;
  --dark: #2B2B2B;
  --white: #FFFFFF;
}

body {
  margin: 0;
  font-family: 'Product Sans', sans-serif;
  background: var(--black);
  color: var(--white);
}


/* ===== GLOBAL OVERLAY ===== */
/* OVERLAY */
#overlay {
  position: fixed;
  inset: 0;
  background: #0f0f0f;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

#overlay h1 {
  font-family: 'Awesome Serif', serif;
  color: #fff;
  font-size: 32px;
  transform: scale(0.2);
  opacity: 0;
}





/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 999;

  /* GLASS BASE */
  background:
    linear-gradient(
      103deg,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.06)
    );

  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);

  /* DEPTH */
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.35);

  /* FROST */
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}


.header-inner {
  height: 100%;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 56px; /* balanced */
}


.menu-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
}
/* SIDE MENU */
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 100%;
  height: 100vh;
  background: var(--dark);
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.77,0,0.18,1);
  z-index: 1000;
}

.side-menu.active {
  transform: translateX(0);
}

.close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
}

.menu-content {
  padding: 100px 40px 40px;
}

.menu-label {
  font-size: 12px;
  opacity: 0.5;
  margin-bottom: 12px;
  display: block;
}

.menu-block {
  margin-bottom: 40px;
}

.menu-link {
  display: block;
  font-family: 'Awesome Serif', serif;
  font-size: 22px;
  margin: 10px 0;
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
}
/* HIVE EFFECT */
/* HIVE EFFECT – STABLE VERSION */
.hive {
  display: block;
  cursor: pointer;
}

.hive span {
  display: inline-block;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

/* hover = small upward movement, not vanish */
.hive:hover span {
  transform: translateY(-6px);
}
@media (max-width: 768px) {
  .side-menu {
    width: 100%;
  }
  .site-header {
    backdrop-filter: blur(8px) saturate(160%);
  }

  .menu-content {
    padding: 90px 24px 32px;
  }

  .menu-link {
    font-size: 20px;
  }
}





html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}



/*==== ======= WORK ============= */



html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}


/* ===== WORK STAGE - COMPLETE WORKING VERSION ===== */
.work-stage {
  position: relative;
  width: 100vw;
  height: calc(100vh - var(--header-h));
  margin-top: var(--header-h);
  overflow: hidden;
  background: #1e1e1e;
}

/* Background SVG - FIXED */
.kitchen-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: none;
  z-index: 1;
}

/* Show desktop by default */
.kitchen-svg.desktop {
  display: block !important;
}

/* Hide other versions */
.kitchen-svg.tablet,
.kitchen-svg.mobile {
  display: none !important;
}

/* Tablet - show tablet SVG */
@media (max-width: 1024px) {
  .kitchen-svg.desktop { 
    display: none !important; 
  }
  .kitchen-svg.tablet { 
    display: block !important; 
  }
  .kitchen-svg.mobile {
    display: none !important;
  }
}

/* Mobile - show mobile SVG */
@media (max-width: 768px) {
  .kitchen-svg.desktop,
  .kitchen-svg.tablet { 
    display: none !important; 
  }
  .kitchen-svg.mobile { 
    display: block !important; 
  }
}

/* ===== OVERLAY ===== */
.work-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

/* HOTSPOT */
.hotspot {
  position: absolute;
  transform: translate(-50%, -120%);
  text-align: center;
  pointer-events: auto;
  cursor: pointer;
  animation: float 3s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% { transform: translate(-50%, -120%) translateY(0); }
  50% { transform: translate(-50%, -120%) translateY(-6px); }
  100% { transform: translate(-50%, -120%) translateY(0); }
}

/* LABEL */
.label {
  background: #fff;
  color: #000;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-family: 'Product Sans', sans-serif;
  white-space: nowrap;
}

.label span {
  display: block;
  font-size: 11px;
  opacity: 0.6;
}

/* FILLED ARROW */
.arrow {
  margin: 6px auto 0;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #fff;
}

/* Hover zoom (desktop only) */
@media (hover: hover) {
  .hotspot:hover {
    transform: translate(-50%, -120%) scale(1.08);
  }
}

.work-pins {
  position: absolute;
  inset: 0;
  z-index: 5;
}
.pin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.pin .item-svg {
  width: inherit;
  display: block;
}
.pin .hotspot {
  position: absolute;
  left: 50%;
  top: -12px;
  transform: translate(-50%, -100%);
  text-align: center;
  animation: float 3s ease-in-out infinite;
}
.pin.dough   { top: 31%; left: 46%; width: 120px; }
.pin.oven    { top: 30%; left: 22%; width: 90px; }
.pin.plate   { top: 42%; left: 58%; width: 110px; }
.pin.recipe  { top: 33%; right: 28%; width: 75px; transform: translate(50%, -50%); }
.pin.spices  { top: 34%; right: 18%;  width: 50px; transform: translate(50%, -50%); }


@media (max-width: 1024px) {
  .pin.dough  { top: 28%; left: 50%; width: 100px; }
  .pin.oven   { top: 34%; left: 14%; width: 80px; }
  .pin.plate  { top: 40%; left: 35%; width: 100px; }
  .pin.recipe { top: 22%; right: 20%; width: 60px; }
  .pin.spices { top: 40%; right: 38%;  width: 52px; }
}


@media (max-width: 768px) {
  .pin.dough  { top: 32%; left: 46%; width: 80px; }
  .pin.oven   { top: 30%; left: 14%; width: 55px; }
  .pin.plate  { top: 42%; left: 62%; width: 65px; }
  .pin.recipe { top: 32%; right: 18%; width: 45px; }
  .pin.spices { top: 65%; right: 20%; width: 38px; }
}


/* ITEM LAYER - SVG Elements */
.item-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.item-svg {
  position: absolute;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.item-svg:hover {
  filter: brightness(1.1);
}

/* DESKTOP ITEM POSITIONS */
.dough-item {
  width: 160px;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.oven-item {
  width: 110px;
  top: 48%;
  left: 18%;
  transform: translate(-50%, -50%);
}

.plate-item {
  width: 140px;
  top: 68%;
  left: 54%;
  transform: translate(-50%, -50%);
}

.recipe-item {
  width: 85px;
  top: 32%;
  right: 12%;
  transform: translateY(-50%);
}

.spices-item {
  width: 60px;
  top: 56%;
  right: 3%;
  transform: translateY(-50%);
}



/* Fix recipe & spices transform since they use 'right' */
.hotspot.recipe,
.hotspot.spices {
  transform: translate(50%, -120%);
}

/* TABLET POSITIONS */
@media (max-width: 1024px) {
  .dough-item { width: 130px; top: 54%; left: 50%; }
  .oven-item { width: 95px; top: 52%; left: 20%; }
  .plate-item { width: 115px; top: 72%; left: 55%; }
  .recipe-item { width: 70px; top: 38%; right: 14%; }
  .spices-item { width: 52px; top: 60%; right: 4%; }

  .hotspot.dough  { top: 44%; left: 50%; }
  .hotspot.oven   { top: 40%; left: 20%; }
  .hotspot.plate  { top: 62%; left: 55%; }
  .hotspot.recipe { top: 26%; right: 10%; }
  .hotspot.spices { top: 50%; right: 0%; }
}

/* MOBILE POSITIONS */
@media (max-width: 768px) {
  .dough-item { width: 100px; top: 64%; left: 50%; }
  .oven-item { width: 70px; top: 58%; left: 30%; }
  .plate-item { width: 85px; top: 80%; left: 52%; }
  .recipe-item { width: 50px; top: 45%; right: 22%; }
  .spices-item { width: 38px; top: 66%; right: 10%; }

  .hotspot.dough  { top: 54%; left: 50%; }
  .hotspot.oven   { top: 46%; left: 30%; }
  .hotspot.plate  { top: 70%; left: 52%; }
  .hotspot.recipe { top: 34%; right: 18%; }
  .hotspot.spices { top: 56%; right: 6%; }

  .hotspot { transform: translate(-50%, -140%); }
  .hotspot.recipe,
  .hotspot.spices { transform: translate(50%, -140%); }

  .label {
    font-size: 12px;
    padding: 8px 14px;
  }
}





/* ===============================
   CTA SECTION (UPDATED)
================================ */

.cta-section {
  position: relative;
  height: 576px; /* 👈 FIGMA DESKTOP */
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MARQUEE WRAPPER */
.cta-marquee {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* TRACK */
.cta-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  font-family: 'Awesome Serif', serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  animation: marquee 14s linear infinite;
}

/* VARIATION PER ROW */
.row-1 { opacity: 0.10; }
.row-2 { opacity: 0.08; animation-duration: 30s; }
.row-3 { opacity: 0.1;  animation-duration: 16s; }
.row-4 { opacity: 0.11;  animation-duration: 10s; }

/* BUTTON */
.cta-btn {
  position: relative;
  z-index: 3;
  background: #fff;
  color: #000;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  will-change: transform;
}
.cta-arrow {
  font-size: 24px;      /* matches your text scale */
  font-weight: 600;     /* bold like text */
  line-height: 1;
  display: inline-block;
  transition: transform 0.3s ease;
}


.cta-btn span {
  transition: transform 0.3s ease;
}

.cta-btn:hover span {
  transform: translateX(6px);
}

/* MARQUEE ANIMATION */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* TABLET */
@media (max-width: 1024px) {
  .cta-section {
    height: 420px;
  }

  .cta-track {
    font-size: 56px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-section {
    height: 320px;
  }

  .cta-marquee {
    gap: 6px;
  }

  .cta-track {
    font-size: 32px;
    gap: 40px;
  }

  .cta-btn {
    font-size: 14px;
    padding: 12px 24px;
  }
}






/*======= FOOTER =======*/

/* ===============================
   FOOTER
================================ */

.site-footer {
  background: #1b1b1b;
  color: #fff;
  padding: clamp(64px, 10vh, 120px) clamp(6vw, 8vw, 12vw);
}

.footer-inner {
  max-width: 1400px;
  margin: auto;
}

/* BRAND */
.footer-brand {
  font-family: 'Awesome Serif', serif;
  font-size: clamp(28px, 4vw, 48px);
  text-align: center;
  opacity: 0;
}

/* LINE */
.footer-line {
  height: 1px;
  background: rgba(255,255,255,0.35);
  margin: 24px auto 48px;
  width: 0;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  opacity: 0;
}

/* NAV */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.footer-nav a {
  color: #d0d0d0;
  text-decoration: none;
  font-size: 14px;
}

/* FOOTER LINK HOVER (same feel as menu) */
.footer-nav a,
.footer-bottom a {
  position: relative;
  color: #d0d0d0;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a::after,
.footer-bottom a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.35s ease;
}

.footer-nav a:hover,
.footer-bottom a:hover {
  color: #ffffff;
}

.footer-nav a:hover::after,
.footer-bottom a:hover::after {
  width: 100%;
}

/* SOCIAL ICON HOVER */
.footer-social a {
  color: #d0d0d0;
  font-size: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  color: #ffffff;
  transform: translateY(-3px);
}



/* SOCIAL */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.footer-social a {
  color: #d0d0d0;
  font-size: 18px;
}

/* INFO */
.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  font-size: 14px;
  color: #b5b5b5;
}

.footer-info span {
  display: block;
  margin-bottom: 14px;
  opacity: 0.7;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #9a9a9a;
}
/* Ensure footer always shows */
.site-footer,
.footer-brand,
.footer-grid,
.footer-bottom {
  opacity: 1;
  transform: none;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .footer-info {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer-nav a::after,
  .footer-bottom a::after {
    display: none;
  }
     .footer-info .info-item p {
    justify-content: center;
    text-align: center;
  }

  .footer-info .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}


