* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: #991A02;
  color: white;
}

/* ================= 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;
}

/* ================= JOURNEY ================= */

.journey-section {
  padding: 140px 8% 80px;
}

.journey-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.journey-heading h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.journey-heading p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.journey-roadmap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-left: 30px;
  position: relative;
}

.journey-roadmap::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
}

.journey-card {
  position: relative;
  padding-left: 30px;
}

.journey-card::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 8px;
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
}

.journey-card img {
  width: 100%;
  margin: 15px 0;
  border-radius: 10px;
}

/* ================= MOBILE ================= */
/* ================= MOBILE MENU STYLES ================= */
.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;
  backdrop-filter: blur(20px);
  height: 100vh;
  width: 80vw;
  max-width: 320px;
  background-color: rgb(48, 47, 47, 0.8);
  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;
}

@media (max-width: 768px) {
  .nav-buttons {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .journey-container {
    grid-template-columns: 1fr;
  }

  .journey-heading h1 {
    font-size: 2.2rem;
  }
}