/* About Page Styles */

/* About Banner */
.about-banner {
    background-image: url('../images/WebP/banner_bg_about.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Section Divider */
.section-divider {
    height: 1px;
    background-color: #d0d0d0;
    margin: 0 auto;
}

/* Members Section */
.members-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: var(--white);
}

.members-title {
    font-size: 42px;
    font-family: 'Roboto Slab', serif;
    font-weight: bold;
    color: var(--color-1);
    text-align: center;
    margin: 0 0 50px 0;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 0 auto;
}

.member-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    max-width: 280px;
    height: 280px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 0;
}

.member-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.member-name {
    font-size: 24px;
    font-family: 'Roboto Slab', serif;
    font-weight: bold;
    color: var(--color-1);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.member-role {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    color: var(--gray);
    margin: 0;
    line-height: 1.4;
}

/* Responsive Styles for Members Section */

/* Tablet styles (768px to 1100px) */
@media (min-width: 768px) and (max-width: 1100px) {
    .members-section {
        padding: 50px 0;
    }
    
    .members-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .members-grid {
        gap: 35px;
    }
    
    .member-image {
        max-width: 240px;
        height: 240px;
        margin-bottom: 18px;
    }
    
    .member-name {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .member-role {
        font-size: 16px;
    }
}

/* Mobile and small tablet styles (up to 768px) */
@media (max-width: 768px) {
    .members-section {
        padding: 40px 0;
    }
    
    .members-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .member-image {
        max-width: 200px;
        height: 200px;
        margin-bottom: 15px;
    }
    
    .member-name {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .member-role {
        font-size: 14px;
    }
}

/* Small mobile styles (up to 576px) */
@media (max-width: 576px) {
    .members-section {
        padding: 30px 0;
    }
    
    .members-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .member-image {
        max-width: 180px;
        height: 180px;
        margin-bottom: 12px;
    }
    
    .member-name {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .member-role {
        font-size: 13px;
    }
}


/* About Our Mission Section */
.about-mission {
    padding: 60px 0;
    background-image: url('../images/WebP/section_divider_dotted_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mission-title {
    font-size: 42px;
    font-family: 'Roboto Slab', serif;
    font-weight: bold;
    color: var(--color-1);
    text-align: center;
    margin: 0 0 40px 0;
}

.mission-content {
    margin: 0 auto;
}

.mission-text {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    color: var(--gray);
    line-height: 1.8;
    margin: 0 0 25px 0;
    text-align: left;
}

.mission-text strong {
    color: var(--color-1);
    font-weight: bold;
}

.mission-register {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    color: var(--gray);
    line-height: 1.8;
    margin: 30px 0 0 0;
    text-align: left;
}

.mission-register a {
    color: var(--color-4);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mission-register a:hover {
    color: var(--color-5);
    text-decoration: underline;
}

/* Responsive Styles for About Mission Section */

/* Tablet styles (768px to 1100px) */
@media (min-width: 768px) and (max-width: 1100px) {
    .about-mission {
        padding: 50px 0;
    }
    
    .mission-title {
        font-size: 36px;
        margin-bottom: 35px;
    }
    
    .mission-text,
    .mission-register {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

/* Mobile and small tablet styles (up to 768px) */
@media (max-width: 768px) {
    .about-mission {
        padding: 40px 0;
    }
    
    .mission-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .mission-text,
    .mission-register {
        font-size: 16px;
        margin-bottom: 18px;
        text-align: left;
    }
    
    .mission-register {
        margin-top: 25px;
    }
}

/* Small mobile styles (up to 576px) */
@media (max-width: 576px) {
    .about-mission {
        padding: 30px 0;
    }
    
    .mission-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .mission-text,
    .mission-register {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .mission-register {
        margin-top: 20px;
    }
    
    .mission-register a {
        word-break: break-all;
    }
}


/* Make a Difference Section */
.make-difference-section {
    padding: 80px 0;
    background-color: var(--color-1);
    text-align: center;
}

.make-difference-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
}

.make-difference-title {
    font-size: 42px;
    color: var(--color-2);
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    margin: 0;
    line-height: 1.2;
}

.make-difference-description {
    font-size: 20px;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

.make-difference-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-difference-primary {
    background-color: #BED5EF;
    color: var(--color-1);
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    font-weight: normal;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    min-width: 160px;
}

.btn-difference-primary:hover {
    background-color: #a8c5df;
    color: var(--color-1);
    text-decoration: none;
}

.btn-difference-secondary {
    background-color: var(--color-5);
    color: var(--white);
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    font-weight: normal;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    min-width: 160px;
}

.btn-difference-secondary:hover {
    background-color: #a0467e;
    color: var(--white);
    text-decoration: none;
}

/* Responsive Styles for Make a Difference Section */

/* Tablet styles (768px to 1100px) */
@media (min-width: 768px) and (max-width: 1100px) {
    .make-difference-section {
        padding: 60px 0;
    }
    
    .make-difference-content {
        gap: 25px;
        max-width: 700px;
    }
    
    .make-difference-title {
        font-size: 36px;
    }
    
    .make-difference-description {
        font-size: 18px;
    }
    
    .make-difference-buttons {
        gap: 15px;
    }
    
    .btn-difference-primary,
    .btn-difference-secondary {
        font-size: 18px;
        padding: 10px 20px;
        min-width: 140px;
    }
}

/* Mobile and small tablet styles (up to 768px) */
@media (max-width: 768px) {
    .make-difference-section {
        padding: 50px 0;
    }
    
    .make-difference-content {
        gap: 20px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .make-difference-title {
        font-size: 28px;
    }
    
    .make-difference-description {
        font-size: 16px;
    }
    
    .make-difference-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
    }
    
    .btn-difference-primary,
    .btn-difference-secondary {
        font-size: 16px;
        padding: 12px 24px;
        width: 100%;
        min-width: auto;
    }
}

/* Small mobile styles (up to 576px) */
@media (max-width: 576px) {
    .make-difference-section {
        padding: 40px 0;
    }
    
    .make-difference-content {
        gap: 18px;
        padding: 0 15px;
    }
    
    .make-difference-title {
        font-size: 24px;
    }
    
    .make-difference-description {
        font-size: 14px;
    }
    
    .make-difference-buttons {
        gap: 12px;
        max-width: 280px;
    }
    
    .btn-difference-primary,
    .btn-difference-secondary {
        font-size: 14px;
        padding: 10px 20px;
    }
}
