html{
    margin:0px;
    border: 0px;
    background-color: #15151e;
}
.MainBar{

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-image: linear-gradient(to top right, black, red);
    border-radius: 9999px;
    border: 2px solid #222;

    position: relative;
    z-index: 10;

    width: 100%;
    box-sizing: border-box;
    margin-bottom: 30px;


}

.main-title {
    flex: 1;
    text-align: center;
}

.main-title h1 {
    color: #fff;
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}
.bodyBar{
    display: flex;
    background-image: linear-gradient(to top right, black 30%, red);
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    
    width: 100%;
    height: fit-content;
    border-radius: 20px;
    border: 2px solid #222;
    box-sizing: border-box;
    position: absolute;

    padding: 10px 24px;
}

/* Custom scrollbar styling for dropdown content */
.content::-webkit-scrollbar {
    width: 6px;
}

.content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.content::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff4444, #cc0000);
    border-radius: 3px;
}

.content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff6666, #ff0000);
}

.Team{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 20px;
    background-image: linear-gradient(to top right,black 30%, red);
    border-radius: 20px;
    border: 2px solid #222;
    box-sizing: border-box;
    padding: 10px 24px;
    position: relative;
    width: 45%;
    height: 200px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.Team:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background-image: linear-gradient(145deg, #ff4444, #cc0000);
    border-color: #fff;
}

.navbar{
    gap: 15px;
}

/* Navigation button styling with glossy effect */
.MainBar button {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

/* Glossy overlay effect */
.MainBar button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.MainBar button:hover::before {
    left: 100%;
}

.MainBar button:hover {
    background: linear-gradient(145deg, rgba(255, 107, 107, 0.2), rgba(255, 107, 107, 0.1));
    border-color: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 107, 107, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.MainBar button:active {
    transform: translateY(0);
    box-shadow: 
        0 4px 15px rgba(255, 107, 107, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* NavBar container styling */
.NavBar {
    display: flex;
    gap: 15px;
    align-items: center;
}





.Team:hover .content {
  display: block;
}


.link{
    align-items: center;
    cursor: pointer;
    text-align: center;
    text-decoration: none;

}


.drip{
background-color: #5b5a77;
border-radius: 50px;
color: rgb(1, 0, 0);
padding: 16px;
font-size: 16px;
cursor: pointer;
font-family: 'Courier New', Courier, monospace;


}

/* Dropdown button on hover & focus */
.drip:hover, .drip:focus {
background-color: #134d79;

} 

body > *:not(footer) {
  flex: 1;
}



/* The container <div> - needed to position the dropdown content */
.drop {
position: relative;
display: inline-block;
}


/* Dropdown Content (Hidden by Default) */
.content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    gap: 8px;
    background-image: linear-gradient(red);
    border-radius: 20px;
    border: 2px solid #222;
    box-sizing: border-box;
    padding: 15px 20px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 200px;
}

/* Links inside the dropdown */
.content a {
color: black;
padding: 8px 12px;
text-decoration: none;
display: block;
font-family: 'Inter', sans-serif !important;
font-size: 14px;
line-height: 1.4;
border-radius: 8px;
transition: all 0.2s ease;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

/* Change color of dropdown links on hover */
.content a:hover {
background-color: #ddd;
}

/* Show the dropdown menu */
.show {
display: block;}


.fontbody{
    font-family: 'Righteous', cursive !important;
}
.logo-button {
    
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 25px;
    transition: all 0.3s ease;
    padding: 2px;
}

.logo-button img {
    width: 30px;
    height: 32px;
    object-fit: fill;
}

.logo-button:hover {
    background-color: rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
    transform: translateY(-2px);
}

.logo-button:hover img {
    transform: scale(1.1);
}
/* About page team members styling */
.about-page .bodyBar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 30px;
    padding: 40px 20px;
    min-height: 80vh;
}

.member-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 280px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.member-card:hover {
    background: linear-gradient(145deg, rgba(255, 107, 107, 0.2), rgba(255, 107, 107, 0.1));
    border-color: #ff6b6b;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
}

.member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.member-card:hover .member-avatar {
    border-color: #ff6b6b;
    transform: scale(1.05);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.member-name {
    color: #fff;
    font-family: 'Righteous', cursive;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.member-role {
    color: #ff6b6b;
    font-family: 'Righteous', cursive !important;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-description {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Righteous', cursive !important;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.Team.team1 { background-image: linear-gradient(to top right,black,red);}
.Team.team2 { background-image: linear-gradient(to top right,rgb(142, 213, 224),rgb(15, 145, 145)); }
.Team.team3 { background-image: linear-gradient(to top right,rgb(234, 167, 112),rgb(199, 90, 0)); }
.Team.team4 { background-image: linear-gradient(to top right,rgb(3, 39, 170),rgb(3, 12, 44)); }
.Team.team5 { background-image: linear-gradient(to top right,rgb(115, 185, 255),rgb(1, 142, 164)); }
.Team.team6 { background-image: linear-gradient(to top right,rgb(45, 89, 42),rgb(3, 39, 0)); }
.Team.team7 { background-image: linear-gradient(to top right,grey,rgb(41, 41, 41)); }
.Team.team8 { background-image: linear-gradient(to top right,rgb(18, 195, 12),rgb(3, 85, 1)); }
.Team.team9 { background-image: linear-gradient(to top right,rgb(58, 103, 206),rgb(54, 4, 237)); }
.Team.team10 { background-image: linear-gradient(to top right,rgb(145, 214, 244),rgb(4, 167, 237)); }
.fontstock{
    font-family: 'Inter', sans-serif !important;
}
