.roadmap-section {
    background-color: #d7caa7;
    font-family: 'Fredoka One', sans-serif !important;
    background-image: url('./images/herobg.png');
    background-position: center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    z-index: 1;
    padding: 2rem 1rem;
  }
  
  .roadmap-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.097);
    z-index: -1;
  }
  
  .comic-heading {
    	font-family: 'Fredoka One', sans-serif !important;
    font-size: 38px;
    color: white;
    text-shadow: 2px 2px 0 #000;
  }
  
  /* Flex row layout */
  .roadmap-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .roadmap-row.reverse {
    flex-direction: row-reverse;
  }
  
  /* Card styling */
  .roadmap-card.wide {
    flex: 1 1 60%;
    background: #fffef9;
    border: 5px solid #00552e;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 8px 8px 0 #333;
    position: relative;
    margin: 1rem;
    min-width: 280px;
    z-index: 1;
  }

  .roadmap-card.wide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.4); /* dark semi-transparent overlay */
    z-index: 2;
    pointer-events: none; /* allows clicks to go through the overlay */
  }
  .roadmap-card.wide > * {
    position: relative;
    z-index: 3;
  }
  
  .phase-title {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00552e;
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 12px;
    box-shadow: 4px 4px 0 #222;
    z-index: 1;
  }
  
  /* Card content list */
  .roadmap-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: lighter !important;
  }
  
  .roadmap-card ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 600;
    color: #ffffff;
  }
  
  .roadmap-card ul li::before {
    content: "☕";
    position: absolute;
    left: 0;
    color: #00552e;
    font-size: 1.1rem;
  }
  
  /* Image side */
  .roadmap-image {
    flex: 1 1 35%;
    padding: 1rem;
    text-align: center;
  }
  
  .roadmap-image img {
    width: 80%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
   
  }
  
  /* 📱 Mobile Responsiveness */
  @media (max-width: 768px) {
    .roadmap-row {
      flex-direction: column !important;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
  
    .roadmap-card.wide {
      flex: 1 1 100%;
      padding: 1.5rem;
      margin: 1rem 0;
    }
  
    .phase-title {
      top: -62px !important;
      font-size: 0.95rem;
      padding: 0.4rem 1rem;
    }
  
    .roadmap-image {
      flex: 1 1 100%;
      padding: 1rem 0;
    }
  
    .roadmap-image img {
      width: 90%;
    }
  }
  




  .community-section {
    background-color: #d7caa7;
    font-family: 'Fredoka One', sans-serif !important;
    background-image: url('./images/Untitled\ design\ -\ 2025-08-21T190756.170.png');
    background-position: center;
    background-size: cover;

    position: relative;
    z-index: 1;
    padding: 2rem 0rem;
    height: 90vh;
  }
  
  /* Overlay */
  .community-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* semi-dark overlay */
    z-index: 2;
  }
  
  /* Ensure content stays above overlay */
  .community-section > .container,
  .community-section > * {
    position: relative;
    z-index: 3;
  }
  
  
  .community-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
    z-index: 1;
  }
  
  .community-section .container {
    position: relative;
    z-index: 2;
  }
  
  .section-title {
    font-family: 'Fredoka One', sans-serif !important;
    font-size: 2.2rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .highlight-list li {
    font-size: 1rem;
    padding: 0.4rem 0;
    color: black;
  }
  

  .community-highlights {
    background: #fff8dc; /* soft comic cream */
    border: 4px solid #000; /* bold comic border */
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 6px 6px 0 #000; /* comic-style shadow */
    background-image: url('./images/halftone-pattern.png'); /* optional halftone */
    background-size: cover;
    background-blend-mode: multiply;
    font-family: 'Fredoka One', sans-serif !important;
    width: 500px !important;
    position: relative;
    z-index: 3;
  }
  
  /* Optional comic "header tag" corner */
  .community-highlights::before {
    content: 'Highlights';
    position: absolute;
    top: -16px;
    left: -12px;
    background: #ffeb3b;
    color: #000;
    font-weight: bold;
    padding: 4px 10px;
    font-size: 0.9rem;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 2px 0 #000;
    font-family: 'Fredoka One', sans-serif !important;
  }
  

  .communityfloatimg1,
.communityfloatimg2,
.communityfloatimg3,
.communityfloatimg4 {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

/* Top left corner */
.communityfloatimg1 {
  top: 22%;
  left: 62%;
  z-index: 100;
  max-width: 120px;
}

/* Bottom right corner */
.communityfloatimg2 {
  bottom: -17%;
  right: 0%;
  width: 300px;
  
}

/* Top right, center-ish */
.communityfloatimg3 {
  top: 10%;
  right: 70%;
  width: 250px;
}

.communityfloatimg4 {
  bottom: -5%;
  right: 83%;
  width: 250px;
}

@media (max-width:768px){


  .communityfloatimg1 {
    top: 40%;
    left: 62%;
    z-index: 100;
    max-width: 120px;
  }
  
  /* Bottom right corner */
  .communityfloatimg2 {
    bottom: -17%;
    right: 0%;
    width: 300px;
    
  }
  
  /* Top right, center-ish */
  .communityfloatimg3 {
    display: none !important;
  }
  
  .communityfloatimg4 {
display: none !important;
  }

  .community-highlights {
    width: 350px !important;
  }

}