@import url("../assets/fonts/fonts.css");

:root {
  --brand-orange: #fc6d3a;
  --brand-orange-light: #ff9b16;
  --ink: #3a3a3a;
  --bg: #ffffff;
  --font-sans: "Poppins", system-ui, sans-serif;
  --font-cjk: "Noto Sans TC", "Poppins", sans-serif;
  --header-h: 72px;
  --container: 1120px;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(58, 58, 58, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-sans);
  line-height: 1.6;
}

body:lang(zh-HK),
body.lang-zh {
  font-family: var(--font-cjk);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand-orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-orange-light);
}

.btn-ghost {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.section {
  padding: 4.5rem 0;
}

.section-title {
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
  margin: 0 0 0.75rem;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--brand-orange);
  font-weight: 600;
}
