/*
Theme Name:  Newspaper — Travellers Cantik
Theme URI:   https://travellerscantik.com
Description: Child theme of Newspaper (tagDiv) — Glassmorphism Pastel redesign
Author:      Joana Wijaya / Claude
Template:    Newspaper
Version:     1.0.0
Text Domain: newspaper-travellerscantik
*/

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --teal:        #0F6B68;
  --teal-deep:   #0A4E4C;
  --aqua:        #8FDCD6;
  --aqua-soft:   #DDF4F1;
  --cream:       #FBF6EE;
  --coral:       #F2708F;
  --coral-soft:  #FDE3EA;
  --gold:        #EFB25A;
  --gold-soft:   #FCEFD9;
  --ink:         #1E3A47;
  --ink-60:      rgba(30,58,71,.62);
  --white:       #FFFFFF;
  --glass:       rgba(255,255,255,.62);
  --glass-border:rgba(255,255,255,.75);
  --shadow-soft: 0 10px 30px rgba(15,107,104,.10);
  --shadow-card: 0 18px 44px rgba(30,58,71,.12);
  --r-lg:   28px;
  --r-md:   20px;
  --r-pill: 999px;
  --font-display: 'Fraunces', serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-script:  'Caveat', cursive;
}

/* ── Sembunyikan semua elemen header/footer Newspaper asli ── */
.td-header-template-wrap,
.td-header-desktop-wrap,
.td-header-mobile-wrap,
.td-footer-template-wrap,
.td-footer-desktop-wrap,
.menu-td-demo-header-menu-container,
.td-mobile-main-menu,
.tdw-wml-menu-header,
#td-header-search-mob,
[class*="tdb_header"],
[class*="tdb_footer"],
.td-header-wrap,
#td-header-wrap { display: none !important; }

/* ── Reset body untuk tampilan baru ── */
body {
  font-family: var(--font-body) !important;
  background:  var(--cream) !important;
  color:       var(--ink) !important;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   NAV — sticky glassmorphism pill
============================================================ */
.td-header-wrap,
#td-header-wrap,
.header-wrap { display: none !important; } /* sembunyikan header Newspaper asli */

.tc-nav {
  position: sticky; top: 12px; z-index: 9999;
  max-width: 1180px; margin: 12px auto 0; padding: 0 20px;
}
.tc-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--glass);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill);
  padding: 10px 22px;
  box-shadow: var(--shadow-soft);
}
.tc-brand {
  display: flex; align-items: baseline; gap: 6px;
  font-weight: 800; font-size: 1.05rem; color: var(--teal-deep);
  text-decoration: none;
}
.tc-brand .script { font-family: var(--font-script); font-size: 1.5rem; color: var(--coral); font-weight: 700; }
.tc-nav-links { display: flex; gap: 26px; font-weight: 600; font-size: .92rem; list-style: none; margin: 0; padding: 0; }
.tc-nav-links a { color: var(--ink-60); text-decoration: none; transition: color .2s; }
.tc-nav-links a:hover { color: var(--teal); }
.tc-nav-cta {
  background: var(--teal); color: #fff; font-weight: 700; font-size: .88rem;
  padding: 10px 20px; border-radius: var(--r-pill);
  box-shadow: 0 6px 16px rgba(15,107,104,.32);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.tc-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(15,107,104,.4); color: #fff; }
.tc-hamburger { display: none; background: none; border: none; font-size: 1.5rem; color: var(--teal-deep); cursor: pointer; }

/* ============================================================
   HERO
============================================================ */
.tc-hero { padding: 26px 20px 0; max-width: 1180px; margin: 0 auto; }
.tc-hero-card {
  position: relative; overflow: hidden;
  border-radius: 36px; min-height: 560px;
  background:
    linear-gradient(to right, rgba(250,247,242,.72) 0%, rgba(250,247,242,.50) 45%, rgba(250,247,242,.05) 75%),
    url('https://travellerscantik.com/wp-content/uploads/2026/07/hero-morning-beach.jpg') center/cover no-repeat;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.tc-hero-content {
  position: relative; z-index: 2;
  padding: 60px 48px 48px; max-width: 640px;
}
.tc-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill); padding: 7px 16px;
  font-size: .82rem; font-weight: 700; color: var(--teal-deep);
  margin-bottom: 18px;
}
.tc-hero h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(2.3rem, 5vw, 3.6rem) !important;
  font-weight: 600; line-height: 1.12; color: var(--teal-deep);
  margin-bottom: 8px;
}
.tc-hero h1 .script { font-family: var(--font-script); color: var(--coral); font-size: 1.15em; font-weight: 700; }
.tc-hero p { color: rgba(10,78,76,.78); font-weight: 500; font-size: 1.02rem; max-width: 460px; margin-bottom: 26px; }
.tc-search {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.85); backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill);
  padding: 8px 8px 8px 22px; max-width: 480px;
  box-shadow: 0 12px 30px rgba(15,107,104,.18);
}
.tc-search input {
  flex: 1; border: none; background: none; outline: none;
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
}
.tc-search input::placeholder { color: var(--ink-60); }
.tc-search button {
  background: var(--coral); color: #fff; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: .9rem;
  padding: 12px 24px; border-radius: var(--r-pill);
  box-shadow: 0 6px 16px rgba(242,112,143,.4);
  transition: transform .2s;
}
.tc-search button:hover { transform: scale(1.04); }
.tc-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.tc-chip {
  background: var(--glass); backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill); padding: 8px 18px;
  font-size: .85rem; font-weight: 600; color: var(--teal-deep);
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.tc-chip:hover { background: #fff; transform: translateY(-2px); }

/* ============================================================
   SHARED SECTION STYLES
============================================================ */
.tc-container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.tc-section { padding: 64px 0 0; }
.tc-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.tc-section-head h2 {
  font-family: var(--font-display) !important;
  font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--teal-deep); line-height: 1.2;
}
.tc-section-head p { color: var(--ink-60); font-size: .95rem; max-width: 420px; margin-top: 6px; }
.tc-link-more { font-weight: 700; color: var(--coral); font-size: .9rem; white-space: nowrap; text-decoration: none; }
.tc-link-more:hover { text-decoration: underline; }

/* ============================================================
   KATEGORI TILES
============================================================ */
.tc-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}
.tc-cat-tile {
  background: var(--white); border-radius: var(--r-md);
  padding: 22px 12px 18px; text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,.9);
  transition: transform .25s, box-shadow .25s;
  cursor: pointer; text-decoration: none; display: block;
}
.tc-cat-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.tc-cat-icon {
  width: 58px; height: 58px; margin: 0 auto 12px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: inset 0 -4px 8px rgba(0,0,0,.06), 0 6px 14px rgba(30,58,71,.10);
}
.tc-cat-tile span { font-weight: 700; font-size: .85rem; color: var(--ink); display: block; }
.bg-teal  { background: linear-gradient(145deg,#BFEFEA,#8FDCD6); }
.bg-gold  { background: linear-gradient(145deg,#FCEFD9,#F5D294); }
.bg-coral { background: linear-gradient(145deg,#FDE3EA,#F8B7C8); }
.bg-lav   { background: linear-gradient(145deg,#E9E2FA,#CBBBF2); }
.bg-sky   { background: linear-gradient(145deg,#DDF0FA,#A9D9F0); }
.bg-mint  { background: linear-gradient(145deg,#E2F7E4,#B5E8BB); }

/* ============================================================
   DESTINASI CARDS
============================================================ */
.tc-dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.tc-dest-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,.9);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s; text-decoration: none;
}
.tc-dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.tc-dest-photo {
  height: 210px; position: relative;
  background: linear-gradient(150deg, var(--teal), var(--aqua));
  overflow: hidden;
}
.tc-dest-photo img { width: 100%; height: 100%; object-fit: cover; }
.tc-dest-price {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  color: var(--teal-deep); font-weight: 800; font-size: .85rem;
  padding: 7px 16px; border-radius: var(--r-pill);
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.tc-dest-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.tc-dest-body h3 {
  font-family: var(--font-display) !important;
  font-weight: 600; font-size: 1.25rem; color: var(--ink); margin-bottom: 6px;
}
.tc-dest-loc { display: flex; gap: 6px; color: var(--ink-60); font-size: .85rem; margin-bottom: 16px; flex: 1; }
.tc-dest-actions { display: flex; gap: 10px; }
.tc-btn {
  flex: 1; text-align: center; font-weight: 700; font-size: .88rem;
  padding: 12px 10px; border-radius: var(--r-pill);
  transition: transform .2s, box-shadow .2s; text-decoration: none;
  display: block;
}
.tc-btn:hover { transform: translateY(-2px); }
.tc-btn-primary { background: var(--teal); color: #fff; box-shadow: 0 6px 14px rgba(15,107,104,.3); }
.tc-btn-ghost   { background: var(--aqua-soft); color: var(--teal-deep); }

/* ============================================================
   VALUE STRIP
============================================================ */
.tc-value-strip {
  margin-top: 64px;
  background:
    radial-gradient(800px 300px at 90% 0%, rgba(239,178,90,.25), transparent 60%),
    linear-gradient(135deg, rgba(143,220,214,.35), rgba(201,184,245,.3));
  border-radius: 36px; padding: 44px 40px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px; border: 1px solid var(--glass-border);
}
.tc-value-item {
  background: var(--glass); backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md); padding: 24px;
  box-shadow: var(--shadow-soft);
}
.tc-value-item .v-icon { font-size: 1.7rem; margin-bottom: 10px; }
.tc-value-item h3 { font-family: var(--font-display) !important; font-size: 1.15rem; font-weight: 600; color: var(--teal-deep); margin-bottom: 6px; }
.tc-value-item p { font-size: .88rem; color: var(--ink-60); }

/* ============================================================
   ABOUT JOANA
============================================================ */
.tc-about {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 44px; align-items: center;
}
.tc-about-photo {
  height: 400px; border-radius: 36px;
  background: linear-gradient(160deg,#F8B7C8,#CBBBF2 55%,#8FDCD6);
  overflow: hidden; box-shadow: var(--shadow-card);
}
.tc-about-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 36px; }
.tc-about-text .script-lead { font-family: var(--font-script); font-size: 1.6rem; color: var(--coral); font-weight: 700; }
.tc-about-text h2 { font-family: var(--font-display) !important; font-weight: 600; font-size: clamp(1.5rem,3vw,2.1rem); color: var(--teal-deep); margin: 4px 0 16px; }
.tc-about-text p { color: var(--ink-60); font-size: .97rem; margin-bottom: 14px; }
.tc-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 24px; }
.tc-badge {
  background: var(--white); border: 1px solid rgba(30,58,71,.08);
  border-radius: var(--r-pill); padding: 8px 16px;
  font-size: .82rem; font-weight: 700; color: var(--teal-deep);
  box-shadow: var(--shadow-soft);
}

/* ============================================================
   BLOG GRID
============================================================ */
.tc-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.tc-blog-card {
  background: var(--white); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,.9);
  transition: transform .25s; text-decoration: none; display: block; color: inherit;
}
.tc-blog-card:hover { transform: translateY(-5px); }
.tc-blog-thumb {
  height: 160px; position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--teal), var(--aqua));
}
.tc-blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tc-blog-tag {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(255,255,255,.88); color: var(--ink);
  font-size: .72rem; font-weight: 800; padding: 5px 12px; border-radius: var(--r-pill);
}
.tc-blog-body { padding: 16px 18px 20px; }
.tc-blog-body h3 { font-size: .98rem; font-weight: 700; line-height: 1.4; margin-bottom: 8px; color: var(--ink); }
.tc-blog-body time { font-size: .78rem; color: var(--ink-60); font-weight: 600; }

/* ============================================================
   CTA KERJASAMA
============================================================ */
.tc-cta {
  margin: 72px 0 0; border-radius: 36px;
  background:
    radial-gradient(700px 300px at 10% 0%, rgba(242,112,143,.35), transparent 60%),
    linear-gradient(135deg, var(--teal-deep), var(--teal) 70%);
  color: #fff; padding: 56px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; box-shadow: var(--shadow-card);
}
.tc-cta h2 { font-family: var(--font-display) !important; font-weight: 600; font-size: clamp(1.5rem,3vw,2rem); line-height: 1.25; max-width: 520px; }
.tc-cta p { opacity: .85; margin-top: 8px; max-width: 480px; font-size: .95rem; }
.tc-cta-btn {
  background: #fff; color: var(--teal-deep); font-weight: 800;
  padding: 16px 32px; border-radius: var(--r-pill);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  white-space: nowrap; text-decoration: none;
  transition: transform .2s; display: inline-block;
}
.tc-cta-btn:hover { transform: scale(1.04); color: var(--teal-deep); }

/* ============================================================
   FOOTER
============================================================ */
.td-footer-wrap,
#td-footer-wrap { display: none !important; }

.tc-footer {
  margin-top: 80px; background: var(--white);
  border-top: 1px solid rgba(30,58,71,.06);
  padding: 52px 0 110px;
}
.tc-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
.tc-footer-grid h4 { font-size: .85rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 14px; }
.tc-footer-grid a { display: block; color: var(--ink-60); font-size: .9rem; margin-bottom: 9px; text-decoration: none; }
.tc-footer-grid a:hover { color: var(--teal); }
.tc-footer-brand p { color: var(--ink-60); font-size: .9rem; margin: 12px 0 16px; max-width: 280px; }
.tc-socials { display: flex; gap: 10px; margin-bottom: 16px; }
.tc-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--aqua-soft); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none;
}
.tc-copyright { text-align: center; color: var(--ink-60); font-size: .82rem; margin-top: 44px; }

/* ============================================================
   BOTTOM NAV (mobile)
============================================================ */
.tc-bottom-nav {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9998;
  background: rgba(15,107,104,.92); backdrop-filter: blur(16px);
  border-radius: var(--r-pill); padding: 10px 22px;
  justify-content: space-between; align-items: center;
  box-shadow: 0 14px 34px rgba(10,78,76,.4);
}
.tc-bottom-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  color: rgba(255,255,255,.8); font-size: .62rem; font-weight: 700; text-decoration: none;
}
.tc-bottom-nav a .bn-icon { font-size: 1.25rem; }
body.admin-bar .tc-bottom-nav { bottom: calc(16px + 32px); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .tc-nav-links, .tc-nav-cta { display: none; }
  .tc-hamburger { display: block; }
  .tc-hero-content { padding: 44px 26px 34px; }
  .tc-hero-card { min-height: 520px; }
  .tc-about { grid-template-columns: 1fr; gap: 26px; }
  .tc-about-photo { height: 300px; }
  .tc-footer-grid { grid-template-columns: 1fr 1fr; }
  .tc-cta { padding: 40px 28px; }
  .tc-value-strip { padding: 28px 22px; }
  .tc-bottom-nav { display: flex; }
  .tc-section { padding: 52px 0 0; }
}
@media (max-width: 520px) {
  .tc-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .tc-hero h1 { font-size: 2.1rem !important; }
  .tc-dest-grid { grid-template-columns: 1fr; }
  .tc-footer-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
