@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Aleo:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
.body{
  background-color: #F0F4F0;
}

  .logo {
    height: 52px;
  }
  .website-name{
    font-weight: bold;
    color: black;
    font-size: 1rem;
  }
.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Albert Sans', sans-serif;
    background-color: #c0d7bbff;
    padding: 1rem 2rem;
    flex-wrap: wrap;
    position: fixed; /* Make navbar fixed at the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure navbar stays on top */
}
.nav-ul{
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;   
}
.nav-ul a{
    text-decoration: none;
    color: black;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}
.nav-ul a:hover{
    background-color: rgb(100, 141, 124);
    color: white; /* Optional: makes text easier to read */
}
.body {
    margin: 0;
    font-family: "Albert Sans", sans-serif;
}
.why-ux {
    padding-top: 8rem;
    max-width: 1400px;
    margin: 1rem;
  }
.ux-block {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }
  .short-info {
    max-width: 1000px;
  }
  .free-time{

    max-width: 1400px;
    margin: 1rem;
  }
  .free-time-block{
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }
  .why-ux h2{
    font-family: "Aleo", serif;
    font-size: 48px;
    font-weight: 300;
  }
  .why-ux p{
    margin: 0;
    font-family: "Albert Sans", sans-serif;
  }
  .free-time h2{
    font-family: "Aleo", serif;
    font-size: 48px;
    font-weight: 300;
  }
  .v-gallery {
    position: fixed;
  top: 50%;                  /* center vertically */
  right: 50px;               /* push off the right edge */
  transform: translateY(-50%); 
  width: 350px;              /* make it a slim strip */
  height: 450px;             /* not full screen, just a box */
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;          /* optional background */
  }
  .v-gallery:hover .v-track {
    animation-play-state: paused;
  }
  .v-track {
    display: flex;
    flex-direction: column;
    animation: scroll-up 20s linear infinite;
  }
  
  .v-gallery img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
    object-fit: cover;
  }
  
  @keyframes scroll-up {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
  }  
  .footer {
    background-color: black;
    color: #FFFFFF;
    padding: 2rem 1rem;
    font-family: 'Albert Sans', sans-serif;
  }
  
  .footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
  }
  
  .footer-left,
  .footer-center,
  .footer-right {
    
    flex: 1;
    min-width: 200px;
  }
  
  .footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 0.5rem;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .footer-links a:hover {
    color: #c0d7bbff;
  }
  
  .footer-right a {
    color: #c0d7bbff;
    text-decoration: none;
  }
  
  .footer-right a:hover {
    text-decoration: underline;
  }
  