@keyframes column-load {
    0% {
        opacity: 0;
        transform: translateY(20px); /* Start with the column slightly below */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at the original position */
    }
}

body {
    font-family: 'Sintony', sans-serif;
    margin: 0;
    background: url('CheckeredPattern.png') repeat;
    color: #daf5ff
  }

  header {
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
    padding: 1rem 2rem;
    background-color: #342051;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 2vw;
  }

  .wrapper {
    max-width: 100vw; 
    overflow-x: hidden;
  }
  
  header .logo {
    max-width: 25vw;
    margin-right: 1rem;
  }
 
  .roadmap {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 2rem auto;
    padding: 0 1rem;
    position: relative;
  }
  
  .column {
    opacity: 0;
    animation: column-load 1s ease-out forwards;
    animation-delay: 0.2s;
    /*transition: all 0.5s ease;*/
    padding: 1.5px;
    flex: 1;
    min-height: 0;
    flex-shrink: 1;
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);*/
  }

  /* Stagger the animation for each column (optional) */
  .column:nth-child(2) {
      animation-delay: 0.1s !important; 
  }

  .column:nth-child(4) {
      animation-delay: 0.2s !important;
  }

  .column:nth-child(6) {
      animation-delay: 0.3s !important;
  }

  .column-entry{
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .column-entry:hover{
    transform: translateY(-5px);
  }
  
  .column h2 {
    margin: -1.5rem -1.5rem 1rem -1.5rem;
    padding: 1rem;
    border-radius: 10px 10px 0 0;
    text-align: left;
    font-size: 2vw;
    font-weight: bold;
  }

  .column ul li.column-header{
    background-color: #61468a;
    height: auto;
    width: auto;          /* Allow natural width */
    max-width: 100%;      /* Limit it to the container's width */
    margin-right: 1rem;
    padding-left: 25px;
    font-size: 1vw;
    flex-shrink: 1;
    white-space: normal;  /* Allow text wrapping */
}


  .column ul li:not(.column-header){
    margin-left: 50px;
    margin-top: -0.5rem;
    list-style-type: disc;
    flex-shrink: 1;
    font-size: calc(0.5vh + 0.5vw);
  }
  
/* Create a two‑column grid for the header row */
/* Use a fixed or responsive fixed-width for the header text column */
.column-entry {
  display: grid;
  grid-template-columns: clamp(300px, 40vw, 400px) auto;
  align-items: center;
  column-gap: 0;
}


.column-entry > li.column-header {
  grid-column: 1;
  background-color: #61468a !important;
  padding-left: 25px !important;
  font-size: 16px !important;
  height: 3rem !important;           /* Fixed height */
  display: flex !important;           /* Use flexbox for vertical centering */
  align-items: center !important;
  white-space: nowrap !important;     /* Prevent wrapping */
  overflow: hidden !important;        /* Hide overflow */
  text-overflow: ellipsis !important; /* Add ellipsis if text is too long */
  margin: 0 !important;
}


/* Circle icon container in the second column, shifted left */
.column-entry > span.circle-icon {
  grid-column: 2;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: clamp(60px, 10vw, 80px) !important;
  height: clamp(60px, 10vw, 80px) !important;
  background-color: #50337d !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  margin: 0;
  /* Shifts the icon left so its center aligns with the right edge of the header text */
  transform: translateX(-50%);
}

/* Icon inside the circle */
.column-entry > span.circle-icon i {
  font-size: clamp(30px, 4vw, 40px) !important;
  color: white !important;
  margin-top: 3px !important;
}

/* Details list spans both columns */
.column-entry > ul {
  grid-column: 1 / span 2;
  margin-top: 1rem;
}


  .header-divider {
    height: 5px;
    background-color: #a35892;
    width: 100vw;
    margin-bottom: 60px;
  }
  
  .divider {
    width: 0.1vw;
    background-color: #ffcc00;
    margin: 50px 1rem;
    height: 0.1vh;
    flex-shrink: 1;
  }

  .alpha {
    color: #bdffcf;
  }

  .prealpha {
    color: #fcf6c2;
  }

  .prototype {
    color: #ffd4c3;
  }

  .alpha.divider {
    background-color: #bdffcf;
  }

  .prealpha.divider{
    background-color: #fcf6c2;
  }

  .prototype.divider{
    background-color: #ffd4c3;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  li {
    margin-bottom: 1rem;
  }
  
  li strong {
    color: #daf5ff;
  }

  .column-header {
    display: inline-block; /* Makes the entire item line up horizontally */
    background-color: #61468a;  /* Background for the text */
    padding: 1rem;
    vertical-align: middle;  /* Vertically align text with the circle */
}

.circle-icon {
    display: inline-block; /* Ensure icon is inline with text */
    width: 5vw;
    height: 5vw;
    border-radius: 100%; /* Make it circular */
    text-align: center;
    line-height: 4.9vw; /* Center the icon inside the circle */
    margin-left: 0vw; /* Space between text and icon */
    vertical-align: middle; /* Align with text */
    padding-left: 0.1vw;
    margin-left: -2vw;
    margin-bottom:1.25vh;
}

h1 {
    margin: 0;
    font-size: 2vw;
    font-weight: bold;
    color: #daf5ff;
  }



  