
/* Mobile stacking */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-image img {
    margin-bottom: 20px;
  }
}
.event-section {
  background: #0E2440 /* or darker if you want */
  background-color: ;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}


/* General Reset Overrides */
body {
  font-size: 16px;
  line-height: 1.5;
}

/* Override desktop styles for mobile */
/* Only for mobile screens */
@media screen and (max-width: 768px) {

  #navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #0E2440;
    border:none;
  }
  .signup-content p {
    text-align: center;
  }
  /* Hide the nav links by default */
  #navbar ul.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; /* adjust for navbar height */
    border: none;
    right: 0;
    background-color: #0E2440;
    width: 200px;
    
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    padding: 10px 0;
    z-index: 999;
  }

  #navbar ul.nav-links li a {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
  }

  #navbar ul.nav-links li a:hover {
    background-color: #0e24407d;
  }

  /* Burger menu */
  #navbar .burger {
    width: 25px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  #navbar .burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
  }

  /* Show menu when active */
  #navbar.active ul.nav-links {
    display: flex;
  }

  /* Optional: stack logo and burger properly */
  #navbar h1.logo {
    margin: 0;
  }
}
#navbar {
  z-index: 1000; /* make sure it's above video and overlay */
  position: relative; /* ensure it stays clickable */
}

#navbar::before {
  z-index: 1100; /* burger icon above navbar */
  position: relative; /* clickable */
}
 .signup-container .input{
  justify-content: center;
}
 .signup-container p {
    margin: 0;       /* remove default margins */
   
    justify-content: center;
  }

/* Video Section */
.showcase-conent {
  max-width: 100%;
  width: 95%;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.showcase-conent .l-heading {
  font-size: clamp(1.5rem, 5vw, 3rem); /* scales smoothly with screen size */
  line-height: 1.1;                    /* tight but readable */
  white-space: nowrap;                  /* try to keep it on one line */
  overflow: hidden;                     /* hide anything overflowing container */
  text-overflow: ellipsis;              /* show "..." if still too long */
  display: inline-block;                /* proper width calculation */
  padding: 0 1rem;
}

/* Mobile adjustments (phones) */
@media screen and (max-width: 768px) {
  .showcase-conent .l-heading {
    font-size: clamp(1.3rem, 6vw, 2.2rem); /* smaller on phones */
    line-height: 1.1;
    white-space: normal;                   /* allow wrapping if absolutely needed */
    overflow: visible;
    text-overflow: unset;
  }
   .signup-container .input{
     margin: 0; 
  justify-content: right;
}
 .signup-container p {
    margin: 0;       /* remove default margins */
   
    justify-content: center;
  }
.footer-links,
  .footer-socials {
    display: block;
    margin: 0.375rem 0;
  }
  .showcase-conent .lead {
    font-size: 1rem;
    text-align: center;
    margin-top: 0.5rem;
  }

  .showcase-conent .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    display: block;
    margin: 1rem auto 0 auto;
  }
}

/* Tablet adjustments (iPad Air etc.) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .showcase-conent .l-heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* slightly smaller than desktop */
    white-space: nowrap;                    /* try to keep one line */
    overflow: visible;
  }
}

@media (max-width: 768px) {
  /* Stack the container vertically */
  .signup-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }

  /* Keep the image visible and responsive */
  .signup-image {
    display: block;
    width: 100%;
    max-width: 300px; /* adjust as needed */
    margin: 0 auto;
  }

  .signup-image img {
    width: 100%;
    height: auto;
    border-radius: 12px; /* optional */
  }
  .signup-container .signup-btn {
  display: block;          /* ensures it behaves like a block element */
  margin: 0 auto;          /* centers horizontally */
  text-align: center;      /* for text inside the button */
  padding-top: 1rem;
  margin-top: 1rem;
}
  .signup-container .input{
  justify-content: center;
}
 .signup-container p {
    margin: 0;       /* remove default margins */
   
    justify-content: center;
  }

 } /* Center the conte*
