/* =========================
   BASE CSS - RESET, VARIABLES, FONTS
   ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #0c1a36;
  background-color: #ffffff;
  line-height: 1.6;
  pointer-events: auto;
}

/* CSS VARIABLES */
:root {
  --brand: #f9a11b;
  --dark: #071c34;
  --muted: #6b7280;
  --light: #f6f7f9;
  --border: #e7eaef;
  --white: #ffffff;
  --shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--dark);
}

p {
  color: var(--muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.containert {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* COMMON BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  text-decoration: none;
}

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

.btn.orange:hover {
  background-color: #e89a10;
  transform: translateY(-2px);
}

.btn.white {
  background-color: #ffffff;
  color: var(--dark);
  border: 2px solid #ffffff;
}

.btn.white:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn.read-btn {
  background-color: var(--brand);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
}

.btn.read-btn:hover {
  background-color: #e89a10;
}

.btn.outline-btn {
  background-color: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
  padding: 10px 22px;
}

.btn.outline-btn:hover {
  background-color: var(--brand);
  color: #ffffff;
}

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

/* UTILITIES */
.subtitle {
  color: var(--brand);
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

.title {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  margin-top: 12px;
}

.section-subtitle {
  color: var(--brand);
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 50px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .title {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }
}
