/*
Theme Name: Mhon-Lee Limun
Theme URI: https://mhonlee.com/
Author: Mhon-Lee Limun
Description: Custom single-page portfolio theme converted from the original static HTML website.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mhonlee
*/


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

  :root {
    --navy:        #0F1F38;
    --navy-mid:    #1A3255;
    --navy-light:  #24466E;
    --slate:       #F0F4F8;
    --slate-mid:   #D8E2EE;
    --gold:        #B8954A;
    --gold-light:  #D4B278;
    --text-dark:   #0A1628;
    --text-mid:    #3A4F6A;
    --text-light:  #6B82A0;
    --white:       #FFFFFF;
    --section-gap: 100px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 64px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--slate-mid);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--navy); }

  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 120px 64px 80px;
    gap: 80px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 460px; height: 460px;
    border-radius: 50%;
    border: 1px solid rgba(184,149,74,0.12);
    pointer-events: none;
  }
  .hero::before {
    content: '';
    position: absolute;
    bottom: 40px; right: 40px;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(184,149,74,0.08);
    pointer-events: none;
  }
  .hero-text { position: relative; z-index: 1; }
  .hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }
  .hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 5.5vw, 80px);
    font-weight: 700;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
  }
  .hero-name span { color: var(--gold); }
  .hero-tagline {
    font-size: 17px;
    font-weight: 300;
    color: rgba(240,244,248,0.72);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 460px;
  }
  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: rgba(240,244,248,0.75);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid rgba(240,244,248,0.22);
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

  .hero-photo-area {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero-photo {
    width: 360px;
    height: 440px;
    border-radius: 3px;
    border: 1px solid rgba(184,149,74,0.25);
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .hero-stats {
    position: absolute;
    bottom: -24px; right: -24px;
    background: var(--white);
    border-radius: 2px;
    padding: 22px 28px;
    border: 1px solid var(--slate-mid);
    display: flex;
    align-items: center;
  }
  .stat { text-align: center; padding: 0 20px; }
  .stat-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
  }
  .stat-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 5px;
  }
  .stat-divider { width: 1px; height: 34px; background: var(--slate-mid); }

  .section-wrap {
    padding: var(--section-gap) 64px;
    max-width: 1140px;
    margin: 0 auto;
  }
  .section-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 3.8vw, 52px);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.3px;
    margin-bottom: 16px;
  }
  .rule { width: 100%; height: 1px; background: var(--slate-mid); }

  .about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
    margin-top: 56px;
  }
  .about-story p {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.95;
    margin-bottom: 24px;
  }
  .about-story p:last-child { margin-bottom: 0; }
  .about-story strong { color: var(--text-dark); font-weight: 500; }

  .pull-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 23px;
    font-style: italic;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.6;
    padding-left: 28px;
    border-left: 2px solid var(--gold);
    margin-bottom: 48px;
  }
  .as-seen-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 16px;
  }
  .press-badges { display: flex; flex-direction: column; gap: 10px; }
  .press-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: var(--slate);
    border-radius: 2px;
    border: 1px solid var(--slate-mid);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .press-badge:hover { border-color: var(--gold); background: #fef9f0; }
  .press-badge-line { width: 2px; height: 30px; background: var(--gold); flex-shrink: 0; border-radius: 1px; }
  .press-badge-text { font-size: 13px; font-weight: 500; color: var(--text-dark); }
  .press-badge-source { font-size: 11px; color: var(--text-light); margin-top: 2px; letter-spacing: 0.02em; }

  .career-bg { background: var(--slate); }
  .timeline {
    margin-top: 56px;
    position: relative;
    padding-left: 36px;
  }
  .timeline::before {
    content: '';
    position: absolute;
    left: 0; top: 10px; bottom: 0;
    width: 1px;
    background: var(--slate-mid);
  }
  .timeline-item {
    position: relative;
    margin-bottom: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid var(--slate-mid);
  }
  .timeline-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .timeline-dot {
    position: absolute;
    left: -40px; top: 10px;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--slate);
  }
  .timeline-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }
  .timeline-role {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
  }
  .timeline-company {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin-top: 4px;
  }
  .timeline-dates {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.06em;
    white-space: nowrap;
    padding-top: 6px;
  }
  .timeline-desc { font-size: 15px; color: var(--text-mid); line-height: 1.9; }
  .timeline-wins { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
  .win-chip {
    padding: 5px 14px;
    background: var(--white);
    border: 1px solid var(--slate-mid);
    border-radius: 2px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--text-mid);
  }

  .projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 56px;
  }
  .project-card {
    padding: 36px 38px;
    border: 1px solid var(--slate-mid);
    border-radius: 2px;
    transition: border-color 0.2s;
  }
  .project-card:hover { border-color: var(--gold); }
  .project-card.featured { grid-column: 1 / -1; }
  .project-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--slate);
    border: 1px solid var(--slate-mid);
    border-radius: 2px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 18px;
  }
  .project-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.2;
  }
  .project-desc { font-size: 15px; color: var(--text-mid); line-height: 1.9; }

  .skills-bg { background: var(--navy); }
  .skills-bg .section-label { color: var(--gold); }
  .skills-bg .section-title { color: var(--white); }
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 56px;
  }
  .skill-group-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(184,149,74,0.2);
  }
  .skill-list { list-style: none; }
  .skill-list li {
    font-size: 14px;
    font-weight: 300;
    color: rgba(240,244,248,0.6);
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .skill-list li::before {
    content: '';
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  .contact-section {
    background: var(--slate);
    text-align: center;
  }
  .contact-wrap {
    padding: var(--section-gap) 64px;
    max-width: 680px;
    margin: 0 auto;
  }
  .contact-sub {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.85;
    margin: 20px auto 48px;
  }
  .contact-links { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
  .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
  }
  .contact-link.email { background: var(--navy); color: var(--white); }
  .contact-link.email:hover { background: var(--navy-mid); }
  .contact-link.soft { background: var(--white); color: var(--text-mid); border: 1px solid var(--slate-mid); }
  .contact-link.soft:hover { border-color: var(--navy); color: var(--navy); }

  /* SOCIAL ICONS */
  .social-icons {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 2px;
    border: 1px solid var(--slate-mid);
    color: var(--text-light);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }
  .social-icon:hover { border-color: var(--navy); color: var(--navy); background: var(--slate); }
  .social-icon svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.8; }
  .social-icon.tiktok svg, .social-icon.instagram svg { stroke-width: 1.6; }

  /* PROJECT SOCIAL LINKS */
  .project-social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  .project-social-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border: 1px solid var(--slate-mid);
    border-radius: 2px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
  .project-social-link:hover { border-color: var(--gold); color: var(--navy); }
  .project-social-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.8; flex-shrink: 0; }

  /* CONTACT FORM */
  .contact-form {
    margin-top: 48px;
    text-align: left;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .form-field.full { grid-column: 1 / -1; }
  .form-field label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
  }
  .form-field input,
  .form-field textarea {
    padding: 12px 16px;
    border: 1px solid var(--slate-mid);
    border-radius: 2px;
    background: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
  }
  .form-field input:focus,
  .form-field textarea:focus { border-color: var(--navy); }
  .form-field textarea { min-height: 120px; }
  .form-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--navy-mid); }
  .form-note {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
    text-align: center;
  }

  footer {
    padding: 28px 64px;
    background: var(--navy);
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(240,244,248,0.3);
  }
  footer a { color: rgba(184,149,74,0.7); text-decoration: none; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow { animation: fadeUp 0.6s 0.1s ease both; }
  .hero-name    { animation: fadeUp 0.6s 0.2s ease both; }
  .hero-tagline { animation: fadeUp 0.6s 0.3s ease both; }
  .hero-ctas    { animation: fadeUp 0.6s 0.4s ease both; }
  .hero-photo-area { animation: fadeUp 0.7s 0.3s ease both; }

  @media (max-width: 960px) {
    nav { padding: 16px 24px; }
    .nav-links { gap: 22px; }
    .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; text-align: center; }
    .hero-tagline { max-width: 100%; }
    .hero-ctas { justify-content: center; }
    .hero-photo-area { order: -1; }
    .hero-photo { width: 240px; height: 300px; }
    .hero-stats { bottom: -12px; right: 10px; }
    .stat { padding: 0 12px; }
    .section-wrap { padding: 64px 24px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .projects-grid { grid-template-columns: 1fr; }
    .project-card.featured { grid-column: 1; }
    .skills-grid { grid-template-columns: 1fr; gap: 28px; }
    .contact-wrap { padding: 64px 24px; }
    footer { padding: 24px; }
    .form-grid { grid-template-columns: 1fr; }
    .social-icons { gap: 12px; }
  }

