/* ============================================================
   BASE.CSS
   Variables · Reset · Global · Typography · Buttons
   ============================================================ */


/* ── VARIABLES ── */
:root {

  /* Brand Colors — Rose Pink · White · Golden */
  --primary: #c94070;
  --primary-mid: #e07898;
  --primary-light: #fce8ef;

  --accent-dark: #9a6f1e;
  --accent: #c9973a;
  --accent-mid: #e0b554;
  --accent-light: #fdf5e4;

  /* Text */
  --text-heading: #2b0d1a;
  --text-body: #3d1f2b;
  --text-mid: #6e4557;
  --text-light: #a07080;
  --text-inverse: #ffffff;

  /* Backgrounds */
  --white: #ffffff;
  --bg-light: #fff5f8;
  /* blush white */
  --bg-warm: #fdf8f9;
  /* warm white */
  --bg-muted: #f8edf2;
  /* muted pink */
  --bg-dark: #2d0f1e;
  /* deep rose dark */
  --bg-overlay: rgba(45, 10, 25, 0.68);

  /* Borders */
  --border-light: #f0dde5;
  --border: #e5c8d5;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(100, 20, 50, 0.06);
  --shadow-sm: 0 4px 10px rgba(100, 20, 50, 0.09);
  --shadow-md: 0 8px 24px rgba(100, 20, 50, 0.13);
  --shadow-lg: 0 16px 48px rgba(100, 20, 50, 0.18);

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.375rem;
  --text-xl: 1.75rem;
  --text-2xl: 2.25rem;
  --text-3xl: 3rem;

  /* Layout */
  --font-base: 'Segoe UI', system-ui, sans-serif;
  --max-width: 1200px;
  --section-pad: var(--space-3xl) 5%;
  --header-height: 88px;

  /* Transitions */
  --ease: 0.25s ease;
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--ease);
}

ul {
  list-style: none;
}

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


/* ── GLOBAL ── */
section {
  padding: var(--section-pad);
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero,
.courses,
.gallery,
.testimonial,
.foreign {
  max-width: 100%;
}

h2 {
  font-size: var(--text-2xl);
  color: var(--primary);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: var(--text-lg);
  color: var(--text-heading);
}


/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background var(--ease), transform var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: var(--text-inverse);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}
