@import url('base.css');
@import url('config.css');


nav {
    z-index: 999;
}

nav .container-fluid .navbar-list ul:first-child li .nav-link {
    margin: 0 10px;
} 


header .hero div .hero-buttons .contact-link {
    color: var(--light_gray);
    transition: all 0.2s;
}


textarea{
    height:200px ;
}

button[type="submit"] {
     font-size: 18px;
    font-weight: 600;
    border: none;
}



#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it is on top of all other elements */
  }
  
  /* Spinner animation */
  .spinner {
    border: 8px solid var(--Shark); 
    border-top: 8px solid var(--Amber); 
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
 
  }
  
  /* Spinner keyframes for rotation */
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


  #detailsBottomSheet {
    position: fixed;
    z-index: 1500;
    bottom: -100%;
    left: 12.5%; /* To center the sheet */
    width: 75%;
    height: 100%;
    background-color: #f8f9fa;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: bottom 0.3s ease-in-out;/* Smooth transition */
    overflow-y: auto;
  }

  #detailsBottomSheet.activeSheet {
    bottom: 0;
  }



 