:root {
  --primary: #6a1303;
  --dark: #1d0500;
  --accent: #e6921e;
}

body {
  scroll-behavior: smooth;
}

.inter-tight {
  font-family: "Inter Tight", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-weight: 800;
  font-size: 3.5em;
}
h2 {
  font-weight: 800;
}
.hero-section {
  background: radial-gradient(circle at center, var(--primary), var(--dark));
  min-height: 100vh;
  color: white;
}

.nav-link {
  color: rgb(255, 255, 255) !important;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1.15em;
}

.nav-link:hover {
  color: white !important;
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--accent);
  border: none;
  color: var(--dark);
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #d4831a;
  color: white;
}

.category-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(10px);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 3px rgba(120, 117, 117, 0.3);
  cursor: pointer;
}

.category-card h3 {
  font-weight: 700;
}

.category-card img {
  height: 85px;
  margin-bottom: 15px;
}

.full-width-card {
  background: linear-gradient(to right, var(--primary), var(--dark));
  border-radius: 15px;
  color: white;
}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50%;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

#impact {
  background-color: #3b4207 !important;
  color: #fff;
}

.impact-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.impact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.02);
}

.impact-item h3 {
  font-weight: 600;
  color: #ffffff;
}

footer {
  background: linear-gradient(to right, var(--dark), var(--primary));
  color: white;
}
