/**Montserrat**/

*{
   
    border:border-box;
    color:aliceblue;
    background-color:#253d1b;
}

/*navigation bar*/


#navbar {
    background-color: #1b2c13; 
    height: 100px; 
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 30px;
    position: relative;
    transition: background-color 0.3s ease;
}

#navbar:hover {
    background-color: #253d1b; 
}

#logo {
    color: #ffffff; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem;
    margin-right: auto; 
    text-decoration: none; 
    font-weight: bold; 
    transition: color 0.3s ease; 
  }
  
  #logo span {
    display: inline-block;
    transition: transform 0.3s ease;
    position: relative;
    cursor: pointer;
  }
  
  #logo span:hover {
    transform: translateY(-5px) rotateZ(5deg);
  }
  
  /* For a more dynamic wave effect */

  #logo span:nth-child(odd):hover {
    transform: translateY(5px) rotateZ(-5deg);
  }


.navigation-bar nav {
    display: flex;
    align-items: center;
}
.navigation-bar a {
    color: #ffffff; 
    text-decoration: none;
    margin-left: 25px; 
    font-size: 1.2rem;
    position: relative;
    padding: 0  px; 
    transition: color 0.3s ease, transform 0.3s ease; 
}

.navigation-bar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 100%;
    background-color: aliceblue; 
    transform: scaleX(0); 
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.navigation-bar a:hover {
    color: aliceblue; 
    transform: translateY(-2px); 
}

.navigation-bar a:hover::after {
    transform: scaleX(1); 
}

.navigation-bar i {
    color: #ffffff; 
    margin-left: 25px;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease; 
}

.navigation-bar i:hover {
    color: aliceblue; 
    transform: scale(1.2); 
}

.navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.nav-links {
    display: flex;
    align-items: center;
}

.sign-in-btn {
    display: flex;
    align-items: center;
    background-color: #a5b648;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.sign-in-btn:hover {
    background-color: #69762a;
}

.sign-in-btn i {
    margin-right: 5px;
    color:#69762a;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
  
}

.user-info h1{
 font-weight: 700;
 font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
 margin:20px ;
 padding:20px ;

}

#logo {
    color: #ffffff; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem;
    margin-right: auto; 
    text-decoration: none; 
    font-weight: bold; 
    transition: color 0.3s ease; 
  }
  
#logo span {
    display: inline-block;
    transition: transform 0.3s ease;
    position: relative;
    cursor: pointer;
  }
  
#logo span:hover {
    transform: translateY(-5px) rotateZ(5deg);
  }

#logo span:nth-child(odd):hover {
   transform: translateY(5px) rotateZ(-5deg);
  }

.user-info h3{
    color: aliceblue;
    font-weight: 700;
    padding:20px ;
    margin:20px ;


}

.user-info h5{
    color:aliceblue;
    margin-left:35px ;

}

.container{
  padding:2rem;

}

.slider-wrapper{
   position:relative;
   max-width: 48rem;

}

.slider{
    display:flex;
    aspect-ratio: 16/9;
    overflow-x: auto;
    scroll-snap-type: x mandatory ;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius:0.5rem;
    -webkit-overflow-scrolling: touch;

}

.slider::-webkit-scrollbar{
    display:none;
}

.slider img{
    flex: 1 0 100%;
    scroll-snap-align: start;
}
.content-table{
    cursor:pointer;
}

/*for cahnging color of footer section to dark green*/

.footer-div{
    background-color: #2F5233;
}


.footer-section {
    margin-bottom: 15px;
    color:white;
    transition: background-color 0.3s ease;
}

.footer-section:hover{
 background-color:#2F5233;
}

.footer-section h3 {
    cursor: pointer;
    
    margin: 50px;
}

.hidden {
    display: none;
    color:white;
}

.footer-section a {
    text-decoration: none;
    margin-top: 20px;
}

.footer-section p{
    margin-left:50px;
}

.footer-section a:hover {
    text-decoration: underline;
}

footer {
 background-color: #2F5233; 
 color: #ecf0f1; 
}

.footer-link {
 color: #2F5233; 
 text-decoration: none;
 transition: color 0.3s ease;
}

.footer-link:hover {
 color: #2F5233; 
 text-decoration: underline;
}

.footer-section h3 {
 cursor: pointer;
}

.hidden {
 display: none;
}