/* =============================================
   BASE.CSS — Reset, Global Styles & Utilities
   Ngelowetan FC | sections/base/base.css
   ============================================= */

/* --- Google Font --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #111;
  background: #fff;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: 'Inter', sans-serif;
}

/* --- Container --- */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* --- Utility Classes --- */
.text-black   { color: #000; }
.text-white   { color: #fff; }
.text-orange  { color: #f97316; }
.text-gray    { color: #6b7280; }
.font-semibold { font-weight: 600; }
.mt-4 { margin-top: 1rem; }

/* --- Section Header (shared) --- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.divider-line {
  width: 64px;
  height: 4px;
  background: #f97316;
  margin: 0 auto;
  border-radius: 2px;
}

/* --- Scroll Fade-In Animation (shared) --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
