* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: #991A02;
  color: white;
  padding-top: 90px;
}

/* ================= NAVBAR ================= */

/* ================= NAVBAR ================= */
.navbar {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  /* Pushes Logo Left, Buttons Right */
  align-items: center;
  padding: 0 2rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}



.navbar.scrolled {
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-img {
  height: 80px;
  transition: height 0.3s ease;
}

.navbar.scrolled .logo-img {
  height: 70px;
}

.nav-buttons {
  display: flex;
  gap: 20px;
  margin-left: auto;
  /* Force-pins buttons to the right */
}

.nav-btn {
  text-decoration: none;
  color: #991A02;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-btn {
  color: #991A02;
}

/* Hover effect on the default Red Background */
.nav-btn:hover {
  background-color: rgba(52, 50, 50, 0.2);
  color: #991A02;
}

.nav-btn.active {
  background-color: #991A02;
  color: white;
}

.navbar.scrolled .nav-btn.active {
  background-color: #991A02;
  color: white;
}

.hamburger {
  display: none;
  /* Hidden on desktop */
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 3000;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #991A02;
  transition: 0.3s;
}

/* Transitions hamburger to 'X' when active */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 80vw;
  max-width: 320px;
  background-color: rgb(48, 47, 47, 0.8);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding-left: 2rem;
  transform: translateX(-100%);
  /* Start hidden off-screen */
  transition: transform 0.5s ease;
  z-index: 2500;
}

.mobile-menu.open {
  transform: translateX(0);
  /* Slide in */
}

.mobile-menu a {
  color: white;
  font-size: 1.4rem;
  text-decoration: none;
}

/* ================= GOALS ================= */

.goals-section {
  padding: 60px 20px;
}

.goals-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
}

.roadmap {
  flex: 1;
  position: relative;
  padding-left: 40px;
}

.roadmap-item> :not(.dot) {
  flex: 1;
}

.roadmap::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
}

.roadmap-item {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.dot {
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  margin-top: 6px;
}

.roadmap-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.roadmap-item p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
}

.details {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.85;
}

.goals-heading {
  flex: 0.8;
  text-align: right;
}

.goals-heading h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.goals-heading p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .goals-container {
    flex-direction: column-reverse;
  }

  .goals-heading {
    text-align: left;
  }

  .hamburger {
    display: flex;
  }

  .nav-buttons {
    display: none;
  }
}