/* responsive.css */

@media (max-width: 576px) {
  body{
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .hamburger{
    margin-top: -17px;
  }
  
  .nav-links.active {
    margin-top: -30px;
    background-color: rgba(10, 10, 10, 0.85);
  }
  .homeLink1 a{
    color: #ff7e1b!important;
  }
  .nav-links a{
     color: #e6e6e6;
  }
  .hero{
    background-position: left!important;
  }
  .hero-content {
    width: 300px;
  }
  .hero h1 { 
    font-size: 2.2rem ; 
    line-height: 1.5;
  }

.row {
  flex-direction: column;
}

  p { font-size: 1.95rem; 
  }
.hud-button {
  padding: 12px 20px;
  font-size: 0.9rem;
}
img {
  width: 100%;
  height: auto;
}
.background-glow { display: none; }

.sub-h1 {
  font-size: 18px
}

/*ABOUT*/
.about-left{
  width: 100%;
  text-align: center;
}
.about-right {
  width: 100%;
  text-align: center;
  padding: 20px!important;
  text-align: left;
}

/*ABOUT END*/

.services-cta {
  margin-top: 55px;
}

.services-header{
  text-align: center;
}

.projects {
  justify-content: center;
  padding: 20px!important;
}
.projects p{
  text-align: center;
  font-size: 1rem;
  max-width: 100%;!important;
  text-align: center;
}

/*BLOG*/
.blog .row {
    flex-direction: column;
  }
  .blog-left{
    padding: 20px!important;
    text-align: center;  
}
  .blog-left, .blog-right {
    width: 100%;
  }

/*BLOG*/

  .sub-h1 {
    font-size: 0.95rem;
  }

.data-terminal{
  max-width: 80%;
}

.contact-intro{
  font-family: 'Lexend Giga', sans-serif;
}
.contact-subtext{
  font-size: 0.95rem;
  font-family: 'Lexend Giga', sans-serif;
  margin-top: 40px;
}
}
.contact-form {
  max-width: 100%;
  box-sizing: border-box;
}
.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;

}
.footer .h1-span{
  margin-top: -330px;
}
.site-footer p{
  font-size: 14px;
}
.footer-links{
  text-align: center;
}

/* ABOUT ME PAGE*/
.about-hero {
  background-position: center!important;
}
.about-hero h1{
  font-size: 2.2rem;
}
/* ABOUT ME PAGE END*/

.fBox{
  max-width: 80%;
  max-height: 150px;
}
.fBox p{
  font-size: 14px;
  margin-top: -10px;
}
.personal .sub-h1{
  font-size: 18px;
}
.personal .row {
    flex-wrap: wrap;
  }
.personal .personal1{
  text-align: left;
}
  .personal .personal1,
  .personal .personal2 {
    width: 100%;
    /*padding: 20px!important;*/
  }

.mission {
  padding: 20px !important;
}
.mission p{
  font-size: 1rem;
  max-width: 100%;
}
.vision {
  padding: 20px !important;
}
.vision p{
  font-size: 1rem;
  max-width: 100%;
}
.timeline{
  padding: 0 !important;
}
.timeline-header{
  padding: 20px;
}
.timeline-item1{
  width: 100%!important;
}
.timeline p{
  font-size: 14px!important;
}
.timeline-content{
  width: 100%;
}
.transmissionBtn{
  margin: 0 auto!important;
  width: 280px!important;
  padding: 10px 20px!important;
  
}
.transmission-cta p{
  font-size: 14px!important;
}

 .about-text{
  text-align: left;
 }

 .aboutLaunch {
  text-align: left;
  font-family: lexend giga, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.9;
 }
 
  .aboutLaunch1 {
  text-align: center;
  font-family: lexend giga, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.9;
 }
 
  .project-intro{
  font-size: 1rem;
  line-height: 1.9;
 }

}

@media (min-width:576px) and (max-width:768px) {
  .hero-content {
    width: 400px;
  }
  .projects p{
    width: 100%;!important;
  }
  .blog-row{
    display: block;!important;
    
  }
  .blog_left {
    width: 100%;
    text-align: center !important ;
  }
  .blog-right {
    width: 100%;
  }
}

/* Tablets and up */
@media screen and (max-width: 1024px) {
  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.5;
  }

  .hud-button {
    padding: 10px 20px;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .navbar ul {
    display: none;
  }

   .nav-links.active {
    margin-top: -30px;
    background-color: rgba(10, 10, 10, 0.85);
  }

  .hero h1 {
    font-size: ;
  }
}

/*HAMBURGER MENU*/
/* Base hamburger style */
.hamburger {
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
  position: absolute;
  right: 20px;
  top: 20px;
}

.hamburger .bar {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease;
  background-color: #ff7e1b;
  border-radius: 2px;
}

/* X animation when active */
.hamburger.active .top-bar {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .middle-bar {
  opacity: 0;
}

.hamburger.active .bottom-bar {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    transition: all 0.3s ease-in-out;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    background: #e6e6e6;
    width: 100%;
    padding: 1.5rem 0;
    text-align: center;
    z-index: 1000;
    border-top: 1px solid #111;
    transition: all 0.3s ease-in-out;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 1rem 0;
  }
}
/*HAMBURGER MENU END*/

/* MOBILE */
@media (max-width: 768px) {
  /* all mobile fixes */
  .navbar::before {
    display: none;
  }
  .logo img {
    max-width: 160px;           /* shrink logo a bit on mobile */
    height: auto;
  }
   .navbar {
    padding: 10px 16px;
     border-bottom: #111;
  }
  .navbar::after {
    bottom: 42px;
  }
  .nav-tech-layer {
    bottom: 25px;
    display: none;
  }
  .hamburger{
    top: 20px;
  }
  .hero-content{
    margin-top: 30px;
  }
  .glitch{
    top: 25px;
  }

  /* ========= MAIN ABOUT (HOMEPAGE) ========= */

  #about .row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  #about .about-left,
  #about .about-right {
    width: 100%;
    box-sizing: border-box;
  }

  /* Left side: title + button centered on mobile */
  #about .about-left {
    text-align: center;
  }

  #about .about-left .h2-span {
    font-size: 1.3rem;
  }

  #about .about-left .hero-btn {
    margin-top: 10px;
  }

  /* Right side: HUD panel full-width */
  #about .about-right {
    padding: 24px 16px 32px;
    margin: 0;
  }

  #about .about-right.hud-panel {
    width: 100%;
  }

  #about .about-heading {
    font-size: 1.2rem;
  }

  #about .about-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0.75rem;
  }


  /* ABOUT 2 */
  .about2 .row {
    flex-direction: column;
  }
  .about2-left, .about2-right {
    width: 100%;
  }  

     /* Left identity panel full width */
  #about2 .about2-left {
    width: 100%;
    text-align: left!important;
    padding: 40px;
  }

  /* Right text panel full width */
  #about2 .about2-right {
    width: 100%;
    text-align: center;
    
     padding: 24px 16px;
  }

  /* Headings a bit smaller so they don’t break weirdly */
  #about2 .about2-left h2,
  #about2 .about2-right h2 {
    font-size: 1.35rem;
    text-align: center;
  }

  /* Identity list: tighter line-height & font size */
  #about2 .about2-ul {
    margin: 16px 0 0;
   
  }

  #about2 .about2-ul li {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  #about2 .about2-ul .ul-span {
    display: inline-block;
    margin-bottom: 4px;
    font-size: 0.92rem;
  }

  /* Paragraphs on the right: easier to read on small screens */
  #about2 .about-text {
    font-size: 0.95rem;
    line-height: 1.6;
    width: 85%;
    margin: 0.75rem auto;
  }

  /* Personal log button – full-width-ish on mobile */
  #about2 .aboutBtn {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    max-width: 260px;
    margin-top: 65px;
  }
  
   .mission, .vision {
    text-align: center;
    padding: 20px;
  }
  
   .mission .about-text{
    width: 100%;
  }
  .vision .about-text{
    width: 100%;
  }

}

@media (min-width:768px) and (max-width:960px) {
  .hero-content {
    
    margin-top: 30px;
    width: 550px;
  
  }
}

@media (max-width:960px) {
    .navbar ul {
    display: ;
  }
   .nav-links.active {
    display: flex;
    height: 100vh;
  }

  .nav-links li {
    margin: 1rem 0;
  }
   .nav-links {
    transition: all 0.3s ease-in-out;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: rgba(10, 10, 10, 0.85);
    width: 100%;
    padding: 1.5rem 0;
    text-align: center;
    z-index: 1000;
    border-top: 1px solid #111;
    transition: all 0.3s ease-in-out;
  }

  .homeLink1 a{
    color: #ff7e1b!important;
  }
  .nav-links a{
     color: #e6e6e6;
  }
   .navbar::before {
    display: none;
  }
  .logo img {
    height: 83px;
    max-width: 160px;           /* shrink logo a bit on mobile */
    height: auto;
  }
   .navbar {
    padding: 10px 16px;
     border-bottom: #111;
  }
  .navbar::after {
    bottom: 42px;
  }
  .nav-tech-layer {
    bottom: 25px;
    display: none;
  }
  
 
  .hero-content{
    margin-top: 30px;
   
  }
  .glitch{
    top: 25px;
  }
  
}

@media (min-width:960px) {
  .hamburger {
    display: none;
  }
  .glitch{
    top: 30px;
  }
}

/* TABLETS */
@media (max-width: 1024px) {
  /* tablet adjustments */
}

/* LARGE SCREENS */
@media (min-width: 1400px) {
  /* large display improvements */
}