/*
Copyright © Wild Rose Devs. & Alberta Lynx 2025. All rights reserved.

This software and its source code are proprietary and confidential.
Unauthorized copying, distribution, modification, or use in whole or in part
is strictly prohibited and may result in civil and/or criminal penalties.

No license or rights are granted by implication or otherwise under any
intellectual property rights.

For licensing inquiries, contact: https://wildrosedevs.ca
*/

/* HERO SECTION */
.hero-s {
    position: relative;
    width: 100%;
    height: 45vh;
    background: url("../images/hero/about-hero.avif") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-s .hero-title {
    position: static;
    margin: 0;
    padding: 0;
    font-size: clamp(2rem, 5vw, 5rem);
    line-height: 1.2;
    color: #f5f5f5;
    text-shadow: none;
}

.about-container h2,
.achievements-text h2,
.vision-text h2 {
    font-size: 44px;
    margin-bottom: 30px;
    font-weight: bold;
    border-bottom: 2px solid rgba(255, 255, 255, 0.818);
    color: #fff;
    display: inline-block;
    font-family: 'League Spartan', sans-serif;
}

/* ABOUT SECTION */
.about-gerry {
    background: url("../images/backgrounds/image0.avif") center/cover no-repeat;
    padding: 2rem;
    font-family: 'Poppins', sans-serif;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    color: whitesmoke;
}

.about-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: normal;
}

/* ACHIEVEMENTS SECTION */
.gerry-achievements {
    background: url("../images/backgrounds/image1.avif") center/cover no-repeat;
    padding: 2rem;
    font-family: 'Poppins', sans-serif;

}

.achievements-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: stretch;
}

.achievements-text {
    flex: 2;
    min-width: 300px;
    color: whitesmoke;
}

.achievements-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.achievements-image {
    flex: 1.2;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.achievements-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid whitesmoke;
    border-radius: 8px;
}

/* Responsive layout */
@media screen and (max-width: 768px) {
    .achievements-container {
        flex-direction: column;
    }

    .achievements-image {
        justify-content: flex-start;
    }

    .achievements-img {
        height: auto;
    }
}

/* VISION SECTION */
.gerry-vision {
    background: url("../images/backgrounds/image0.avif") center/cover no-repeat;
    padding: 2rem;
    font-family: 'Poppins', sans-serif;

}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: stretch;
}

.vision-image {
    flex: 1.2;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.vision-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid whitesmoke;
    border-radius: 8px;
}

.vision-text {
    flex: 2;
    min-width: 300px;
    color: whitesmoke;
}

.vision-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .vision-container {
        flex-direction: column;
    }

    .vision-image {
        justify-content: flex-start;
    }

    .vision-img {
        height: auto;
    }
}