.splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #2D3436; /* Freetsh brand color */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s visibility 0.5s ease-in-out; /* Smooth fade-out */
}

/* Hide splash screen when this class is added */
.splash.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Optional logo animation */
.splash-logo {
  width: 200px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Optional: Fade in the logo 
.fade-in {
    animation: fadeIn 1s;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
*/

#main_header {
        display: flex;
        flex-direction: row;
        
        background-color:#F0EEE9;
        margin: 10px;
       color:#2D3436 ;
       border-radius: 10px;
       border: 1px;
       padding: 15px;
       justify-content: center;
       text-align: center;
     box-sizing: border-box
}

    #header{
        display: flex;
     background-color:#F0EEE9;
        margin: 10px;
       color:#2D3436 ;
       border-radius: 10px;
       border: 1px;
       padding: 15px;
       justify-content: center;
       text-align: center;
     box-sizing: border-box
    }
    
    #logo {
        display: flex;
        
        width: 65px;
        height: 65px;
        background-color: #2D3436;
        border-radius: 50px;
        justify-content: center;
        padding:10px;
     box-sizing: border-box;
    }
    
      #main_heading {
          background-color:black; color: #FF5C34;} 
  
  .slogan {
      
      color:#FFFFFF;
      margin: 10px;
  }
  
  
/* Hidden by default 


.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black 
  
  z-index:9999; /* Ensure it's on top 
  }



 Center the content 
.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  width: 80%;
  max-width: 500px;
}

 Close button style 
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 25px;
  cursor: pointer;
}
*/



/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top of everything */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
}

/* Modal Content Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 40%; /* Could be more or less */
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  text-align: center;
}

/* Close Button (x) */
.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-btn:hover, .close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Action button */
#understoodBtn {
  padding: 10px 20px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}


