@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@100;200;300;400;500;600;700&display=swap');

/* ── Variables ── */
    :root {
      --color-primary: #C8230A;
      --color-primary-light: #E8502F;
      --color-primary-tint: #FAE5E1;
      --color-primary-dark: #8B1607;
      --color-secondary: #F5B800;
      --color-secondary-tint: #FFF0B3;
      --color-secondary-dark: #A67C00;
      --color-ink: #1A1A1A;
      --color-muted: #6B6B6B;
      --color-border: #E0DDD8;
      --color-surface: #F7F5F2;
      --color-bg: #FFFFFF;
      --header-height: 72px;
      --radius: 16px;
      --radius-sm: 8px;
      --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Fredoka', sans-serif;
      font-weight: 300;
      color: var(--color-ink);
      background: var(--color-bg);
      overflow-x: hidden;
    }

    /* ── HEADER ── */
    header {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: var(--header-height);
      padding: 0 5%;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--color-border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      transition: box-shadow var(--transition);
    }

    header.scrolled {
      box-shadow: 0 2px 24px rgba(0,0,0,0.08);
    }

    .PocketWok-Header {
      font-size: 30px;
      font-weight: 600;
      color: var(--color-primary);
      letter-spacing: -0.3px;
      white-space: nowrap;
    }

    .Asia-Span {
      color: var(--color-ink);
    }

    .nav-bar {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .nav-bar a {
      color: var(--color-ink);
      font-size: 17px;
      font-weight: 400;
      text-decoration: none;
      padding: 6px 14px;
      border-radius: 8px;
      transition: 0.1s;
    }

    .nav-bar a:hover {
      color: var(--color-primary);
      font-weight: 600;
    }

    .nav-bar a.Active {
      color: var(--color-primary);
      font-weight: 600;
      font-size: 22px;
    }

    .btnlogin-popup {
      margin-left: 16px;
      padding: 8px 22px;
      font-family: 'Fredoka', sans-serif;
      font-size: 17px;
      font-weight: 600;
      color: var(--color-primary);
      background: transparent;
      border: 2px solid var(--color-primary);
      border-radius: 10px;
      cursor: pointer;
      transition: all var(--transition);
    }

    .nav-bar .btnlogin-popup:hover {
      background: var(--color-primary);
      color: white;
      transform: scale(1.05);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.75);
      transition: 0.5s;
    }

    /* ── HAMBURGER (mobile) ── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--color-ink);
      border-radius: 2px;
      transition: all var(--transition);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      width: 100%;
      min-height: 86vh;
      margin-top: var(--header-height);
      display: flex;
      align-items: stretch;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url(https://dkhdinrbuijgtdpktbdw.supabase.co/storage/v1/object/public/PocketWok%20Website%20Images/Index%20Page/Index%20Header%20Image.png);
      background-size: cover;
      background-position: center;
      opacity: 0.12;
      z-index: 0;
    }

    /* warm gradient wash */
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 80% at 30% 50%, rgba(200,35,10,0.06) 0%, transparent 70%),
                  radial-gradient(ellipse 50% 60% at 75% 60%, rgba(245,184,0,0.08) 0%, transparent 60%);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      display: flex;
      width: 100%;
      align-items: center;
    }

    .hero-tag {
      flex: 0 0 55%;
      padding: 80px 60px 80px 8%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-full .hero-tag {
      flex: 1 1 auto;    
      max-width: 100%;      
      padding-right: 8%;    
    }

    .hero-full .hero-subtitle {
      max-width: 100%; 
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-primary);
      margin-bottom: 20px;
    }

    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      background: var(--color-primary);
    }


    .hero-title {
      font-family: 'Fredoka', sans-serif;
      font-size: clamp(36px, 4.5vw, 62px);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.02em;
      color: var(--color-ink);
      margin-bottom: 24px;
    }

    .hero-title em {
    font-style: normal;
    color: var(--color-primary-dark);
    font-weight: 700;
    }

    .hero-subtitle {
      font-size: clamp(17px, 1.6vw, 17px);
      font-weight: 400;
      color: var(--color-ink);
      line-height: 1.7;
      max-width: 440px;
      margin-bottom: 40px;
    }

   .about-final-statement{
    font-size: clamp(28px, 1.6vw, 17px);
    font-weight: 600;
    font-family: 'Fredoka', sans-serif;
    color: var(--color-primary-dark);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 40px;
    text-align: center;
   }

   .hero-full .about-final-statement{
    max-width:100%;
   }

    .hero-cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-primary {
      padding: 14px 32px;
      background: var(--color-primary);
      color: white;
      font-family: 'Fredoka', sans-serif;
      font-size: 18px;
      font-weight: 600;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.75);
      opacity: 0;
      animation: btnFadeIn 0.6s ease var(--delay, 0s) forwards;
      transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    @keyframes btnFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
    }

    .btn-primary:hover {
      background: var(--color-primary-dark);
      transform: scale(1.1);
      box-shadow: 0 8px 28px rgba(0,0,0,0.75);
    }

    .btn-secondary {
      padding: 14px 32px;
      background: transparent;
      color: var(--color-ink);
      font-family: 'Fredoka', sans-serif;
      font-size: 15px;
      font-weight: 600;
      border: 2px solid var(--color-primary);
      border-radius: 12px;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all var(--transition);
    }

    .btn-secondary:hover {
      border-color: var(--color-ink);
      transform: translateY(-2px);
    }

    .hero-logo {
      flex: 0 0 45%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 8% 40px 20px;
      position: relative;
    }

    .hero-logo img {
      width: 100%;
      max-width: 420px;
      height: auto;
      object-fit: contain;
      position: relative;
      z-index: 1;
      animation: floatUp 0.9s cubic-bezier(0.4,0,0.2,1) both;
    }

    /* decorative circle behind logo */
    .hero-logo::before {
      content: '';
      position: absolute;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245,184,0,0.12) 0%, transparent 70%);
      z-index: 0;
    }

    @keyframes floatUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── MOBILE NAV ── */
    .mobile-nav {
      display: none;
      position: fixed;
      top: var(--header-height);
      left: 0;
      width: 100%;
      background: white;
      border-bottom: 1px solid var(--color-border);
      padding: 20px 5%;
      flex-direction: column;
      gap: 4px;
      z-index: 999;
      box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    }

    .mobile-nav.open { display: flex; }

    .mobile-nav a {
      font-size: 16px;
      font-weight: 500;
      color: var(--color-ink);
      text-decoration: none;
      padding: 12px 16px;
      border-radius: 10px;
      transition: all var(--transition);
    }

    .mobile-nav a.Active { color: var(--color-primary); font-weight: 600; }
    .mobile-nav a:hover { background: var(--color-surface); }

    .mobile-nav .btnlogin-popup {
      margin: 8px 0 0;
      width: 100%;
      padding: 13px;
      font-size: 15px;
      border-radius: 12px;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .recipe-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    }

    @media (max-width: 768px) {
      .nav-bar { display: none; }
      .hamburger { display: flex; }

      .hero-content { flex-direction: column; }

      .hero-tag {
        flex: none;
        padding: 52px 6% 32px;
        width: 100%;
        text-align: center;
        align-items: center;
      }

      .hero-subtitle { max-width: 100%; }

      .hero-logo {
        flex: none;
        width: 100%;
        padding: 0 10% 60px;
      }

      .hero-logo::before { width: 260px; height: 260px; }

      .recipe-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; gap: 20px; }

    }

    @media (max-width: 480px) {
      .hero-cta { flex-direction: column; width: 100%; }
      .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
      .cuisine-label { display: none; }
    }

    /* ── FADE IN ANIMATION ── */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }