/* ============================================================
   Roxana Travel — Base (reset + typography)
   Kept intentionally conservative so existing Elementor pages
   are not broken during the phased migration.
   ============================================================ */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4 {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-4);
}

h1, .h1 { font-size: clamp(2.25rem, 1.4rem + 3.4vw, var(--fs-6xl)); }
h2, .h2 { font-size: clamp(1.75rem, 1.2rem + 2.2vw, var(--fs-4xl)); }
h3, .h3 { font-size: clamp(1.375rem, 1.1rem + 1.2vw, var(--fs-2xl)); }
h4, .h4 { font-size: var(--fs-xl); }

p { margin: 0 0 var(--space-4); }

a { color: var(--brand-purple); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--brand-magenta); }

img, svg, video { max-width: 100%; height: auto; display: block; }

button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: rgba(236, 30, 155, .18); color: var(--ink); }

/* ---------- Layout helpers ---------- */
.rx-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.rx-container--wide { max-width: var(--container-wide); }
.rx-container--narrow { max-width: var(--container-narrow); }

.rx-section { padding-block: var(--space-10); }
.rx-section--tight { padding-block: var(--space-8); }

.rx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-purple);
  margin-bottom: var(--space-3);
}
.rx-eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--brand-gradient);
  border-radius: var(--radius-pill);
}

.rx-gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.rx-muted { color: var(--muted); }
.rx-lead { font-size: var(--fs-lg); color: var(--ink-2); line-height: var(--lh-normal); }

.rx-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: var(--space-7);
}
.rx-section-head .rx-title { margin-bottom: 0; }

/* visually hidden */
.rx-sr {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
