/* style/about.css */

/* Custom Colors */
:root {
    --manclub-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --manclub-card-bg: #11271B;
    --manclub-background: #08160F;
    --manclub-text-main: #F2FFF6;
    --manclub-text-secondary: #A7D9B8;
    --manclub-border: #2E7A4E;
    --manclub-glow: #57E38D;
    --manclub-gold: #F2C14E;
    --manclub-divider: #1E3A2A;
    --manclub-deep-green: #0A4B2C;
}

.page-about {
    color: var(--manclub-text-main); /* Dark background, so light text */
    background-color: var(--manclub-background);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-about__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* body already handles --header-offset */
    background-color: var(--manclub-background);
    overflow: hidden;
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-about__hero-content {
    text-align: center;
    max-width: 900px;
    margin-top: 40px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-about__main-title {
    font-size: clamp(2.5em, 5vw, 3.2em);
    font-weight: 700;
    color: var(--manclub-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.page-about__intro-text {
    font-size: 1.1em;
    color: var(--manclub-text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__btn-primary,
.page-about__btn-secondary,
.page-about__btn-link {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%; /* Ensure button adapts to mobile */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-about__btn-primary {
    background: var(--manclub-button-gradient);
    color: var(--manclub-text-main);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-about__btn-secondary {
    background: transparent;
    color: var(--manclub-text-main);
    border: 2px solid var(--manclub-border);
    margin-top: 20px;
}

.page-about__btn-secondary:hover {
    background: var(--manclub-deep-green);
    color: var(--manclub-text-main);
    transform: translateY(-2px);
}

.page-about__btn-link {
    background: transparent;
    color: var(--manclub-glow);
    border: 1px solid var(--manclub-glow);
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
    margin-top: 15px;
}

.page-about__btn-link:hover {
    background: var(--manclub-glow);
    color: var(--manclub-background);
}

.page-about__section {
    padding: 80px 0;
    background-color: var(--manclub-background);
}

.page-about__section--vision {
    background-color: var(--manclub-deep-green);
}

.page-about__section--why-choose {
    background-color: var(--manclub-background);
}

.page-about__section--products {
    background-color: var(--manclub-deep-green);
}

.page-about__section--commitment {
    background-color: var(--manclub-background);
}

.page-about__section--future {
    background-color: var(--manclub-deep-green);
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-about__section-title {
    font-size: clamp(2em, 4vw, 2.8em);
    color: var(--manclub-gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-about__section-description {
    font-size: 1.1em;
    color: var(--manclub-text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.page-about__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.page-about__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
}

.page-about__text-block {
    color: var(--manclub-text-main);
}

.page-about__text-block p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-about__text-block a {
    text-decoration: none;
}

.page-about__image-block {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-about__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

.page-about__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-about__product-card {
    background-color: var(--manclub-card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-about__product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-about__product-title {
    font-size: 1.5em;
    color: var(--manclub-gold);
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-about__product-title a {
    color: inherit;
    text-decoration: none;
}

.page-about__product-title a:hover {
    text-decoration: underline;
}

.page-about__product-description {
    color: var(--manclub-text-secondary);
    font-size: 0.95em;
    margin-bottom: 20px;
    padding: 0 15px;
    flex-grow: 1;
}

.page-about__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-about__faq-item {
    background-color: var(--manclub-card-bg);
    border: 1px solid var(--manclub-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--manclub-text-main);
    background-color: var(--manclub-deep-green);
}

.page-about__faq-qtext {
    flex-grow: 1;
}

.page-about__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--manclub-gold);
}

.page-about__faq-item[open] .page-about__faq-question {
    border-bottom: 1px solid var(--manclub-border);
}

.page-about__faq-answer {
    padding: 20px;
    font-size: 1em;
    color: var(--manclub-text-secondary);
}

.page-about__faq-answer p {
    margin-bottom: 10px;
}

.page-about__faq-answer a {
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__content-grid {
        grid-template-columns: 1fr;
    }
    .page-about__content-grid--reverse {
        grid-template-columns: 1fr;
    }
    .page-about__image-block {
        order: -1; /* Image appears above text on smaller screens */
    }
    .page-about__section-title {
        font-size: 2.2em;
    }
    .page-about__main-title {
        font-size: 2.8em;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }
    .page-about__main-title {
        font-size: 2.3em !important;
    }
    .page-about__intro-text {
        font-size: 1em;
    }
    .page-about__section {
        padding: 60px 0;
    }
    .page-about__section-title {
        font-size: 1.8em !important;
    }
    .page-about__section-description {
        font-size: 0.95em;
        margin-bottom: 40px;
    }
    .page-about__btn-primary,
    .page-about__btn-secondary,
    .page-about__btn-link {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-about__hero-content .page-about__btn-primary,
    .page-about__hero-content .page-about__btn-secondary {
        margin-bottom: 10px;
    }
    .page-about__hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-about__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-about img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-about__hero-image-wrapper,
    .page-about__image-block,
    .page-about__product-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-about__product-grid {
        grid-template-columns: 1fr;
    }
    .page-about__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-about__faq-answer {
        font-size: 0.95em;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-about__main-title {
        font-size: 1.8em !important;
    }
    .page-about__section-title {
        font-size: 1.5em !important;
    }
    .page-about__intro-text,
    .page-about__text-block p,
    .page-about__section-description {
        font-size: 0.9em;
    }
    .page-about__product-title {
        font-size: 1.3em;
    }
}