/* style/faq.css */

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

.page-faq {
    color: var(--hitclub-text-main); /* Dark body background (#08160F) -> Light text */
    background-color: var(--hitclub-bg);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.page-faq__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    overflow: hidden;
    box-sizing: border-box;
}

.page-faq__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.page-faq__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4); /* Darken image for text readability */
}

.page-faq__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
    color: var(--hitclub-text-main);
}

.page-faq__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
    color: var(--hitclub-gold); /* Using gold for main title for emphasis */
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-faq__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--hitclub-text-secondary);
}

/* Content Area */
.page-faq__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
    background-color: var(--hitclub-bg);
}

.page-faq__section-title {
    color: var(--hitclub-gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    font-size: 2.5em;
}

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

.page-faq__faq-category-title {
    color: var(--hitclub-secondary);
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--hitclub-divider);
    padding-bottom: 10px;
}

.page-faq__faq-item {
    background-color: var(--hitclub-card-bg);
    border: 1px solid var(--hitclub-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-faq__faq-item[open] {
    background-color: var(--hitclub-deep-green);
    border-color: var(--hitclub-primary);
}

.page-faq__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    color: var(--hitclub-text-main);
    font-weight: bold;
    font-size: 1.15em;
    list-style: none; /* Remove default marker */
}

.page-faq__faq-question::-webkit-details-marker {
    display: none;
}

.page-faq__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--hitclub-gold);
}

.page-faq__faq-item[open] .page-faq__faq-toggle {
    transform: rotate(45deg);
    color: var(--hitclub-primary);
}

.page-faq__faq-answer {
    padding: 0 25px 20px;
    color: var(--hitclub-text-secondary);
    font-size: 1em;
}

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

.page-faq__faq-answer p:last-child {
    margin-bottom: 0;
}

.page-faq__inline-link {
    color: var(--hitclub-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-faq__inline-link:hover {
    color: var(--hitclub-gold);
}

/* CTA Section */
.page-faq__cta-section {
    background-color: var(--hitclub-deep-green);
    padding: 80px 20px;
    text-align: center;
    margin-top: 60px;
    box-sizing: border-box;
}

.page-faq__cta-title {
    color: var(--hitclub-gold);
    font-size: 2.2em;
    margin-bottom: 20px;
}

.page-faq__cta-description {
    color: var(--hitclub-text-secondary);
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Buttons */
.page-faq__btn-primary,
.page-faq__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    text-align: center;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

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

.page-faq__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Reverse gradient on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 20px var(--hitclub-glow);
    transform: translateY(-2px);
}

.page-faq__btn-secondary {
    background-color: transparent;
    color: var(--hitclub-primary);
    border: 2px solid var(--hitclub-primary);
}

.page-faq__btn-secondary:hover {
    background-color: var(--hitclub-primary);
    color: var(--hitclub-text-main);
    border-color: var(--hitclub-primary);
}

/* Image Styling */
.page-faq img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-faq__main-title {
        font-size: 2.8em;
    }

    .page-faq__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-faq__hero-section {
        padding: 10px 15px 40px;
    }

    .page-faq__hero-content {
        padding: 20px 0;
    }

    .page-faq__main-title {
        font-size: 2.2em; /* Smaller font size for mobile H1 */
        line-height: 1.3;
    }

    .page-faq__intro-text {
        font-size: 1em;
    }

    .page-faq__content-area {
        padding: 40px 15px;
    }

    .page-faq__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-faq__faq-category-title {
        font-size: 1.5em;
    }

    .page-faq__faq-question {
        padding: 15px 20px;
        font-size: 1.05em;
    }

    .page-faq__faq-answer {
        padding: 0 20px 15px;
    }

    .page-faq__cta-section {
        padding: 60px 15px;
    }

    .page-faq__cta-title {
        font-size: 1.8em;
    }

    .page-faq__cta-description {
        font-size: 1em;
    }

    /* Mobile specific image, video, button responsiveness */
    .page-faq img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-faq__hero-image-wrapper,
    .page-faq__content-area,
    .page-faq__faq-list,
    .page-faq__faq-item,
    .page-faq__cta-section,
    .page-faq__btn-primary,
    .page-faq__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-faq__hero-image-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .page-faq__btn-primary,
    .page-faq__btn-secondary {
        display: block !important;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15px;
    }

    .page-faq__hero-content .page-faq__btn-primary {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .page-faq__main-title {
        font-size: 1.8em;
    }

    .page-faq__section-title {
        font-size: 1.5em;
    }

    .page-faq__faq-question {
        font-size: 1em;
    }

    .page-faq__faq-category-title {
        font-size: 1.3em;
    }
}