/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');


/*up here because can be deleted soon*/
/* Countdown block in hero/home */
.launch-countdown{
  margin-top: 18px;
  max-width: 520px;
}

/* Text: "Get ready to invest in us" */
.launch-countdown .countdown-label{
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #414141;
  margin-bottom: 10px;
}

/* Countdown row */
.launch-countdown .countdown{
  display: grid;
  grid-template-columns: repeat(4, minmax(90px, 1fr));
  gap: 12px;
  align-items: stretch;
}

/* Each number box */
.launch-countdown .time-box{
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(209, 17, 104, 0.18);
  border-radius: 12px;
  padding: 10px 10px 8px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
  text-align: center;
}

/* Big numbers */
.launch-countdown .num{
  font-family: 'Ubuntu', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: rgb(209, 17, 104);
  line-height: 1.05;
  letter-spacing: 0.5px;
}

/* Units */
.launch-countdown .unit{
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #414141;
  opacity: 0.85;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Subline showing exact target time */
.launch-countdown .countdown-sub{
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #414141;
  opacity: 0.85;
}

/* Responsive: stack nicely on small screens */
@media (max-width: 500px){
  .launch-countdown{
    max-width: 100%;
  }
  .launch-countdown .countdown{
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 10px;
  }
  .launch-countdown .num{
    font-size: 30px;
  }
}


.home .home-content > a {
  margin-bottom: 30px; /* gap between button and countdown/text */
}


.launch-countdown .countdown-label{
  font-family: 'Ubuntu', sans-serif;   /* same as "We Are ..." */
  font-size: 22px;                     /* feels closer to your hero typography */
  font-weight: 600;
  color: #414141;
  margin-bottom: 10px;
}


.launch-countdown{
  margin-top: 0;       /* because the button now provides the gap */
  max-width: 520px;
}



/*Can be deleted until here*/

/* Logic that will be used from 13th of may 12am */

/* small gap under the Overview button */
.home .home-content > a {
  margin-bottom: 18px;
}

/* container under the hero button */
.partner-cta {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  margin-top: 25px;
  gap: 14px;
}

/* clickable banner - NO background, no box */
.partner-banner {
  display: inline-block;
  border-radius: 12px;     /* keeps rounded look if the image has edges */
  overflow: hidden;        /* ensures rounded corners apply to image */
  background: transparent; /* IMPORTANT */
  border: none;            /* IMPORTANT */
  box-shadow: none;        /* IMPORTANT */
  transition: transform 0.2s ease, filter 0.2s ease;
}

.partner-banner img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent; /* IMPORTANT */
}

/* subtle hover without adding background */
.partner-banner:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.18));
}

/* CTA button (matches your site) */

.invest-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 12px 28px;
  border-radius: 6px;

  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  font-weight: 600;

  /* INVERTED default */
  background: none;
  color: rgb(209, 17, 104);
  border: 2px solid rgb(209, 17, 104);

  transition: all 0.3s ease;
}

/* Hover = old normal state */
.invest-btn:hover {
  background: rgb(209, 17, 104);
  color: #fff;
}


/* Override the hero link styling for the banner link */
.home .home-content a.partner-banner{
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;   /* optional: keep it sharp */
  color: inherit !important;
}

/* Also override hover, because your global hover removes background */
.home .home-content a.partner-banner:hover{
  background: transparent !important;
}

/* Desktop layout: banner + button in one row */
.partner-cta {
  max-width: 700px;                 /* a bit wider so both fit nicely */
  display: grid;
  grid-template-columns: 1fr auto;  /* banner takes remaining space, button hugs content */
  align-items: center;
}


@media (max-width: 500px) {
  .partner-cta {
    max-width: 100%;
    grid-template-columns: 1fr;   /* stack */
  }
  
}


/* Ensure the banner + invest button stack on mobile */
@media (max-width: 500px){
  .partner-cta{
    grid-template-columns: 1fr;   /* if you use grid on desktop */
  }

  /* Prevent full-width stretching */
  .home .home-content a.invest-btn{
    width: fit-content !important;
    display: inline-flex !important;
    align-self: flex-start;       /* keep it left-aligned under the banner */
  }
}

/* Match the "Overview" button sizing rules on smaller screens */
@media (max-width: 947px){
  .home .home-content a.invest-btn{
    font-size: 23px !important;
    padding: 10px 30px !important;  /* same as your mobile hero button */
  }
}

@media (max-width: 690px){
  .home .home-content a.invest-btn{
    font-size: 20px !important;     /* same as your mobile hero button */
  }
}


/* FORCE inverted invest button (place at END of style.css) */
.home .home-content a.invest-btn{
  background: transparent !important;
  color: rgb(209, 17, 104) !important;
  border: 2px solid rgb(209, 17, 104) !important;
}

.home .home-content a.invest-btn:hover{
  background: rgb(209, 17, 104) !important;
  color: #fff !important;
}



/* End of Logic that will be used from 06th of may 10am */

