@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f9be00;
}

.header {
    position: relative;
    height: 100vh;
    background: #f9be00;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #50210e;
}

.header img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: contain;
    border: 8px solid #e13e00;
    background: #678ca7;
}

.header-title {
    font-weight: bold;
    text-transform: uppercase;
    padding: 0px 20px;
}

.header-title .large {
    font-size: 3rem;
    font-weight: 700;
}

.header-title .small {
    font-size: 1.7rem;
    font-weight: 300;
}

.arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #e13e00;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 20px 60px 20px;
    flex-wrap: wrap;
    min-height: 50vh;
    background-color: #fff5bc;
}

.section-short {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 20px 60px 20px;
    flex-wrap: wrap;
    min-height: 25vh;
    background-color: #2c3e50;
}

.section-short .section-title {
    color: #ffffff;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 50px;
    color: #50210e;
}

.section-description-long {
    color: #ffffff;
    margin: auto;
    align-content: end;
    max-width: 660px;
    font-size: 1.3rem;
}

.section-description {
    color: #50210e;
    margin: auto;
    height: 80px;
    align-content: end;
}

#mentorship .section-description{
    color: inherit !important;
}

.section-description p {
    margin: 20px;
    max-width: 500px;
}

.section-description-students {
    font-size: 3rem;
}

.section .section-description-long {
    font-size: 1.2rem;
}

.section:nth-child(even) {
    background-color: #50210e;
}

.section:nth-child(even) .section-title {
    color: #fff5bc;
}

.section:nth-child(even) .section-description {
    color: #fff5bc;
}

.section:nth-child(even) .section-description-long {
    color: #fff5bc;
}

.section:nth-child(odd) .section-description-long {
    color: #50210e;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 90vw;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 90vw;
}

.grid-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.grid-item img {
    max-width: 96px;
    max-height: 96px;
    border-radius: 50%;
}

.grid-item .grid-title {
    margin: 10px auto;
    height: 64px;
    font-size: 1.2rem;
}

.grid-item p {
    max-width: 90%;
    font-size: 1rem;
    margin: 10px 0;
}

.grid-item p em {
    color: #e13e00;
}

.grid-item .links {
    display: flex;
    gap: 10px;
}

.grid-item .links a {
    text-decoration: none;
    background: #e13e00;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    align-content: center;
}

.grid-description-center {
    height: 100%;
    align-content: center;
}

.links {
    display: flex;
    gap: 10px;
}

.links a {
    text-decoration: none;
    background: #e13e00;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    align-content: center;
}

.link-active {
    transition: opacity 0.2s ease;
}

.link-active a:hover {
    opacity: 0.9;
}

.section > .links {
    margin-top: 3rem;
}

.footer {
    padding: 20px;
    text-align: center;
    background: #2c3e50;
    color: white;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header {
        height: 95vh;
    }

    .grid-item p {
        padding: 20px 0;
    }

    .header-title .large {
        font-size: 2rem;
    }

    .arrow {
        font-size: 4rem;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .section-description-students {
        font-size: 2rem;
    }

    .footer span {
        display: block;
        margin: 10px auto;
    }

    .hidden-mobile {
        display: none !important;
    }
} 