/* ========================================
   IMPORTS
======================================== */
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Recursive:wght@300;400;500;600;700&display=swap");

/* ========================================
   CSS VARIABLES
======================================== */
:root {
  --color-bg-primary: #0f1319;
  --color-bg-secondary: #161b22;
  --color-bg-tertiary: #282e39;
  --color-bg-card: #0b0e14;
  --color-navbar: #1c2128;

  --color-text-main: #e0e6ed;
  --color-text-muted: #acb1b8;
  --color-text-hover: #fabd2f;

  --color-red: #ff4d4d;
  --color-blue: #4a89ff;
  --color-green: #40d352;

  --color-border: #e0e6ed;

  --font-title: "Orbitron", sans-serif;
  --font-subtitle: "Plus Jakarta Sans", sans-serif;
  --font-body: "Recursive", sans-serif;

  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ========================================
   RESET & BASE
======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========================================
   SCROLL ANIMATION BASE
======================================== */
.reveal {
  opacity: 0;
  transform: translateY(2vw);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.reveal-left {
  transform: translateX(-50px);
}

.reveal.reveal-right {
  transform: translateX(2.6vw);
}

.reveal.reveal-scale {
  transform: scale(0.92);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* ========================================
   NAVBAR
======================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  isolation: isolate;
  background-color: var(--color-navbar);
  padding: 0 2.6vw;
  height: 5vw;
}

.navbar-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.navbar-logo img {
  width: 15.625vw;
}

.navbar-links {
  display: flex;
  align-items: center;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  gap: 1.5vw;
  padding: 0 1vw;
}

.navbar-links a {
  margin-top: 0;
  font-family: var(--font-subtitle);
  font-size: 1vw;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
  text-decoration: none;
  font-style: italic;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--color-text-hover);
}


/* ========================================
   HERO SECTION
======================================== */
.hero {
  margin: 5vw;
  display: flex;
  align-items: center;
  gap: 5vw;
  position: relative;
  overflow: hidden;
  align-items: center;
  color: var(--color-text-muted);
}

.hero-content {
  z-index: 1;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 5vw;
  font-weight: 900;
  line-height: 1.32;
  color: var(--color-text-main);
  margin-bottom: 1.5vw;
  position: relative;


}

.hero-title .accent-red {
  color: var(--color-red);
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1vw;
  line-height: 1.6;
  max-width: 30vw;
  text-align: justify;
  color: var(--color-text-main);
}

.hero-carousel-wrapper {
  display: flex;
  flex-direction: column;
  height: 45vh;
}

.carousel-container {
  position: relative;
  position: absolute;
  top: 0;
}

.carousel-container .carousel-item {
  width: 53.5vw;
  height: 53.5vh;
  position: absolute;
  transition: opacity 3s ease-in-out;
}

.carousel-container .carousel-item[data-show="show"] {
  z-index: 1;
  opacity: 1;
}

.carousel-container .carousel-item[data-show="hidden"] {
  z-index: -1;
  opacity: 0;
}

.carousel-container .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1vw;
}

.carousel-subtitle {
  position: absolute;
  bottom: 0;

}

.carousel-subtitle p {
  font-family: var(--font-title);
  font-size: 1.2vw;
  font-weight: 700;
  color: rgb(255, 255, 255);
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;

  background-image: url("HomeAssets/FotoHunter.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(to top,
      rgba(12, 16, 22, 1) 0%,
      rgba(12, 16, 22, 0.1) 90%,
      rgba(12, 16, 22, 0) 100%),
    linear-gradient(to bottom,
      rgba(12, 16, 22, 1) 0%,
      rgba(12, 16, 22, 0.1) 90%,
      rgba(12, 16, 22, 0) 100%);
}

.about-content {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: auto;
  text-align: justify;
  justify-content: center;
  padding: 10vw;
}

.about-title {
  font-family: var(--font-title);
  font-size: 5vw;
  color: var(--color-text-main);
  font-weight: 900;
  line-height: 1;
  height: auto;
  text-align: left;
  display: block;
  margin-bottom: 1vw;
}

.accent-red {
  color: var(--color-red);
}

.about-subtitle {
  font-family: var(--font-title);
  font-size: 1.5vw;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin-bottom: 3vh;
}

.about-description {
  font-family: var(--font-body);
  font-size: 1vw;
  color: var(--color-text-main);
  width: 55.208vw;
}

/* ========================================
   CORE VALUES SECTION
======================================== */
.core-values {
  padding: 5vw;
  display: flex;
  background: linear-gradient(180deg, #161b22 0%, #0b0e14 100%);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.core-values-content {
  display: flex;
  gap: 5vw;
  align-items: center;
  justify-content: center;
  margin: 5vh auto;
  flex-direction: column;
}

/* ---- Values Carousel Wrapper ---- */
.values-carousel-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 80vw;
  align-items: stretch;
}

/* Arrow buttons (hidden on desktop) */
.values-arrow {
  display: none;
}

/* Track container – clips overflow on mobile but visible on desktop */
.values-track-container {
  width: 100%;
  overflow: visible;
}

/* Track – flex row showing all 3 items side-by-side */
.values-track {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  gap: 0;
}

/* Each value card */
.value-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  background: none;
  border-radius: 0;
  padding: 0;
  width: auto;
  flex: 0 1 auto;
}

/* Center item is NOT scaled on desktop */
.values-track .value-item:nth-child(2) {
  transform: none;
}

.value-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
}

.value-icon img {
  width: 4vw;
}

.value-item h3 {
  font-family: var(--font-title);
  font-size: 2vw;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 0.5vw;
  text-transform: uppercase;
  padding-top: 1vw;
}

.value-content p {
  font-family: var(--font-body);
  font-size: 0.9vw;
  color: var(--color-text-main);
  line-height: 1.75;
  max-width: 20vw;
  text-align: justify;
}

/* ---- Dots (hidden on desktop) ---- */
.values-dots {
  display: none;
}

/* Center logo badge */
.core-values-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}

.core-values-center p {
  font-family: var(--font-title);
  font-size: 1.3vw;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.core-values-center h2 {
  font-family: var(--font-title);
  font-size: 2vw;
  font-weight: 700;
  color: var(--color-text-main);
}

.core-values-center img {
  width: 20vw;
}

/* ========================================
   COOKING SECTION
======================================== */

.entrepreneur {
  position: relative;
  height: 100vh;

  background-image: url("HomeAssets/entrepreneur1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.entrepreneur::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(to top,
      rgba(12, 16, 22, 1) 0%,
      rgba(12, 16, 22, 0.1) 50%,
      rgba(12, 16, 22, 0) 100%),
    linear-gradient(to bottom,
      rgba(12, 16, 22, 1) 0%,
      rgba(12, 16, 22, 0.1) 50%,
      rgba(12, 16, 22, 0) 100%);
}

.entrepreneur-content {
  position: absolute;
  right: 0;
  width: 100vw;
  height: 100%;
  padding: 10vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(12, 16, 22, 0.7);
}

.entrepreneur-title {
  font-family: var(--font-subtitle);
  font-size: 3.75vw;
  font-weight: 900;
  color: var(--color-text-main);
  text-align: left;
  line-height: 1.5;
}

.entrepreneur-subtitle {
  font-family: var(--font-title);
  font-size: 1.25vw;
  font-weight: 700;
  color: rgb(255, 255, 255);
  text-align: left;
  line-height: 1.1;
  margin-top: 1vh;
  margin-bottom: 2vh;
}

.entrepreneur-content .accent-green {
  color: #40d352;
  font-size: 3.75vw;
}

.entrepreneur-description {
  font-family: var(--font-body);
  font-size: 1vw;
  color: var(--color-text-main);
  line-height: 1.5;
  text-align: justify;
  width: 55.208vw;
}

.entrepreneur-content span {
  font-weight: 900;
}

.entrepreneur-content ul {
  padding-left: 1vw;
  font-size: 1vw;
}

/* ========================================
   FOUNDER SECTION
======================================== */
.founder {
  padding: 5vw;
  background: linear-gradient(180deg, #0b0e14 0%, #161b22 100%);
  display: flex;
  flex-direction: row;
  gap: 6vw;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.founder-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  gap: 0;
}

.founder-image-frame {
  position: relative;
}

.founder-image-frame img {
  width: 25vw;
}

.founder-image-frame img {
  border-radius: 0.4vw;
  display: block;
}

.founder-name-tag {
  margin-top: 1vw;
  text-align: left;
}

.founder-name-tag h3 {
  font-family: var(--font-subtitle);
  font-size: 1.2vw;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 0.4vw;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.founder-name-tag p {
  font-family: var(--font-body);
  font-size: 1vw;
  color: var(--color-text-muted);
  font-style: italic;
}

.founder-content {
  position: relative;
  z-index: 1;
  max-width: 35vw;
}

.founder-greeting {
  font-family: var(--font-subtitle);
  font-size: 2vw;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: 0.5vw;
  font-style: italic;
}

.founder-title {
  font-family: var(--font-subtitle);
  font-size: 4vw;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text-main);
  margin-bottom: 2vw;
}

.founder-description {
  font-family: var(--font-body);
  font-size: 1vw;
  line-height: 1.7;
  color: var(--color-text-muted);
  text-align: justify;
  margin-bottom: 1vw;
}

.founder-description strong {
  color: var(--color-text-main);
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--color-bg-card);
  padding: 0 15vw;
  height: 30vw;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 5vw;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  width: 16vw;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.footer-inner h2 {
  font-family: var(--font-title);
  font-size: 3.5vw;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text-main);
  text-align: left;
  margin-bottom: 3vh;
}

.footer-inner-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-visitus {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.footer-inner-content h4 {
  width: 10vw;
  height: auto;
  font-size: 1.6vw;
  text-align: left;
  display: flex;
  align-items: left;
  justify-content: left;
  border-radius: 1vw;
  font-weight: bold;
  text-transform: uppercase;
  font-family: var(--font-subtitle);
  color: var(--color-text-main);
}

.footer-inner-content p {
  font-family: var(--font-body);
  font-size: 1vw;
  color: var(--color-text-main);
  line-height: 1.5;
  text-align: justify;
}

.contact-sosmed {
  display: flex;
  flex-direction: row;
  gap: 1vw;
  font-size: 1vw;
  text-align: left;
}

.contact-sosmed img {
  width: 2.8vw;
  height: 2.8vw;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 1.4vw;
  padding: 0.5vw 0;

}


/* ========================================
   MOBILE RESPONSIVE — max-width: 480px
======================================== */
@media (max-width: 480px) {

  /* ── NAVBAR ── */
  /* Single row: logo left, links right — same pattern as desktop */
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 4vw;
    height: 14vw;
  }

  .navbar-logo img {
    width: 32vw;
  }

  .navbar-links {
    flex: 1;
    position: static;
    transform: none;
    gap: 4vw;
    padding: 0;
    height: 100%;
    justify-content: flex-end;
  }

  .navbar-links a {
    font-size: 3.2vw;
  }

  /* ── HERO ── */
  .hero {
    flex-direction: column;
    margin: 4vw 5vw;
    gap: 5vw;
    overflow: visible;
  }

  /*
   * display:contents makes .hero-content transparent to flex layout,
   * so .hero-title and .hero-description become direct flex children of .hero.
   * We can then use `order` to slot the carousel between title and description.
   */
  .hero-content {
    display: contents;
  }

  .hero-title {
    order: 1;
    font-size: 12vw;
    margin-bottom: 2vw;
    position: relative;
    right: 10vw;
  }

  /* Carousel sits between title (order 1) and description (order 3) */
  .hero-carousel-wrapper {
    order: 2;
    position: relative;
    width: 90vw;
    height: 55vw;
    flex: none;
    margin-bottom: 10vw;
    /* room for subtitle + gap before description */
  }

  .hero-description {
    order: 3;
    font-size: 3.5vw;
    max-width: 100%;
  }

  /* Keep carousel-container absolutely positioned within the wrapper */
  .carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .carousel-container .carousel-item {
    width: 100%;
    height: 100%;
  }

  .carousel-container .carousel-item img {
    border-radius: 3vw;
  }

  /* Subtitle sits just below the image with breathing room */
  .carousel-subtitle {
    position: absolute;
    bottom: -10vw;
    left: 0;
  }

  .carousel-subtitle p {
    font-size: 3.5vw;
  }

  /* ── ABOUT ── */
  .about {
    height: auto;
    min-height: 100svh;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .about::before {
    background:
      linear-gradient(to top,
        rgba(12, 16, 22, 0.97) 20%,
        rgba(12, 16, 22, 0.55) 60%,
        rgba(12, 16, 22, 0.15) 100%),
      linear-gradient(to bottom,
        rgba(12, 16, 22, 0.9) 0%,
        rgba(12, 16, 22, 0.3) 25%,
        rgba(12, 16, 22, 0) 50%);
  }

  .about-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    padding: 8vw 5vw 12vw;
    background: transparent;
  }

  .about-title {
    font-size: 14vw;
    margin-bottom: 3vw;
  }

  .about-subtitle {
    font-size: 4vw;
    margin-bottom: 3vw;
  }

  .about-description {
    font-size: 3.5vw;
    text-align: left;
    width: fit-content;
  }

  .about-content ul {
    padding-left: 5vw;
    font-size: 3.5vw;
  }

  /* ── CORE VALUES — slider (≤480px) ── */
  .core-values {
    padding: 8vw 0 8vw;
    overflow: hidden;
  }

  .core-values-content {
    flex-direction: column;
    gap: 6vw;
    margin: 0;
    width: 100%;
    align-items: center;
  }

  .core-values-center {
    align-items: center;
    padding: 0 5vw;
    text-align: center;
    width: 100%;
  }

  .core-values-center img {
    width: 55vw;
    margin-top: 4vw;
  }

  .core-values-center p {
    font-size: 3.5vw;
  }

  .core-values-center h2 {
    font-size: 8vw;
  }

  /* Carousel wrapper spans full width on mobile */
  .values-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    width: 100%;
    padding: 0;
    flex-direction: row;
    justify-content: stretch;
  }

  .values-arrow {
    display: flex;
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 3vw;
    align-items: center;
    color: var(--color-text-muted);
    transition: color 0.3s ease, transform 0.25s ease;
    z-index: 10;
  }

  .values-arrow:hover {
    color: var(--color-text-hover);
    transform: scale(1.15);
  }

  .values-arrow svg {
    width: 6vw;
    height: 6vw;
    display: block;
  }

  .values-track-container {
    flex: 1;
    overflow: hidden;
  }

  .values-track {
    display: flex;
    justify-content: center;
    gap: 4vw;
    padding: 4vw 0;
    transition: none;
    will-change: transform;
    width: auto;
  }

  .value-item {
    flex: 0 0 60vw;
    width: 60vw;
    display: flex;
    flex-direction: column;
    background: var(--color-bg-secondary);
    border-radius: 3vw;
    padding: 5vw;
    gap: 3vw;
    align-items: flex-start;
    position: relative;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Center card scale on mobile */
  .values-track .value-item:nth-child(2) {
    transform: scale(1.06);
  }

  .value-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3vw;
  }

  .value-icon img {
    width: 10vw;
  }

  .value-item h3 {
    font-family: var(--font-title);
    font-size: 5vw;
    font-weight: 700;
    color: var(--color-text-main);
    padding-top: 2vw;
    margin-bottom: 1vw;
    text-transform: uppercase;
  }

  .value-content p {
    font-family: var(--font-body);
    font-size: 3.5vw;
    color: var(--color-text-main);
    line-height: 1.6;
    max-width: 100%;
    text-align: justify;
  }

  .values-dots {
    display: flex;
    justify-content: center;
    gap: 3vw;
    margin-top: 2vw;
  }

  .values-dot {
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    background: var(--color-text-muted);
    opacity: 0.4;
    transition: background 0.3s ease, opacity 0.3s ease;
    cursor: default;
  }

  .values-dot.active {
    background: var(--color-red);
    opacity: 1;
  }

  /* ── ENTREPRENEUR ── */
  /*
   * Full-section background approach:
   * The section is a flex column; content sits at the bottom via margin-top:auto,
   * leaving the photo visible in the upper portion through the transparent overlay.
   */
  .entrepreneur {
    height: auto;
    min-height: 100svh;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  /* Overlay darkens both bottom and top so the photo text is clear */
  .entrepreneur::before {
    background:
      linear-gradient(to top,
        rgba(12, 16, 22, 0.97) 20%,
        rgba(12, 16, 22, 0.55) 60%,
        rgba(12, 16, 22, 0.15) 100%),
      linear-gradient(to bottom,
        rgba(12, 16, 22, 0.9) 0%,
        rgba(12, 16, 22, 0.3) 25%,
        rgba(12, 16, 22, 0) 50%);
  }

  /* Content panel: z-index above the overlay, padded from the edges */
  .entrepreneur-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    padding: 8vw 5vw 12vw;
    background: transparent;
  }

  .entrepreneur-title {
    font-size: 12vw;
    line-height: 1.2;
    margin-bottom: 3vw;
  }

  .entrepreneur-content .accent-green {
    font-size: 12vw;
  }

  .entrepreneur-subtitle {
    font-size: 4vw;

  }

  .entrepreneur-description {
    font-size: 3.5vw;
  }

  .entrepreneur-content ul {
    padding-left: 5vw;
    font-size: 3.5vw;
  }

  /* ── FOUNDER ── */
  .founder {
    flex-direction: column;
    padding: 8vw 5vw;
    gap: 6vw;
  }

  /* Text content (greeting + title + description) comes FIRST */
  .founder-content {
    order: 1;
    max-width: 100%;
  }

  /* Photo + name tag comes SECOND (below the text) */
  .founder-image-wrapper {
    order: 2;
  }

  .founder-image-frame img {
    width: 100%;
    border-radius: 2vw;
  }

  .founder-greeting {
    font-size: 4.5vw;
  }

  .founder-title {
    font-size: 10vw;
    margin-bottom: 4vw;
  }

  .founder-description {
    font-size: 3.5vw;
  }

  .founder-name-tag h3 {
    font-size: 4vw;
  }

  .founder-name-tag p {
    font-size: 3.5vw;
  }

  /* ── FOOTER ── */
  .footer {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 10vw 8vw 12vw;
    gap: 4vw;
  }

  .footer-logo {
    width: 42vw;
  }

  .footer-inner {
    width: 100%;
    align-items: center;
    gap: 5vw;
  }

  .footer-inner h2 {
    font-size: 10vw;
    text-align: center;
    line-height: 1.15;
  }

  .footer-inner-content {
    flex-direction: column;
    gap: 6vw;
    width: 100%;
  }

  .footer-visitus,
  .footer-contact {
    gap: 2.5vw;
  }

  .footer-inner-content h4 {
    width: 28vw;
    height: 10vw;
    font-size: 4.5vw;
    border-radius: 3vw;
  }

  .footer-inner-content p {
    font-size: 3.5vw;
    line-height: 1.6;
  }

  .contact-sosmed {
    gap: 3vw;
    align-items: center;
    font-size: 3.5vw;
  }

  .contact-sosmed img {
    width: 8vw;
    height: 8vw;
  }

  .contact {
    gap: 2vw;
    padding: 1vw 0;
  }



}