* {
    margin: 0; /* Remove margin for all elements */
    padding: 0; /* Remove padding for all elements */
}

hr {
    width:30%; 
    color:black; 
    text-align:center; 
    margin: 20px 0;
}
h2 {
    font-size: 45px;
    font-weight: bold;
    padding-top: 40px;
}

h5 {
    font-size: 25px;
    font-weight: bold;
    line-height: 3;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 70px; 

}

/*----------------------------------------------------------------------------------------------------- */
/*                                          Header Section                                              */
/*----------------------------------------------------------------------------------------------------- */
header {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;

}

.logo {
    margin-right: 40px;
    font-size: 12px;
    color: black;
    font-weight: bold;
    padding-left: 20px;
}

header ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

header ul li {
    display: flex;  
    align-items: center;
    justify-content: center;
    padding: 10px 15px; 
    min-width: 120px; 
    transition: background-color 0.3s ease;
}

header ul li:hover {
    background-color: rgb(204, 200, 200); 
}

header ul li a {
    text-decoration: none;
    color: rgb(58, 55, 55);
    font-size: 20px;
    font-weight: bold;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/*----------------------------------------------------------------------------------------------------- */
/*                                          Body Section                                                */
/*----------------------------------------------------------------------------------------------------- */

body {
    padding-top: 70px;        
}

/* -------------- Login -------------- */

.Login {
    text-align: center;   
    display: flex;     
    flex-direction: column;   
    justify-content: center; 
    align-items: center;   
    height: 500px;         
    background-image: url('../images/AI.jpg');
    background-size: cover;  /* Make the background image cover the entire container */
    background-position: center; /* Center the image in the container */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    font-size: 50px;
    color: white;
    font-weight: bold;
}

.Login button {
    background: linear-gradient(90deg, #2aabb8, #77e5ff); /* Gradient from teal to light blue */
    color: white; /* White text */
    font-size: 28px;
    font-weight: bold;
    padding: 24px 100px; /* Adjust size */
    border: none;
    border-radius: 50px; /* Fully rounded shape */
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5); /* Soft glow effect */
    transition: all 0.3s ease-in-out;
    margin: 40px auto 0;
}

/* Hover Effect */
.Login button:hover {
    background: linear-gradient(90deg, #1e8a98, #5fd3f3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7); /* Glow effect intensifies */
}

.Login a {
    font-size: 25px;
    color: white;
    font-weight: bold;
    text-decoration: none; /* Remove the underline from the link */
}

/* -------------- Project -------------- */

.Project {
    margin: 40px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.Project-content {
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: center;
    width: 80%;
    max-width: 2000px;
    gap: 80px; 
}

.Project-image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Project-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.Project-text {
    width: 50%;
    text-align: left;
}

.Project-text h3 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin: 20px 0px;
}

.Project-text p {
    font-size: 22px;
    line-height: 1.6;
}


/* -------------- Team (Dr. Chang) -------------- */

.Team {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    background-color: #e2f2fa;
    background-size: cover;
    padding: 40px 0;
    width: 100%;
    margin: 0 auto;
}

.Team-Maiga-container {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding-bottom: 80px;
}

.Team-Maiga-Card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: white; 
    border-radius: 15px; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
    max-width: 1300px;
    width: 100%;
}

.Team-Maiga-Image img {
    border-radius: 50%;
    width: 450px;
    height: 450px;
    object-fit: cover;
}

.Team-Maiga-Content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
}

.Team-Maiga-Content h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 5px;
}

.Team-Maiga-Content h4 {
    font-size: 24px;
    font-weight: normal;
    color: #555;
    margin-bottom: 15px;
}

.Team-Maiga-Content p {
    font-size: 22px;
    line-height: 1.5;
    color: #333;
}

/* -------------- Team (Everyone Else) -------------- */

.Team-Container {
    width: 80%;
    max-width: 1400px; 
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; 
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    gap: 80px; 
    padding: 40px 0;
}

.Team-Card {
    width: 40%; 
    height: 770px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fcfcfc;
    padding: 20px;
    border-radius: 20px; 
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); 
}

.Team-Image {
    display: flex;
    justify-content: center; 
    align-items: center; 
    background-color: #f3eed3; 
    padding: 40px; 
    margin-bottom:20px;
    border-radius: 10px; 
    width: 100%; 
    box-sizing: border-box; 
}

.Team-Image img {
    border-radius: 50%; 
    width: 350px; 
    height: 350px; 
    object-fit: cover;
    object-position: center 20%;
}

.Team-Card h3,
.Team-Card h4,
.Team-Card p {
    margin: 10px 0;
    text-align: center;
    max-width: 100%;
}

.Team-Content h3 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 5px;
}

.Team-Content h4 {
    font-size: 24px;
    font-weight: normal;
    color: #555;
    margin-bottom: 15px;
}

.Team-Content p {
    font-size: 22px;
    line-height: 1.5;
    color: #333;
}



/* -------------- Visuals -------------- */

.Visuals {
    display:flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0;
    align-items:center;
    justify-items: center;
    padding-top: 40px;
    height: 750px;
}

/* -------------- FAQ -------------- */

.FAQs {
    display:flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0;
    align-items:center;
    justify-items: center;
    padding-top: 40px;
    background-color: #f2f4ff;
}

.FAQ-Container {

    width: 80%;
    align-items: left;
    justify-items: vertical;

}

.FAQs p {
    font-size: 20px;
    font-weight: normal;
    padding-bottom: 20px;
}

.FAQ-Container hr {
    width: 100%;
    height:0.5px;
    color:rgb(77, 76, 76);
}

/*----------------------------------------------------------------------------------------------------- */
/*                                          Footer Section                                              */
/*----------------------------------------------------------------------------------------------------- */

footer {
    display:flex;
    flex-direction:column;
    background-color:black;
    font-size:20px;
    color:white;
    align-items: center;
    justify-content: center;;
    margin: 0 auto;
    padding:0;
    height: 50px;
    width:100%;
}
