/* 
File Name   : default.css
File Location : /default.css
File Explain  : Jourmeo Landing 공통 스타일(단일 페이지)
*/

@charset "utf-8";

/* Tenant Site Common Styles */
@import url("/assets/tenant/tenant_site.css");

@font-face{
  font-family: "PolySans Bulky";
  src: url("/assets/home/font/PolySans_Bulky/polySans_bulky.eot");
  src: url("/assets/home/font/PolySans_Bulky/polySans_bulky.eot?#iefix")format("embedded-opentype"),
       url("/assets/home/font/PolySans_Bulky/polySans_bulky.woff")format("woff"),
       url("/assets/home/font/PolySans_Bulky/polySans_bulky.woff2")format("woff2"),
       url("/assets/home/font/PolySans_Bulky/polySans_bulky.ttf")format("truetype"),
       url("/assets/home/font/PolySans_Bulky/polySans_bulky.svg#PolySans Bulky")format("svg");
  font-weight:normal;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family: "PolySans Slim Italic";
  src: url("/assets/home/font/PolySans_Bulky/polysans_slim_italic.eot");
  src: url("/assets/home/font/PolySans_Bulky/polysans_slim_italic.eot?#iefix")format("embedded-opentype"),
      url("/assets/home/font/PolySans_Bulky/polysans_slim_italic.woff")format("woff"),
      url("/assets/home/font/PolySans_Bulky/polysans_slim_italic.woff2")format("woff2"),
      url("/assets/home/font/PolySans_Bulky/polysans_slim_italic.ttf")format("truetype"),
      url("/assets/home/font/PolySans_Bulky/polysans_slim_italic.svg#PolySans Slim Italic")format("svg");
  font-weight:normal;
  font-style:normal;
  font-display:swap;
}

@import url(//cdn.rawgit.com/hiun/NanumSquare/master/nanumsquare.css); /* font-family: 'Nanum Square', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400&display=swap'); /* font-family: 'Noto Sans KR', sans-serif !important; */
@import url('https://fonts.googleapis.com/css2?family=Palanquin+Dark:wght@400;500;600;700&display=swap'); /* font-family: "Palanquin Dark", serif; */


:root{ --bg:#ffffff; --text:#0f172a; --muted:#6b7280; --line:#e5e7eb; --card:#ffffff; --shadow:0 18px 50px rgba(2,6,23,.12); --shadow2:0 10px 28px rgba(2,6,23,.12); --radius:18px; --radius2:22px; --heroTint:rgba(2, 6, 23, .35); --chipBg:rgba(255,255,255,.18); --chipLine:rgba(255,255,255,.25); --btnDark:#0b1220; --btnDark2:#0a0f1a; }

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{ margin:0; font-family:'Noto Sans KR', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Apple SD Gothic Neo", Arial, sans-serif; color:var(--text); background:var(--bg); letter-spacing:-.2px; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; }

.container{ width:min(1440px, calc(100% - 40px)); margin:0 auto; }

/* Header */
.site-header{ position:sticky; top:0; z-index:50; background:rgba(255,255,255,.72); backdrop-filter:blur(12px); border-bottom:1px solid rgba(229,231,235,.7); }
.nav{ display:flex; align-items:center; justify-content:space-between; padding:30px 0; gap:16px; }
.brand{ display:flex; align-items:center; gap:10px; font-weight:800; }
.brand img.brand-img {width:auto; height: 40px;}
.brand-badge{ width:34px; height:34px; border-radius:999px; display:grid; place-items:center; background:#0b1220; color:#fff; font-size:12px; letter-spacing:.8px; }
.brand-name{ font-size:14px; }

.nav-links{ display:flex; gap:18px; align-items:center; color:#000; font-size:19px; }
.nav-links a{ padding:8px 10px; border-radius:999px; color:#000; font-weight: bold; }
.nav-links a.is-active{ opacity:1; background:rgba(17,24,39,.06); }

/* 드롭다운 메뉴 스타일 */
.nav-menu-list{ display:flex; gap:13px; align-items:center; list-style:none; margin:0; padding:0; }
.nav-menu-item{ position:relative; }
.nav-menu-link{ display:flex; align-items:center; gap:4px; padding:8px 10px; border-radius:999px; color:#000; font-weight:bold; text-decoration:none; transition:background 0.2s ease; }
.nav-menu-link:hover{ background:rgba(17,24,39,.06); }
.nav-dropdown-arrow{ font-size:10px; transition:transform 0.2s ease; }
.nav-menu-item-has-dropdown:hover .nav-dropdown-arrow{ transform:rotate(180deg); }

.nav-dropdown{ position:absolute; top:100%; left:0; margin-top:8px; min-width:180px; background:#fff; border:1px solid rgba(229,231,235,.8); border-radius:12px; box-shadow:0 10px 28px rgba(2,6,23,.12); list-style:none; padding:8px 0; opacity:0; visibility:hidden; transform:translateY(-8px); transition:opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease; z-index:100; }
.nav-menu-item-has-dropdown:hover .nav-dropdown{ opacity:1; visibility:visible; transform:translateY(0); }
.nav-dropdown li{ margin:0; }
.nav-dropdown a{ display:block; padding:10px 16px; color:#111827; font-size:15px; font-weight:500; text-decoration:none; transition:background 0.15s ease; }
.nav-dropdown a:hover{ background:rgba(17,24,39,.06); }

.nav-toggle{ display:none; width:42px; height:42px; border:1px solid rgba(229,231,235,.8); background:#fff; border-radius:12px; padding:10px; cursor:pointer; }
.nav-toggle span{ display:block; height:2px; background:#111827; margin:5px 0; border-radius:3px; }

.nav-mobile{ display:none; border-top:1px solid rgba(229,231,235,.7); padding:14px 0 18px; }
.nav-mobile a{ display:block; padding:12px 0; color:#111827; opacity:.92; }
.nav-mobile.is-open{ display:block; }

/* Buttons */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:0px; border:0px; font-size:14px; font-weight:bold; cursor:pointer; white-space:nowrap; }
.btn-primary { background:none; color:#000; }
.btn-ghost { background:none; color:#666; transition:all 0.2s; }
.btn-ghost:hover {color:#000;}
.btn-dark { background:linear-gradient(180deg, var(--btnDark), var(--btnDark2)); color:#fff; border:none; box-shadow:0 14px 28px rgba(2,6,23,.22); }
.btn-block { width:100%;}

/* Hero */
.hero{ position:relative; min-height:640px; display:flex; align-items:stretch; overflow:hidden; }
.hero-bg{ position:absolute; inset:0; background:radial-gradient(900px 420px at 18% 18%, rgba(255,255,255,.35), transparent 60%), radial-gradient(700px 480px at 70% 30%, rgba(255,255,255,.22), transparent 55%), linear-gradient(135deg, #0b1220 0%, #0b1220 10%, #0f3d3a 55%, #215a52 100%); transform:scale(1.06); }
.hero-overlay{ position:absolute; inset:0; background:linear-gradient(90deg, rgba(2,6,23,.55) 0%, rgba(2,6,23,.35) 40%, rgba(2,6,23,.25) 100%); }
.hero-inner{ position:relative; display:grid; grid-template-columns:1.15fr .95fr; gap:34px; align-items:center; padding:64px 0; }
.hero-left{ color:#fff; }
.hero-chip{ display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:999px; border:1px solid var(--chipLine); background:var(--chipBg); font-size:12px; opacity:.95; }
.dot{ width:8px; height:8px; border-radius:999px; background:#fff; opacity:.9; }
.hero-title{ margin:18px 0 14px; font-size:44px; line-height:1.08; letter-spacing:-.8px; }
.hero-desc{ margin:0; font-size:14px; line-height:1.7; opacity:.9; max-width:520px; }

/* Search card */
.search-card{ background:rgba(255,255,255,.92); border:1px solid rgba(255,255,255,.65); border-radius:var(--radius2); box-shadow:var(--shadow); padding:18px 18px 16px; }
.search-title{ margin:0 0 12px; font-size:14px; font-weight:800; color:#111827; }
.search-tabs{ display:flex; gap:10px; padding:8px; border-radius:999px; background:rgba(17,24,39,.06); width:fit-content; margin-bottom:14px; }
.tab{ border:none; background:transparent; padding:8px 12px; border-radius:999px; font-size:12px; font-weight:800; color:#111827; opacity:.55; cursor:pointer; }
.tab.is-active{ background:#fff; opacity:1; box-shadow:0 10px 18px rgba(2,6,23,.10); }
.search-form{ display:grid; gap:12px; }
.field{ display:grid; gap:6px; }
.label{ font-size:11px; color:#6b7280; font-weight:800; }
.field input, .field select{ height:44px; border-radius:14px; border:1px solid rgba(229,231,235,.95); background:#fff; padding:0 12px; outline:none; font-size:13px; }
.field input:focus, .field select:focus{ border-color:rgba(17,24,39,.28); box-shadow:0 0 0 3px rgba(17,24,39,.08); }
.field-grid{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }

/* Sections */
.section{ padding:64px 0; }
.section-about{ padding:70px 0 56px; }

/* Builder Blocks */
.builder-block{ position:relative; }
.builder-block .container{ max-width:1200px; margin:0 auto; padding:0 20px; }
.builder-block .container-wide{ max-width:1400px; margin:0 auto; padding:0 20px; }
.builder-block .container-full{ max-width:100%; margin:0 auto; padding:0; }
.builder-block.section-pad-sm{ padding:32px 0; }
.builder-block.section-pad-md{ padding:64px 0; }
.builder-block.section-pad-lg{ padding:96px 0; }
.builder-block.section-bg-muted{ background-color:#f9fafb; }
.builder-block.section-bg-dark{ background-color:#111827; color:#fff; }
.builder-block.section-bg-dark h1,
.builder-block.section-bg-dark h2,
.builder-block.section-bg-dark h3,
.builder-block.section-bg-dark p{ color:#fff; }
.center-chip{ margin:0 auto 18px; width:fit-content; display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:999px; border:1px solid rgba(229,231,235,.9); background:#fff; box-shadow:0 10px 24px rgba(2,6,23,.06); font-size:12px; color:#111827; font-weight:800; }
.about-lead{ margin:0 auto; text-align:center; font-size:18px; line-height:1.75; color:#111827; max-width:860px; }
.mini-gallery{ display:grid; grid-template-columns:repeat(3, 1fr); gap:14px; margin:24px auto 34px; max-width:520px; }
.mini-card{ height:78px; border-radius:14px; background:radial-gradient(120px 60px at 30% 40%, rgba(255,255,255,.35), transparent 60%), linear-gradient(135deg, #0b1220 0%, #134e4a 70%, #2f6f65 100%); box-shadow:0 14px 26px rgba(2,6,23,.14); opacity:.95; }
.section-divider{ position:relative; display:flex; align-items:center; justify-content:center; margin:18px 0 18px; }
.section-divider:before, .section-divider:after{ content:""; height:1px; background:rgba(229,231,235,.9); flex:1; }
.divider-pill{ margin:0 12px; padding:8px 12px; border-radius:999px; border:1px solid rgba(229,231,235,.9); background:#fff; font-size:12px; font-weight:800; color:#111827; }

.stats{ display:grid; grid-template-columns:repeat(4, 1fr); gap:14px; margin-top:18px; }
.stat{ border:1px solid rgba(229,231,235,.9); border-radius:18px; background:#fff; padding:18px 16px; box-shadow:0 14px 30px rgba(2,6,23,.06); text-align:center; }
.stat-num{ font-size:22px; font-weight:900; letter-spacing:-.6px; }
.stat-label{ margin-top:6px; font-size:12px; color:var(--muted); font-weight:800; }
.stat.is-strong .stat-num{ color:#111827; }

/* Deals */
.section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom:16px; }
.section-head h2{ margin:0; font-size:20px; letter-spacing:-.4px; }
.muted{ margin:6px 0 0; color:var(--muted); font-size:13px; }

.deals-grid{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.deal-card{ position:relative; overflow:hidden; border-radius:22px; min-height:190px; box-shadow:var(--shadow2); border:1px solid rgba(229,231,235,.35); }
.deal-badge{ position:absolute; top:12px; right:12px; background:rgba(255,255,255,.85); border:1px solid rgba(255,255,255,.7); border-radius:999px; padding:7px 10px; font-size:11px; font-weight:900; color:#111827; z-index:3; }
.deal-bg{ position:absolute; inset:0; transform:scale(1.06); }
.deal-bg-1{ background:radial-gradient(540px 240px at 20% 30%, rgba(255,255,255,.22), transparent 55%), linear-gradient(135deg, #0b1220 0%, #0f3d3a 45%, #2f6f65 100%); }
.deal-bg-2{ background:radial-gradient(520px 260px at 70% 30%, rgba(255,255,255,.22), transparent 55%), linear-gradient(135deg, #0b1220 0%, #1f2937 35%, #374151 100%); }
.deal-overlay{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(2,6,23,.05) 0%, rgba(2,6,23,.55) 100%); }
.deal-content{ position:absolute; left:16px; bottom:16px; z-index:2; color:#fff; }
.deal-title{ margin:0 0 6px; font-size:13px; opacity:.92; font-weight:800; }
.deal-off{ margin:0; font-size:36px; font-weight:1000; letter-spacing:-1px; }

/* Destinations */
.pill-row{ display:flex; flex-wrap:wrap; gap:10px; margin:14px 0 18px; }
.pill{ border:1px solid rgba(229,231,235,.95); background:#fff; padding:10px 14px; border-radius:999px; font-size:12px; font-weight:900; color:#111827; opacity:.78; cursor:pointer; }
.pill.is-active{ opacity:1; box-shadow:0 14px 26px rgba(2,6,23,.08); }

.cards-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:14px; }
.trip-card{ position:relative; overflow:hidden; border-radius:20px; border:1px solid rgba(229,231,235,.9); background:#fff; box-shadow:0 16px 34px rgba(2,6,23,.06); }
.trip-media{ height:160px; background:radial-gradient(240px 120px at 30% 30%, rgba(255,255,255,.28), transparent 55%), linear-gradient(135deg, #0b1220 0%, #0f3d3a 55%, #2f6f65 100%); }
.media-1{ background:radial-gradient(240px 120px at 30% 30%, rgba(255,255,255,.28), transparent 55%), linear-gradient(135deg, #0b1220 0%, #0f3d3a 55%, #2f6f65 100%); }
.media-2{ background:radial-gradient(240px 120px at 65% 25%, rgba(255,255,255,.28), transparent 55%), linear-gradient(135deg, #0b1220 0%, #1f2937 60%, #4b5563 100%); }
.media-3{ background:radial-gradient(240px 120px at 35% 20%, rgba(255,255,255,.28), transparent 55%), linear-gradient(135deg, #0b1220 0%, #0b3a66 55%, #1f6aa5 100%); }
.media-4{ background:radial-gradient(240px 120px at 65% 20%, rgba(255,255,255,.28), transparent 55%), linear-gradient(135deg, #0b1220 0%, #4b3a0b 55%, #7a5b1f 100%); }
.media-5{ background:radial-gradient(240px 120px at 35% 20%, rgba(255,255,255,.28), transparent 55%), linear-gradient(135deg, #0b1220 0%, #3a0b2a 55%, #7a1f52 100%); }
.media-6{ background:radial-gradient(240px 120px at 65% 20%, rgba(255,255,255,.28), transparent 55%), linear-gradient(135deg, #0b1220 0%, #0b3a2a 55%, #1f7a62 100%); }

.heart{ position:absolute; top:12px; right:12px; width:34px; height:34px; border-radius:999px; border:1px solid rgba(255,255,255,.7); background:rgba(255,255,255,.92); box-shadow:0 14px 24px rgba(2,6,23,.12); cursor:pointer; font-size:14px; }
.heart.is-on{ color:#e11d48; }

.trip-body{ padding:14px 14px 16px; }
.trip-title{ margin:0 0 8px; font-size:13px; font-weight:900; line-height:1.35; letter-spacing:-.2px; }
.trip-meta{ display:flex; gap:8px; align-items:center; color:var(--muted); font-size:12px; font-weight:700; flex-wrap:wrap; }
.trip-bottom{ margin-top:12px; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.price{ font-weight:1000; letter-spacing:-.4px; }
.price span{ font-size:12px; font-weight:900; color:var(--muted); margin-left:3px; }
.link{ font-size:12px; font-weight:1000; color:#111827; opacity:.85; }
.link:hover{ opacity:1; text-decoration:underline; }

/* Stays block */
.stays{ margin-top:38px; display:grid; grid-template-columns:1fr 1fr; gap:20px; align-items:stretch; }
.small-chip{ width:fit-content; display:inline-flex; gap:8px; align-items:center; padding:8px 12px; border-radius:999px; border:1px solid rgba(229,231,235,.9); background:#fff; box-shadow:0 10px 20px rgba(2,6,23,.06); font-size:12px; font-weight:900; }
.stays-title{ margin:12px 0 8px; font-size:22px; letter-spacing:-.6px; }
.stays-actions{ display:flex; gap:10px; margin-top:16px; flex-wrap:wrap; }

.stays-right{ position:relative; border-radius:22px; overflow:hidden; min-height:320px; border:1px solid rgba(229,231,235,.9); box-shadow:0 20px 44px rgba(2,6,23,.08); }
.stays-media{ position:absolute; inset:0; background:radial-gradient(600px 260px at 20% 30%, rgba(255,255,255,.28), transparent 60%), linear-gradient(135deg, #0b1220 0%, #0f3d3a 55%, #2f6f65 100%); transform:scale(1.04); filter:saturate(1.05); }
.stats-card{ position:absolute; right:14px; bottom:14px; width:min(320px, calc(100% - 28px)); background:rgba(255,255,255,.92); border:1px solid rgba(255,255,255,.7); border-radius:18px; box-shadow:var(--shadow2); padding:14px; }
.stats-card-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:12px; }
.stats-card-title{ font-weight:1000; font-size:13px; }
.stats-card-sub{ font-weight:1000; color:#111827; }
.stats-mini{ display:grid; grid-template-columns:repeat(3, 1fr); gap:10px; margin-top:12px; }
.mini{ border:1px solid rgba(229,231,235,.9); border-radius:14px; padding:10px 10px; background:#fff; }
.mini-k{ font-size:11px; color:var(--muted); font-weight:900; }
.mini-v{ margin-top:4px; font-size:13px; font-weight:1000; }

.bar{ margin:12px 0 10px; height:10px; border-radius:999px; background:rgba(17,24,39,.08); overflow:hidden; }
.bar span{ display:block; height:100%; border-radius:999px; background:#111827; opacity:.9; }

/* Testimonials */
.center-title{ margin:10px 0 6px; text-align:center; font-size:24px; letter-spacing:-.6px; }
.center-muted{ margin:0 0 22px; text-align:center; color:var(--muted); font-size:13px; }
.testimonials-grid{ display:grid; grid-template-columns:1.1fr .9fr .9fr; gap:14px; }
.video-card{ position:relative; border-radius:22px; overflow:hidden; min-height:260px; border:1px solid rgba(229,231,235,.9); box-shadow:0 20px 44px rgba(2,6,23,.08); }
.video-media{ position:absolute; inset:0; background:radial-gradient(520px 240px at 25% 25%, rgba(255,255,255,.22), transparent 60%), linear-gradient(135deg, #0b1220 0%, #1f2937 55%, #374151 100%); }
.video-overlay{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(2,6,23,.05) 0%, rgba(2,6,23,.70) 100%); }
.play{ position:absolute; left:18px; bottom:18px; width:54px; height:54px; border-radius:999px; border:1px solid rgba(255,255,255,.6); background:rgba(255,255,255,.88); display:grid; place-items:center; cursor:pointer; font-weight:1000; }
.video-caption{ position:absolute; left:90px; right:16px; bottom:18px; color:#fff; font-weight:800; font-size:13px; line-height:1.45; }
.who{ margin-top:8px; font-size:12px; opacity:.85; }

.review-card{ border:1px solid rgba(229,231,235,.9); border-radius:22px; background:#fff; box-shadow:0 16px 34px rgba(2,6,23,.06); padding:16px; min-height:260px; }
.review-top{ display:flex; gap:10px; align-items:center; }
.avatar{ width:40px; height:40px; border-radius:999px; background:radial-gradient(16px 16px at 30% 30%, rgba(255,255,255,.35), transparent 60%), linear-gradient(135deg, #0b1220 0%, #0f3d3a 80%, #2f6f65 100%); }
.avatar.a2{ background:radial-gradient(16px 16px at 30% 30%, rgba(255,255,255,.35), transparent 60%), linear-gradient(135deg, #0b1220 0%, #0b3a66 70%, #1f6aa5 100%); }
.review-title{ font-weight:1000; font-size:13px; }
.stars{ color:#f59e0b; font-size:12px; letter-spacing:1px; margin-top:4px; }
.review-text{ margin:14px 0 0; color:#111827; opacity:.86; font-size:13px; line-height:1.65; }

/* Footer */
.footer{ background:#0b0f14; color:#e5e7eb; padding:52px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr 1.1fr; gap:22px; padding-bottom:34px; }
.footer-logo{ font-weight:1000; font-size:20px; margin-bottom:10px; }
.footer-muted{ color:rgba(229,231,235,.72); font-size:13px; line-height:1.7; }
.footer-muted-gap{ margin-top:10px; }
.footer-col h4{ margin:2px 0 12px; font-size:12px; letter-spacing:.8px; color:#fff; opacity:.9; }
.footer-col a{ display:block; padding:8px 0; color:rgba(229,231,235,.75); font-size:13px; }
.footer-col a:hover{ color:#fff; }

.social{ display:flex; gap:10px; margin-top:14px; }
.social a{ width:34px; height:34px; border-radius:999px; border:1px solid rgba(255,255,255,.16); display:grid; place-items:center; color:#fff; opacity:.88; }
.social a:hover{ opacity:1; }

.footer-bottom{ border-top:1px solid rgba(255,255,255,.10); padding:14px 0; }
.footer-bottom-row{ display:flex; align-items:center; justify-content:space-between; gap:12px; color:rgba(229,231,235,.65); font-size:12px; }
.footer-links a{ margin-left:12px; color:rgba(229,231,235,.65); }
.footer-links a:hover{ color:#fff; }

/* Responsive */
@media (max-width: 980px){
    .nav-links{ display:none; }
    .nav-toggle{ display:block; }
    .hero-inner{ grid-template-columns:1fr; padding:44px 0; }
    .search-card{ width:min(560px, 100%); }
    .hero-title{ font-size:38px; }
    .stats{ grid-template-columns:repeat(2, 1fr); }
    .deals-grid{ grid-template-columns:1fr; }
    .cards-grid{ grid-template-columns:repeat(2, 1fr); }
    .stays{ grid-template-columns:1fr; }
    .testimonials-grid{ grid-template-columns:1fr; }
    .review-card{ min-height:auto; }
    .footer-grid{ grid-template-columns:1fr 1fr; }
}

@media (max-width: 560px){
    .container{ width:calc(100% - 28px); }
    .hero{ min-height:720px; }
    .hero-title{ font-size:32px; }
    .field-grid{ grid-template-columns:1fr; }
    .mini-gallery{ grid-template-columns:1fr 1fr 1fr; max-width:100%; }
    .cards-grid{ grid-template-columns:1fr; }
    .section-head{ flex-direction:column; align-items:flex-start; }
    .footer-grid{ grid-template-columns:1fr; }
}
