/* global.css */

/* 1. RESET & BOX-SIZING */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. COLORS & VARIABLES */
:root {
  --color-primary: #f25ca2;
  --color-secondary: #5f5f5f;
  --bg-gradient-start: #ffe3ec;
  --bg-gradient-end: #fff0f6;
  --shadow-light: rgba(0, 0, 0, 0.05);
}

/* 3. TYPOGRAPHY */
body {
  font-family: "Inter", sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* 4. CONTAINER UTILITY */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 5. BUTTONS */
.btn {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
}
.btn--primary:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px var(--shadow-light);
}

/* 6. TEXT SIZING */
.text--xxl {
  font-size: 3rem;
}
.text--xl {
  font-size: 2.2rem;
}
.text--lg {
  font-size: 1.8rem;
}
.text--md {
  font-size: 1.2rem;
}
.text--sm {
  font-size: 0.9rem;
}

/* 7. ANIMATION */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.animate--visible {
  opacity: 1;
  transform: translateY(0);
}
