@import url('https://fonts.googleapis.com/css2?family=Baloo+Paaji+2:wght@400;500;600;700;800&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Roboto:wght@300;400;500;700&display=swap');

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-main);
  background-color: var(--color-bg-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button, input, textarea, select {
  font: inherit;
  color: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-text-main);
}

p:last-child {
  margin-bottom: 0;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section {
  padding-top: var(--spacing-4xl);
  padding-bottom: var(--spacing-4xl);
  position: relative;
}

.section--sm {
  padding-top: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
}

.section--bg-white {
  background-color: var(--color-white);
}

.section--bg-dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section--bg-dark h1,
.section--bg-dark h2,
.section--bg-dark h3,
.section--bg-dark h4,
.section--bg-dark p {
  color: var(--color-white);
}

/* Section Tag and Titles */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-orange);
  margin-bottom: 12px;
}

.section-tag::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: var(--color-accent-orange);
}

.section-title {
  margin-bottom: 16px;
  color: var(--color-primary);
}

.section--bg-dark .section-title {
  color: var(--color-white);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 760px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.section--bg-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.text-center {
  text-align: center;
}

.text-center .section-tag {
  justify-content: center;
}

.text-center .section-tag::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: var(--color-accent-orange);
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}
