/*updated nav style */

nav a{
  text-decoration: none;
  list-style: none !important;
  
}

.disabled{
  display: none !important;
}

nav, nav ul{
  padding: 0 !important;
  margin: 0 !important;
}
/*uncollapsed navbar */
@media(max-width:891px){
  
  nav{
    display: flex;
    justify-content: center;
    width: 100vw;
    position: relative;
  }
  
  .nav_group {
  margin-top: 20px;
  }
  
  nav ul{
    display: flex ;
    justify-content: space-between ;
    width: 100%;
    align-items: center;
    padding: 0 !important;
    margin: 0 !important;
    
  }

  body{
      display: flex;
  }
}

/*collapsed navbar */
@media(max-width: 890px){
  nav{
    margin-left: 0px;
  }
  nav ul{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .nav_group:nth-child(1){
    margin-bottom: -50px;
  }
}

nav img{

  position: absolute;
}






  #contact_title {
    font-size: 50px;
    width: 100%;
    background: linear-gradient(to right, #F1C40F, #d4af76);
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    color:black;
  }
  h1:nth-child(3){
      margin-top: 30px;
  }
  
  
  
  body {
    display: flex;
    flex-direction: column;
    align-items:center ;
    position: relative;

  }

  #contactForm{
      margin-top:20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: 400px;
      text-align: center;
      border: 2px solid #ca993c;
      border-radius: 15px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
      padding: 20px;
      position: relative;
      margin-bottom: 200px;
   
  }

  @media (max-width: 450px) {
    #contactForm{
      width: 350px;
    }
    
  }

  @media (max-width: 370px) {
    #contactForm{
      width: 290px;
    }
    
  }

  /* Heading */



  #contactForm h2{
      font-size: 20px;
      color:black;
      border:2px solid #ca993c;
      background: linear-gradient(145deg, #d4af76, #c9a060);
      width: 70%;
      align-self: center;
      padding-top: 5px;
      padding-bottom: 5px;
      border-radius: 15px;
      position:absolute;
      top:-15px;
      margin-bottom: 10px;
  }

 

  input,textarea{
      border:none;
      border:1px solid #1e3a8a;
      box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
      border-radius: 10px;
      padding-left: 10px;
      
  }
 
  input{
      padding-top:5px;
      padding-bottom:5px;
      margin-bottom: 15px;
      
  }
  #name{
    margin-top: 30px;
  }

  textarea{
      padding-top: 4px;
      margin-bottom: 5px;
  }

  input::placeholder, textarea::placeholder {
      color: black;
      opacity: 0.5;
    }


  #contactForm button{
      margin-top: 20px;
      position: relative;
      overflow: hidden;
      display: inline-block;
      padding: 10px 20px;
      background: transparent;
      color: #2B2B25;
      border: 2px solid #d4af76;
      border-radius: 20px;
      font-size: 14px;
      cursor: pointer;
      text-align: center;
      transition: color 0.3s ease;
      width: 30%;
      align-self: center;
  }
  #contactForm button::after{/*copied from main.css meet-president*/
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(145deg, #d4af76, #c9a060);
      z-index: -1;
      border-radius: inherit;
      transform: scale(0);       /* Start with the background scaled down */
      transition: transform 0.3s ease;
      transform-origin: left;    /* Adjust this value to change the fill direction */
  }

  #contactForm button:hover::after {
      transform: scale(1);
    }


  .no-scroll{
    overflow: hidden;
  }

  /* Heading */




  
  

  
  nav{
    z-index: 1;
  }
  
  
  
  
.fancy-footer {
  width: 100%;
  overflow: hidden; /* Ensures no unwanted overflow */
  line-height: 0;   /* Removes any extra spacing */
}

.fancy-footer svg {
  display: block;
  width: 100%;
  height: 190px;
}


.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
  margin-top: -10px;
}

/* Social icons in a row */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 50px;
  /* Adjust margin as needed */
  margin-bottom:30px;
}

.footer-social a {
  text-decoration: none;
  color: #fff;
  font-size: 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fab:hover, .fas:hover {
  transform: translateY(-5px) scale(1.3);
  color: #fbf6c6;
}

/* Footer text styling */
.footer-text {
  margin-top: -20px;
  text-align: center;
}

.footer-text p {
  font-size: 16px;
  color: #ffffff;
  margin: 0; /* Remove extra margins if needed */
}




  
  @media (max-width: 500px) {
    .footer-text p {

      font-size: 13px;

    }




  }

  @media (max-width: 360px) {
    .footer-text p {

      font-size: 11px;

    }

    .footer-social{
      gap: 30px;
    }

    .footer-social a {

      font-size: 23px;

    }

  }

  @media (max-width: 320px) {
    .footer-text p {

      font-size: 9px;

    }

  }
  



  




