/* =========================
   TRANZLATE TRAVEL - BASE
   ========================= */

:root {
  /* Brand */
  --primary: #10b7c9;
  --primary-hover: #0ea5b5;
  --primary-soft: rgba(16, 183, 201, 0.12);
  --primary-glow: rgba(16, 183, 201, 0.35);

  /* Backgrounds */
  --bg: #0e0e0e;
  --bg-alt: #0c2127;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --surface-border: rgba(255, 255, 255, 0.12);

  /* Text */
  --text: #f5fbfc;
  --text-soft: rgba(245, 251, 252, 0.78);
  --text-muted: rgba(245, 251, 252, 0.58);

  /* Status / extras */
  --success: #27c281;
  --warning: #ffb84d;
  --danger: #ff6b6b;

  /* Layout */
  --container-width: 1200px;
  --container-padding: 24px;
  --section-padding: 20px 0 20px;


  /* Radius */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  /* Shadow */
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.3);

  /* Typography */
  --font-body: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: "Poppins", "Inter", "Segoe UI", sans-serif;

  /* Transitions */
  --transition: 0.25s ease;
}

/* =========================
   RESET
   ========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(16, 183, 201, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(16, 183, 201, 0.08), transparent 24%),
    linear-gradient(180deg, #061216 0%, #08181d 40%, #07171b 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* =========================
   GLOBAL ELEMENTS
   ========================= */

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* =========================
   TYPOGRAPHY
   ========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

p {
  margin: 0 0 16px;
  color: var(--text-soft);
}

.small-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* =========================
   LAYOUT
   ========================= */

.container {
  width: min(100%, var(--container-width));
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section {
  padding: var(--section-padding) 0;
}

.section-sm {
  padding: 72px 0;
}

.section-lg {
  padding: 120px 0;
}

/* =========================
   UTILITIES
   ========================= */

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

.muted {
  color: var(--text-muted);
}

.glass {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

/* =========================
   SELECTION
   ========================= */

::selection {
  background: rgba(16, 183, 201, 0.3);
  color: #ffffff;
}

/* =========================
   SCROLLBAR
   ========================= */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #081418;
}

::-webkit-scrollbar-thumb {
  background: rgba(16, 183, 201, 0.45);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(16, 183, 201, 0.7);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
  :root {
    --container-padding: 18px;
    --section-padding: 78px;
  }

  h1 {
    line-height: 1.02;
  }

  h2 {
    line-height: 1.08;
  }
}