/* ── PIXTRAVELER GLOBAL STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --sand: #f5efe6;
  --dusk: #1a1a2e;
  --amber: #e8923a;
  --teal: #2a9d8f;
  --cream: #fdf8f2;
  --text: #2c2c2c;
  --muted: #7a7a7a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5%;
  background: rgba(26,26,46,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--amber), #c0392b);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(232,146,58,0.4);
}

.logo-icon svg { width: 24px; height: 24px; }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.logo-text span { color: var(--amber); }

.nav-links {
  list-style: none;
  display: flex; gap: 32px; align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--amber); }

.nav-cta {
  background: var(--amber) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}

.nav-cta:hover { background: #d4813a !important; transform: scale(1.04); }

/* ── PAGE HERO BANNER ── */
.page-hero {
  height: 420px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  margin-top: 0;
}

.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,0.5) 0%, rgba(26,26,46,0.75) 100%);
}

.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 24px;
}

.page-hero-tag {
  display: inline-block;
  background: rgba(232,146,58,0.2);
  border: 1px solid var(--amber);
  color: var(--amber);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}

.page-hero h1 em { font-style: italic; color: var(--amber); }

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: #fff;
  padding: 12px 5%;
  display: flex; gap: 8px; align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
  border-bottom: 1px solid #eee;
}

.breadcrumb a { color: var(--amber); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text); font-weight: 600; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--amber);
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(232,146,58,0.35);
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,146,58,0.5); }

.btn-outline-dark {
  border: 2px solid var(--dusk);
  color: var(--dusk);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-block;
  transition: all 0.25s;
}

.btn-outline-dark:hover { background: var(--dusk); color: #fff; }

/* ── SECTION COMMONS ── */
section { padding: 90px 5%; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--amber);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: #0f0f1e;
  padding: 70px 5% 30px;
  color: rgba(255,255,255,0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-top: 14px;
}

.footer-col h4 {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}

.footer-bottom p { font-size: 0.82rem; }

.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.2s;
}
.social-links a:hover { background: var(--amber); color: #fff; }

/* ── CARD COMMON ── */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* ── MOBILE NAV TOGGLE ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
  .card-grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--dusk); padding: 20px 5%; gap: 16px; }
  .nav-links.open { display: flex; }
  nav { position: fixed; }
  .nav-toggle { display: flex; }
  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
