body {
  font-family: "Montserrat", sans-serif;

  font-style: normal;
  background-color: #9A3259;
  height: 100%;
  color: #fff;
}

h2 {
    scroll-margin-top: 10vw; /* Adjust based on navbar height */
    color: #fff;
}

.navbar-brand {
    margin-bottom: 0;
}

.navbar-brand-font {
      font-family: "Great Vibes", cursive;
      font-weight: 500;
      font-style: bold;
      font-size: 4vw;
      color: #fff;
}

.navbar-brand-font:hover {
    color: #fff;
}

.navbar-custom {
    background-color: #9A3259; /* Light brown shade */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1050;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.navbar-custom .nav-link {
        position: relative;
        color: #fff;
        padding-bottom: 4px; /* space for underline */
}

.navbar-custom .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;               /* underline thickness */
    background-color: #f8e8c0; /* underline color */
    transition: width 0.3s ease;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 100%;
}

.navbar-custom .nav-link.active {
    color: #f8e8c0; /* Replace with your desired color */
    font-weight: bold; /* Optional */
}

.container-navbar {
        padding-bottom: 0px; /* Adjust as needed */
}

.img-custom {
    padding-left: 0;
    padding-right: 0;
}

.timeline {
  position: relative;
  padding-left: 40px;
  margin: 50px 0;
}

/* Timeline vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #b58c89; /* soft mauve tone */
}

/* Timeline item spacing and positioning */
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  display: grid;
}

/* Timeline circle */
.timeline-item::before {
  content: '';
  position: absolute;
  left: 12px;
  background-color: #8b5e5a; /* rich rosewood */
  border: 2px solid #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  z-index: 1;
}

/* Responsive layout */
@media (min-width: 768px) {
  .timeline {
    padding-left: 0;
  }

  .timeline::before {
    left: 50%;
  }

  .timeline-item.left::before {
    left: auto;
    right: -8px;
  }

  .timeline-item.right::before {
    left: -8px;
  }
}

.timeline-img {
    width: 30vw;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 576px) {
    .timeline-img {
        width: 60vw;
    }
}

.absolute-img {
    position: absolute;
    top: 250px;
    left: 1100px;
    width: 800px;     /* Set desired width */
    height: auto;     /* Keeps aspect ratio */
    z-index: 10;
}

.qr-img {
    border-radius: 38px;
}

.color-palette {
    display: flex;
    gap: 5px;
    margin-top: -15px;
}

.color-box {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.extra-padding {
    padding-left: 4rem;
}

.extra-padding-one {
    padding-left: 5rem;
}

.link-custom {
    color: #f8e8c0;
    text-decoration: none;
}

.link-custom:hover {
    color: #B38F3A; /* Changes on hover */
}
