/* About & Recruitment Sections Styles */

/* =========================================
   About Section
   ========================================= */
.about-section {
    background-color: var(--bg-top, #FFFFFF);
    padding: 80px 0;
}

.about-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-main, #333333);
    text-align: center;
    margin-bottom: 40px;
}

.about-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Left Column: Image */
.about-image-col {
    flex: 1;
}

.about-gym-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* Aspect ratio handling */
    aspect-ratio: 4 / 3;
    display: block;
}

/* Right Column: Text */
.about-text-col {
    flex: 1;
    color: var(--text-main, #333333);
    text-align: left;
}

.about-intro {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.about-list li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.about-closing {
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 10px;
}

/* =========================================
   Recruitment CTA Section
   ========================================= */
.recruitment-cta-section {
    background-color: #CDCDCD;
    /* Light Gray fallback */
    background-color: var(--bg-bottom, #CDCDCD);
    padding: 80px 0;
    border-top: 1px solid #555;
    /* Solid divider line */
}

.recruitment-catchphrase {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main, #333333);
    line-height: 1.5;
    margin-bottom: 30px;
}

.recruitment-sub-copy {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-main, #333333);
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-recruitment {
    display: inline-block;
    background-color: #5025D1;
    /* Vivid Blue-Violet */
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 20px 0;
    /* Vertical padding */
    width: 320px;
    /* Suggestion: 300px - 350px width */
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.btn-recruitment:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: #FFFFFF;
}

/* =========================================
   Responsive Breakpoints
   ========================================= */
@media (max-width: 768px) {

    /* About Section */
    .about-section {
        padding: 60px 0;
    }

    .about-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .about-image-col {
        width: 100%;
    }

    .about-text-col {
        width: 100%;
        padding: 0 15px;
        /* Side padding for mobile text */
    }

    .about-gym-img {
        width: 100%;
    }

    /* Recruitment Section */
    .recruitment-cta-section {
        padding: 60px 0;
    }

    .recruitment-catchphrase {
        font-size: 1.4rem;
        /* Adjust for mobile */
        padding: 0 15px;
    }

    .recruitment-sub-copy {
        font-size: 1rem;
        padding: 0 15px;
    }

    .btn-recruitment {
        width: 80%;
        /* Fluid width on mobile */
        max-width: 300px;
    }
}