
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

body{
    font-style: Outfit;
    padding: 0;
    margin: 0;
  }

  .navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-link {
    color: #fff;
    backdrop-filter: blur(10px);
}

.nav-link:hover {
    color: #ff3c41;
}
  
  .about-section {
    padding: 80px 0;
    background-color: #000000e4;
    backdrop-filter: brightness(80%);
    backdrop-filter: opacity();
    background-size: cover;
    color: #fff;
    text-align: center;
    scroll-behavior: smooth;
  }
  
  .section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
  
  .section-description {
    position: relative;
    font-size: 1.125rem;
    margin-bottom: 40px;

  }
  
  .team-container {
    position: relative;
    width: 80vw;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .team-member {
    position: relative;
    width: 20vw;
    margin: 2vw;
  }
  
  .team-img {
    width: 100%;
    background-color: #ff9a9d6c;
    border-radius: 2vh;
    box-shadow: 2px 4xp 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    filter:brightness(80%);
  }
  
  .team-member:hover .team-img {
    transform: scale(1.05);
    filter: blur(0.5px);
  }
  
  .overlay {
        position: absolute;
        bottom: -2.5%;
        left: -2.5%;
        width: 105%;
        height: 30%;
        background: rgba(0, 0, 0, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 1s ease;
        opacity: 0;
        border-radius: 0 0 2vh 2vh;
      }

  .team-member:hover .overlay {
    opacity: 1;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
  }
  
  .social-icons a {
    color: #fff;
    margin: 5px;
    font-size: 1.5; 
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #ff3e3e;
  }
  
  .member-role {
    font-size: 1rem;
    margin-top: 10px;
  }
  
  .container {
    position: relative;
    z-index: 1;
}

.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.cubes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 200vh; 
    display: flex;
    flex-wrap: wrap;
    z-index: 0;
}

.cube {
    width: 43px;
    height: 43px;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    transition: transform 1.5s ease;
    opacity: 0.9;
}

.wave {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.3), transparent 40%),
                radial-gradient(circle, rgba(255, 0, 0, 0.6), transparent 60%);
    background-size: 100% 100%;
    animation: wave 2s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes wave {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100%;
    }
}

.cube:nth-child(odd) {
    animation: rotateCube 5s ease-in-out infinite;
}

@keyframes rotateCube {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

@media (max-width: 768px) {
  .team-member {
    position: relative;
    width: 80vw;
    margin: 5vw;
  }

}