:root{
--primary-color: #2a9d8f;
--accent-color:#FFB703;
--dark-text:#212529;
--light-text:#f8f9fa;
}

@media (min-width:320px) and (max-width:480px){
      /*BANNER SECTION*/
  header ul li a,.contact-banner {
  font-size: .7rem;
}
 .contact-banner {
    display: grid;
    flex: 1;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 600px;
  }


/* FOOTER */
.footer-box{
    max-width: 300px;
}
}

/* 481px - 600px: Larger mobile devices (landscape). */
@media (min-width: 481px) and (max-width:600px){
header ul li a,.contact-banner {
  font-size: .8rem;
}
 .contact-banner {
    display: grid;
    flex: 1;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 600px;
  }





/* FOOTER */
.footer-box{
    max-width: 300px;
 }

}
/* 600px - 768px: Tablets (portrait). */
@media (min-width:601px) and (max-width:768px){
header ul li a,.contact-banner {
  font-size: .7rem;
}
 .contact-banner {
    max-width: 100%;
    margin: auto;
    display: grid;
    flex: 1;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    max-width: 600px;
  }
}


/* 768px - 992px: Tablets (landscape) and small laptops. */

@media (min-width:768px) and (max-width:992px){
header ul li a,.contact-banner {
  font-size: .9rem;
}
 .contact-banner {
    max-width: 100%;
    margin: auto;
    display: grid;
    flex: 1;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 600px;
  }

  
}


/* 992px - 1200px: Laptops and desktops. */
@media (min-width: 992px) and (max-width:1200px){
header ul li a,.contact-banner {
  font-size: .8rem;
}
}

/*MAKES THE TEXTAREA BIGGER*/
@media (max-width: 768px) {

  .contact-form textarea {
    min-height: 250px; /* Makes the textarea taller on mobile */
  }
}






/* ACTIVATE HAMBURGER BUTTON */
@media (max-width: 768px) {
  .nav-bar{
    position: sticky;
    top:0;
  }
  .nav-links {
    height: 100vh;
    position: absolute;
    top: 80px;
    right: 0;
    flex-direction: column;
    background: #f8f9fa;
    width: 200px;
    display: none;
    transition: transform 0.4s ease;
    padding: 20px;
    z-index: auto;
    
  }

  .nav-links.open {
    display: flex;

    
  }

  .nav-links ul {
    position: relative;
    top: 0;
  }

  .hamburger {
    display: flex;
  }
    /* HERO BUTTON */
   /* .hero-btn {
    font-size: 1.1rem;
    padding: 12px 25px;
  } */

}

  /*Rotate Animation*/
  /* Only animate when fa-xmark appears */
  .rotate-in {
    animation: rotatePop 0.5s ease-in-out;
  }

  /* Rotate + scale animation */
  @keyframes rotatePop {
    0% {
      transform: rotate(0deg) scale(0.5);
      opacity: 0;
    }
    100% {
      transform: rotate(180deg) scale(1);
      opacity: 1;
      transition: 0.5s ease;
    }


  }