/*
Theme Name: JLTEN PH
Theme URI: https://phjlten.com
Author: JLTEN
Description: JLTEN entry navigation theme with image logo, independent templates, SEO pages, hero images, access lines and mobile cards.
Version: 1.0.0
Text Domain: jlten-ph
*/

:root {
  --bg: #111111;
  --bg-2: #171717;
  --card: #242424;
  --card-2: #2d2d2d;
  --gold: #f6b24d;
  --gold-2: #c78332;
  --orange: #ff9b28;
  --text: #ffffff;
  --muted: #cfcfcf;
  --line: rgba(255,255,255,.14);
  --shadow: rgba(255,155,40,.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(246,178,77,.16), transparent 32%),
    linear-gradient(180deg, #111111 0%, #171717 100%);
  color: var(--text);
  line-height: 1.65;
}

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

img {
  max-width: 100%;
  height: auto;
}

.jlten-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.jlten-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17,17,17,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.jlten-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.jlten-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jlten-logo img {
  display: block;
  width: 160px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.jlten-footer .jlten-logo img {
  width: 180px;
  max-height: 68px;
}

.jlten-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.jlten-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  color: #eeeeee;
  font-weight: 700;
  font-size: 14px;
}

.jlten-menu a:hover {
  background: rgba(255,255,255,.08);
  color: var(--gold);
}

.jlten-head-actions {
  display: flex;
  gap: 10px;
}

.jlten-btn,
.jlten-menu-toggle,
.jlten-card-link,
.jlten-home-btn {
  border: 0;
  cursor: pointer;
  font-weight: 900;
  border-radius: 12px;
}

.jlten-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #181818;
  box-shadow: 0 12px 26px var(--shadow);
}

.jlten-btn.dark {
  background: #262626;
  color: var(--gold);
  border: 1px solid var(--line);
  box-shadow: none;
}

.jlten-menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.18), transparent 32%),
    linear-gradient(135deg, #2b2116, #111111);
  border: 1px solid rgba(246,178,77,.36);
  border-radius: 15px;
  box-shadow: 0 12px 26px rgba(0,0,0,.32), inset 0 0 0 1px rgba(255,255,255,.05);
}

.jlten-menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  box-shadow: 0 0 10px rgba(246,178,77,.45);
  transition: transform .22s ease, opacity .22s ease, top .22s ease;
}

.jlten-menu-toggle span:nth-child(1) {
  top: 14px;
}

.jlten-menu-toggle span:nth-child(2) {
  top: 22px;
}

.jlten-menu-toggle span:nth-child(3) {
  top: 30px;
}

.jlten-menu-toggle.is-active span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.jlten-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.jlten-menu-toggle.is-active span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.jlten-hero,
.jlten-page-hero {
  padding: 46px 0;
}

.jlten-hero-grid,
.jlten-page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}

.jlten-hero-main {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jlten-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(246,178,77,.34);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(246,178,77,.08);
  font-weight: 800;
  margin-bottom: 18px;
}

.jlten-hero h1,
.jlten-page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.06;
  letter-spacing: 0;
}

.jlten-hero p,
.jlten-page-hero p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}

.jlten-hero-art {
  position: relative;
  min-height: 430px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(135deg, #2b2116, #111111);
  box-shadow: 0 28px 70px rgba(0,0,0,.42);
}

.jlten-hero-art img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

.jlten-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0,0,0,.38)),
    radial-gradient(circle at top right, rgba(246,178,77,.18), transparent 40%);
  pointer-events: none;
}

.jlten-page-hero-art {
  min-height: 390px;
}

.jlten-page-hero-art img {
  min-height: 390px;
}

.jlten-lines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.jlten-line-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #c78332 0%, #6e4b24 48%, #1d1d1d 100%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 34px rgba(0,0,0,.32);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.jlten-line-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle, rgba(255,255,255,.28), transparent 32%),
    linear-gradient(135deg, transparent, rgba(255,255,255,.16), transparent);
  transform: rotate(18deg);
  opacity: .35;
}

.jlten-line-card > * {
  position: relative;
  z-index: 1;
}

.jlten-line-card strong {
  font-size: 22px;
}

.jlten-line-card span {
  color: #fff4df;
  font-size: 14px;
}

.jlten-line-card em {
  display: block;
  margin: 4px 0 7px;
  color: #ffe7b5;
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
  word-break: break-word;
}

.jlten-line-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(17,17,17,.5);
  border: 1px solid rgba(255,255,255,.18);
  margin-bottom: 12px;
}

.jlten-line-icon svg {
  width: 27px;
  height: 27px;
  fill: #ffe6af;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.35));
}

.jlten-quick-grid,
.jlten-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.jlten-side-panel,
.jlten-card,
.jlten-content-card {
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 42px rgba(0,0,0,.32);
}

.jlten-side-panel {
  padding: 22px;
}

.jlten-side-panel h2 {
  margin: 0 0 16px;
  color: var(--gold);
}

.jlten-nav-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: #262626;
  border: 1px solid rgba(255,255,255,.14);
}

.jlten-nav-card .icon,
.jlten-card .icon {
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #151515;
}

.jlten-nav-card .icon {
  width: 48px;
  height: 48px;
}

.jlten-nav-card .icon svg,
.jlten-card .icon svg {
  width: 25px;
  height: 25px;
  fill: #151515;
}

.jlten-nav-card strong {
  display: block;
  color: var(--orange);
  font-size: 21px;
}

.jlten-nav-card span span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.jlten-section {
  padding: 44px 0;
}

.jlten-section-title {
  margin: 0 0 20px;
  font-size: clamp(28px, 4vw, 42px);
}

.jlten-card {
  padding: 22px;
}

.jlten-card .icon {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
}

.jlten-card h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 23px;
}

.jlten-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.jlten-card-link {
  display: inline-flex;
  padding: 10px 14px;
  background: rgba(246,178,77,.12);
  color: var(--gold);
  border: 1px solid rgba(246,178,77,.26);
}

.jlten-content-card {
  padding: clamp(22px, 4vw, 42px);
}

.jlten-content-card h2 {
  color: var(--gold);
  margin-top: 32px;
}

.jlten-content-card h2:first-child {
  margin-top: 0;
}

.jlten-content-card p,
.jlten-content-card li {
  color: #dddddd;
}

.jlten-home-return {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.jlten-home-btn {
  display: inline-flex;
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #161616;
}

.jlten-footer {
  margin-top: 42px;
  padding: 36px 0 96px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #101010;
}

.jlten-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
}

.jlten-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.jlten-footer-links a {
  color: var(--gold);
}

.jlten-floating {
  position: fixed;
  right: 18px;
  bottom: 96px;
  z-index: 70;
  display: grid;
  gap: 10px;
}

.jlten-float-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.jlten-float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,.45);
}

.jlten-float-btn svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.jlten-float-btn.tg {
  background: linear-gradient(135deg, #1d9bf0, #1068b8);
}

.jlten-float-btn.ws {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.jlten-float-btn.fb {
  background: linear-gradient(135deg, #1877f2, #0b4ab8);
}

.jlten-float-btn.top {
  background: linear-gradient(135deg, #c78332, #f6b24d);
}

.jlten-float-btn.top svg {
  fill: #161616;
}

.jlten-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 65;
  padding: 10px 14px;
  background: rgba(16,16,16,.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.jlten-bottom-inner {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.jlten-bottom-inner a {
  min-height: 46px;
}

.jlten-faq-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.jlten-faq-item strong {
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 980px) {
  .jlten-menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .jlten-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #1c1c1c;
    border: 1px solid var(--line);
    border-radius: 16px;
  }

  .jlten-menu.is-open {
    display: flex;
  }

  .jlten-menu a {
    padding: 13px 14px;
  }

  .jlten-head-actions {
    display: none;
  }

  .jlten-hero-grid,
  .jlten-page-hero-grid,
  .jlten-footer-grid {
    grid-template-columns: 1fr;
  }

  .jlten-hero-main {
    min-height: auto;
  }

  .jlten-lines,
  .jlten-quick-grid,
  .jlten-card-grid {
    grid-template-columns: 1fr;
  }

  .jlten-hero-art,
  .jlten-hero-art img,
  .jlten-page-hero-art,
  .jlten-page-hero-art img {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .jlten-wrap {
    width: min(100% - 22px, 1180px);
  }

  .jlten-header-inner {
    min-height: 68px;
  }

  .jlten-logo img {
    width: 126px;
    max-height: 48px;
  }

  .jlten-footer .jlten-logo img {
    width: 150px;
  }

  .jlten-menu {
    top: 68px;
  }

  .jlten-hero {
    padding-top: 22px;
  }

  .jlten-line-card {
    min-height: 124px;
  }

  .jlten-floating {
    right: 10px;
    bottom: 88px;
  }

  .jlten-float-btn {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }
}
@media (max-width: 980px) {
  .jlten-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 82px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    background:
      radial-gradient(circle at top left, rgba(246,178,77,.18), transparent 34%),
      linear-gradient(180deg, rgba(45,45,45,.98), rgba(18,18,18,.98));
    border: 1px solid rgba(246,178,77,.26);
    border-radius: 18px;
    box-shadow:
      0 24px 60px rgba(0,0,0,.55),
      inset 0 0 0 1px rgba(255,255,255,.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(.98);
    pointer-events: none;
    transition:
      opacity .22s ease,
      visibility .22s ease,
      transform .22s ease;
  }

  .jlten-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .jlten-menu::before {
    content: "JLTEN Menu";
    display: block;
    padding: 4px 4px 8px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .jlten-menu a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 44px 12px 14px;
    border-radius: 14px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)),
      #222222;
    border: 1px solid rgba(255,255,255,.1);
    color: #f4f4f4;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(0,0,0,.2);
  }

.jlten-menu a::before,
.jlten-menu a::after {
  content: none;
}

@media (max-width: 980px) {
  .jlten-menu a::before {
    content: "";
    width: 9px;
    height: 9px;
    margin-right: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    box-shadow: 0 0 12px rgba(246,178,77,.55);
    flex: 0 0 auto;
  }

  .jlten-menu a::after {
    content: "›";
    position: absolute;
    right: 16px;
    color: var(--gold);
    font-size: 24px;
    line-height: 1;
  }
}

  .jlten-menu a::after {
    content: "›";
    position: absolute;
    right: 16px;
    color: var(--gold);
    font-size: 24px;
    line-height: 1;
  }

  .jlten-menu a:hover,
  .jlten-menu a:focus {
    background:
      linear-gradient(135deg, rgba(199,131,50,.28), rgba(246,178,77,.12)),
      #262626;
    border-color: rgba(246,178,77,.36);
    color: var(--gold);
  }
}

@media (max-width: 560px) {
  .jlten-menu {
    top: 74px;
    left: 11px;
    right: 11px;
    border-radius: 16px;
  }

  .jlten-menu a {
    min-height: 46px;
    font-size: 14px;
  }
}
@media (min-width: 981px) {
  .jlten-menu::before,
  .jlten-menu::after,
  .jlten-menu a::before,
  .jlten-menu a::after {
    content: none !important;
    display: none !important;
  }

  .jlten-menu {
    display: flex !important;
  }

  .jlten-menu a {
    position: static;
    padding: 10px 12px;
  }
}
.jlten-menu-list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jlten-menu-list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.jlten-menu-list li::marker {
  content: "";
}

.jlten-menu-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 13px;
  color: #eeeeee;
  font-size: 14px;
  font-weight: 900;
  background: transparent;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.jlten-menu-list a::before,
.jlten-menu-list a::after {
  content: none !important;
  display: none !important;
}

.jlten-menu-list a:hover,
.jlten-menu-list .current-menu-item > a,
.jlten-menu-list .current_page_item > a {
  color: var(--gold);
  background:
    radial-gradient(circle at top, rgba(246,178,77,.18), transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border-color: rgba(246,178,77,.18);
  transform: translateY(-1px);
}

@media (min-width: 981px) {
  .jlten-menu {
    display: flex;
    align-items: center;
    padding: 6px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
  }
}

@media (max-width: 980px) {
  .jlten-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 82px;
    display: block;
    padding: 14px;
    background:
      radial-gradient(circle at top left, rgba(246,178,77,.18), transparent 34%),
      linear-gradient(180deg, rgba(45,45,45,.98), rgba(18,18,18,.98));
    border: 1px solid rgba(246,178,77,.26);
    border-radius: 18px;
    box-shadow:
      0 24px 60px rgba(0,0,0,.55),
      inset 0 0 0 1px rgba(255,255,255,.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(.98);
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  }

  .jlten-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .jlten-menu::before {
    content: "JLTEN Menu";
    display: block;
    padding: 4px 4px 8px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .jlten-menu-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .jlten-menu-list a {
    position: relative;
    display: flex;
    min-height: 48px;
    padding: 12px 44px 12px 14px;
    border-radius: 14px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)),
      #222222;
    border: 1px solid rgba(255,255,255,.1);
    color: #f4f4f4;
    font-size: 15px;
    box-shadow: 0 10px 24px rgba(0,0,0,.2);
  }

  .jlten-menu-list a::before {
    content: "";
    display: block !important;
    width: 9px;
    height: 9px;
    margin-right: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    box-shadow: 0 0 12px rgba(246,178,77,.55);
    flex: 0 0 auto;
  }

  .jlten-menu-list a::after {
    content: "›";
    display: block !important;
    position: absolute;
    right: 16px;
    color: var(--gold);
    font-size: 24px;
    line-height: 1;
  }
}

@media (max-width: 560px) {
  .jlten-menu {
    top: 74px;
    left: 11px;
    right: 11px;
    border-radius: 16px;
  }
}