/* Background video styling */
#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
h1, h2, h3, h4, h5, h6, p, a, .navbar, .member-role, .member-name, .member-contact, .footer-container {
    font-family: 'Russo One', sans-serif;
}

.navbar {
    background-color: rgba(21, 22, 24, 0.7); /* Semi-transparent background */
    color: white;
    padding: 2px 0px; /* Increased padding for better spacing */
    position: fixed;
    width: 100%; /* Full-width navbar */
    top: 0;
    z-index: 100; /* Ensure navbar is above all elements */
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between logo and links */
    align-items: center; /* Vertically center items */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    text-align: center;
}

.navbar-logo img {
    height: 40px; /* Adjust the logo height */
}

.navbar-links {
    display: flex; /* Arrange links horizontally */
    gap: 20px; /* Space between links */
}

.navbar-links a {
    float: left;
    display: block;
    color: #ffffff;
    /* White text */
    text-align: center;
    padding: 0.3em 0.5em;
    /* Decrease padding by 3px */
    text-decoration: none;
    border-radius: 20px;
    /* Circular edges */
    font-family: 'Russo One', sans-serif;
    /* Change font style to Russo One */
    margin: auto 0.3em;
    transition: 0.2s ease-in;

}

.navbar-links a:hover {
    background-color: rgba(255, 20, 147, 0.7); /* Highlight color on hover */
}



/* General styles */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Russo One', sans-serif;
    color: white;
    scroll-behavior: smooth;
}
/* Style the scrollbar track */
::-webkit-scrollbar {
    width: 0;  /* Width of the scrollbar */
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
    border-radius: 10px; /* Rounding the corners of the track */
  }
  
  /* Style the scrollbar thumb */
  ::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounding the corners of the thumb */
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color when hovering over the scrollbar thumb */
}
/* Main content styling */
.content {
    padding: 20px;
    text-align: center;
}

.main-heading {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Club sections */
.club-section {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    width: 80%;
}

.club-title {
    text-align: center;    
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 5px #a7f2fc, 0 0 5px #a4def6, 0 0 3px #a4d2e8;
}

/* Members container - horizontal alignment */
.members {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.member-card {
    background-color: #111;
    border-radius: 10px;
    width: 220px;
    height: 300px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
    transform: scale(1.1);
    border-width: 3px;
    border-color: #f39c12;
}

.member-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.member-name {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.member-contact {
    font-size: 0.9rem;
    color: lightgray;
}

/* Footer styles */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 10px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-container p {
    margin: 0;
    text-align: center;
    flex-grow: 1;
}

.social-links {
    display: flex;
    align-items: center;
    z-index: 1;
}

.social-links a {
    margin: 0 10px;
    z-index: 1;
}

.social-links img {
    width: 24px;
    height: 24px;
    z-index: 1;
}

/* Blur-In Effect */
.container {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition: opacity 1s ease, filter 1s ease, transform 1s ease;
}

.container.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}
.club-name {
    font-size: 3.5em; /* Adjust size as needed */
    font-weight: bold;
    text-align: center;
    color: transparent;
    background: linear-gradient(45deg, #ff7e5f, #feb47b, #86a8e7);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    display: inline-block;
    width: 100%; 
    margin: 0 auto; 
  }
  
  .club-name:hover {
    transform: scale(1.1);
  }
