/* Main HTML CSS */

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Cocogoose';
    src: url('resources/cocogoose/Cocogoose-Pro-Bold-trial.ttf');
}

@font-face {
    font-family: 'Hero';
    src: url('resources/hero/Hero\ New\ Medium.otf');
}

body {
    margin: 0;
    font-family: sans-serif;
    background: linear-gradient(180deg, #004d40, #00695c);
    color: white;
}

#nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    background-image: linear-gradient(to right, #036C69, #92B188);
    padding: 15px 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav-link {
    color: white;
    font-family: 'Cocogoose';
    text-decoration: none;
    margin: 0 10px;
    font-size: 1rem;
    font-weight: bold;
}

.nav-link:hover {
    text-decoration: underline;
    color: white;
}

#searchbar {
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    width: 250px;
    font-size: 14px;
    font-family: 'Hero';
}

#top-logo {
    height: 50px;
}

#home-banner {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

#about-us {
    display: flex;
    justify-content: space-between;
    margin: 40px 20px;
    gap: 20px;
}

#about-title {
    font-family: 'Cocogoose';
}

#about-info {
    font-family: 'Hero';
}

#about-box {
    flex: 2;
    padding: 20px;
    background: linear-gradient(to right, #036C69, #92B188);
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

#about-box h1 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 15px;
}

#vision-box, #mission-box {
    flex: 1;
    padding: 20px;
    background: linear-gradient(to right, #036C69, #92B188);
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

#vision-title {
    font-family: 'Cocogoose';
}

#mission-title{
    font-family: 'Cocogoose';
}

#vision-box h2, #mission-box h2 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 15px;
}

#vision-info {
    font-family: 'Hero';
}

#mission-info {
    font-family: 'Hero';
}

#data {
    text-align: center;
    margin: 40px 20px;
    font-family: 'Hero';
}

#data-title {
    padding: 15px;
    background: linear-gradient(to right, #036C69, #92B188);
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 20px;
    font-family: 'Cocogoose';
}

#data-title h1 {
    font-size: 28px;
}

#data1, #data2, #data3 {
    display: inline-block;
    margin: 10px 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

#data1 h1, #data2 h1, #data3 h1 {
    font-size: 24px;
    margin: 10px 0;
}

#data1 h2, #data2 h2, #data3 h2 {
    font-size: 14px;
}

#story-title {
    text-align: center;
    margin: 30px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Cocogoose';
}

#story-text {
    background: linear-gradient(180deg, #92B188, #B8C9A1, #D9DEB7);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1300px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.1rem;
    line-height: 1.5;
    font-family: 'Hero';
}

#team {
    text-align: center;
    margin: 40px 20px;
    padding-top: 20px;
}

#team-title {
    margin-bottom: 20px;
}

#team-title h1 {
    font-size: 28px;
}

#our-team-title {
    font-family: 'Cocogoose';
    font-size: x-small;
    padding: 10px;
}

/* General styling for #member-bio */
#member-bio {
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow wrapping of elements */
    justify-content: center; /* Center the items */
    gap: 20px; /* Add space between items */
    padding: 20px; /* Padding for better spacing */
    overflow: visible; /* Ensure content isn't cut off */
    font-family: 'Hero';
    font-size: small;
}

/* Ensure the overall page can expand */
html, body {
    height: auto; /* Remove any height restrictions */
    margin: 0;
    padding: 0;
    overflow-y: auto; /* Allow scrolling for additional content */
}

/* Member image styling */
.member-img {
    width: 150px; /* Set consistent image size */
    height: 150px;
    object-fit: cover; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional: Add rounded corners */
}

/* Text alignment for member details */
h3, h4 {
    text-align: center; /* Center the names and roles */
    margin: 5px 0; /* Add small margins for spacing */
}


h3 {
    font-size: 16px;
    margin: 10px 0 5px;
}

h4 {
    font-size: 14px;
    color: #ccc;
}

#footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    font-family: 'Hero';
}


#bottom-logo {
    height: 40px;
}

/* Bio Committee */

* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #004d40, #00695c, #92B188);
    color: #F0F0D8;
}

#bio-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 15px 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 10;
    background-image: linear-gradient(to right, #92B188, #B8C9A1, #D9DEB7);
}

.nav-link {
    color: #3A6B5F;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1rem;
    font-weight: bold;
}

.nav-link:hover {
    text-decoration: underline;
}

#searchbar {
    padding: 5px;
    border: 1px solid #3A6B5F;
    border-radius: 5px;
    width: 200px;
}

#top-logo {
    height: 40px;
}

#bio-banner {
    width: 100%;
    height: auto;
}

#bio-com-title {
    text-align: center;
    margin: 30px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-family: 'cocogoose';
}

#bio-com-intro {
        background: linear-gradient(180deg, #92B188, #B8C9A1, #D9DEB7);
        padding: 20px;
        border-radius: 10px;
        margin: 20px auto;
        max-width: 1300px; /* To control the width */
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border for better visibility */
        color: white; /* Ensure the text remains readable */
        font-size: 1.1rem; /* Slightly increase text size for better readability */
        line-height: 1.5; /* Better line spacing */
        font-family: 'Hero';
}

#bio-activity {
    background-color: #2D5A4F;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    width: 90%;
    max-width: 1000px;
    text-align: center;
    font-family: 'cocogoose';
}

#act-title {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
}

.bio-act-btn {
    display: block;
    background-color: transparent;
    color: #FFFFFF;
    text-decoration: none;
    margin: 10px 0;
    padding: 10px;
    border: 2px solid #FFFFFF;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    font-family: 'Hero';
}

.bio-act-btn:hover {
    background-color: #FFFFFF;
    color: #3A6B5F;
}

#bio-resource {
    text-align: center;
    margin: 20px auto;
    width: 90%;
    max-width: 800px;
}

#bio-res-title {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
    font-family: 'cocogoose';
}

.bio-res-btn {
    display: inline-block;
    width: 140px;
    height: 140px;
    margin: 10px;
    background: linear-gradient(180deg, #92B188, #B8C9A1, #D9DEB7);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    line-height: 140px;
    transition: all 0.3s ease-in-out;
    font-family: 'Hero';
}

.bio-res-btn:hover {
    background: white;
    color: #3A6B5F;
}

#footer {
    background-color: #2D5A4F;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

#bottom-logo {
    height: 40px;
}

/* Chemistry Committee */

#chem-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 15px 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 10;
    background-image: linear-gradient(to right, #FF9751, #FFC693);
}

#chem-banner {
    width: 100%;
    height: auto;
}

#chem-com-title {
    text-align: center;
    margin: 30px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-family: 'cocogoose';
}

#chem-com-intro {
    background: linear-gradient(180deg, #FF9751, #FFC693);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1300px; 
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.1rem; 
    line-height: 1.5;
    font-family: 'Hero';
} 

#chem-title {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
}

#chem-activity {
    background-color: #2D5A4F;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    width: 90%;
    max-width: 1000px;
    text-align: center;
    font-family: 'cocogoose';
}


.chem-act-btn {
    display: block;
    background-color: transparent;
    color: #FFFFFF;
    text-decoration: none;
    margin: 10px 0;
    padding: 10px;
    border: 2px solid #FFFFFF;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    font-family: 'Hero';
}

.chem-act-btn:hover {
    background-color: #FFFFFF;
    color: #3A6B5F;
}

#chem-resource {
    text-align: center;
    margin: 20px auto;
    width: 90%;
    max-width: 800px;
}

#chem-res-title {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
    font-family: 'cocogoose';
}

.chem-res-btn {
    display: inline-block;
    width: 140px;
    height: 140px;
    margin: 10px;
    background: linear-gradient(180deg, #FF9751, #FFC693);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    line-height: 140px;
    transition: all 0.3s ease-in-out;
    font-family: 'Hero';
}

.chem-res-btn:hover {
    background: white;
    color: #3A6B5F;
}

#footer {
    background-color: #2D5A4F;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

#bottom-logo {
    height: 40px;
}

/* Physics Committee */

#phy-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 15px 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 10;
    background-image: linear-gradient(to right, #007AA6, #04A1B9);
}

#phy-banner {
    width: 100%;
    height: auto;
}

#phy-com-title {
    text-align: center;
    margin: 30px;
    color: #F0F0D8;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-family: 'cocogoose';
}

#phy-com-intro {
    background: linear-gradient(180deg,#007AA6, #04A1B9);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1300px; 
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.1rem; 
    line-height: 1.5;
    font-family: 'Hero';
}

#phy-activity {
    background-color: #2D5A4F;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    width: 90%;
    max-width: 1000px;
    text-align: center;
    font-family: 'cocogoose';
}

#phy-title {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
}

.phy-act-btn {
    display: block;
    background-color: transparent;
    color: #FFFFFF;
    text-decoration: none;
    margin: 10px 0;
    padding: 10px;
    border: 2px solid #FFFFFF;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    font-family: 'Hero';
}

.phy-act-btn:hover {
    background-color: #FFFFFF;
    color: #3A6B5F;
}

#phy-resource {
    text-align: center;
    margin: 20px auto;
    width: 90%;
    max-width: 800px;
}

#phy-res-title {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
    font-family: 'cocogoose';
}

.phy-res-btn {
    display: inline-block;
    width: 140px;
    height: 140px;
    margin: 10px;
    background: linear-gradient(180deg, #007AA6, #04A1B9);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    line-height: 140px;
    transition: all 0.3s ease-in-out;
    font-family: 'Hero';
}

.phy-res-btn:hover {
    background: white;
    color: #3A6B5F;
}

#footer {
    background-color: #2D5A4F;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

#bottom-logo {
    height: 40px;
}

/* Math Committee */

#math-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 15px 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 10;
    background-image: linear-gradient(to right, #FF5C71, #FF5C71);
}

#math-banner {
    width: 100%;
    height: auto;
}

#math-com-title {
    text-align: center;
    margin: 20px 0;
    color: #F0F0D8;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-family: 'cocogoose';
}

#math-com-intro {
    background: linear-gradient(180deg,#FF5C71, #FF5C71);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1300px; 
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.1rem; 
    line-height: 1.5;
    font-family: 'Hero';
}

#math-activity {
    background-color: #2D5A4F;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    font-family: 'cocogoose';
}

#math-title {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
}

.math-act-btn {
    display: block;
    background-color: transparent;
    color: #FFFFFF;
    text-decoration: none;
    margin: 10px 0;
    padding: 10px;
    border: 2px solid #FFFFFF;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    font-family: 'Hero';
}

.math-act-btn:hover {
    background-color: #FFFFFF;
    color: #3A6B5F;
}

#math-resource {
    text-align: center;
    margin: 20px auto;
    width: 90%;
    max-width: 800px;
}

#math-res-title {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
    font-family: 'cocogoose';
}

.math-res-btn {
    display: inline-block;
    width: 140px;
    height: 140px;
    margin: 10px;
    background: linear-gradient(180deg, #FF5C71, #FF5C71);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    line-height: 140px;
    transition: all 0.3s ease-in-out;
    font-family: 'Hero';
}

.math-res-btn:hover {
    background: white;
    color: #3A6B5F;
}

#footer {
    background-color: #2D5A4F;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

#bottom-logo {
    height: 80px; 
    width: auto;
}

#copyright {
    font-size: smaller;
}



/* Contact Us */

* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #004d40, #00695c);
    color: white;
}

#nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    background-image: linear-gradient(to right, #036C69, #92B188);
    padding: 15px 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav-link {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1rem;
    font-weight: bold;
}

.nav-link:hover {
    text-decoration: underline;
    color: white;
}

#searchbar {
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    width: 250px;
    font-size: 14px;
}

#top-logo {
    height: 50px;
}

#contacts-banner {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

#contact-info, #rec-act {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid white;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1); /* Transparent background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 -4px 8px rgba(255, 255, 255, 0.1);
    margin: 20px auto;
    width: 80%;
}

#contact-title, #act-title {
    font-size: 1.8em;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    font-family: 'Cocogoose';
}

.contact-list, .act-list {
    display: block;
    width: 90%;
    max-width: 400px;
    margin: 10px 0;
    padding: 10px;
    text-align: center;
    font-size: 1em;
    font-weight: bold;
    color: white;
    text-decoration: none;
    border: 1px solid white;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    font-family: 'Hero';
}

.contact-list:hover, .act-list:hover {
    background:white;
    color: #3A6B5F;
    border-color: white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

#rec-act .act-list {
    text-align: left;
    padding-left: 15px;
}

