:root {
  --brand-white: #ffffff;
  --brand-black: #3e3e3e;
  --brand-navy: #263a46;
  --brand-navy-deep: #162f42;
  --brand-gold: #b08747;
  --brand-panel: #1b3548;
  --brand-input: #2d4553;
  --text-light: #d7e2ea;
  --text-muted: #9eb0bf;
  --fs-2xs: clamp(0.625rem, 0.8vw, 0.75rem); /* 10px → 12px */
  --fs-xs: clamp(0.75rem, 1vw, 0.875rem); /* 12px → 14px */
  --fs-sm: clamp(0.875rem, 1.5vw, 1rem); /* 14px → 16px */
  --fs-base: clamp(1rem, 2vw, 1.125rem); /* 16px → 18px */
  --fs-md: clamp(1.125rem, 2.5vw, 1.25rem); /* 18px → 20px */
  --fs-lg: clamp(1.25rem, 3vw, 1.5rem); /* 20px → 24px */
  --fs-xl: clamp(1.5rem, 4vw, 2rem); /* 24px → 32px */
  --fs-2xl: clamp(2rem, 5vw, 3rem); /* 32px → 48px */
  --fs-3xl: clamp(2.5rem, 6vw, 4rem); /* 40px → 64px  */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(
    175.3deg,
  rgba(51, 74, 86, 0.8) 10.13%,
  rgba(79, 115, 135, 0.75) 44.87%,
  rgba(51, 74, 86, 0.8) 73.82%
  );
}

a {
  text-decoration: none;
}

.travel-homepage {
  min-height: 100vh;
}
