/* style/support.css */

/* Base styles for the support page */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light body background */
    background-color: #f8f9fa; /* A subtle light background for the page content area */
}

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

/* Hero Section */
.page-support__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    box-sizing: border-box;
}

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-support__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-support__hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 800px;
    padding: 20px;
}

.page-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Auxiliary color for prominence */
    line-height: 1.2;
}

.page-support__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.page-support__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Auxiliary color for CTA */
    color: #1A202C; /* Main color for text on auxiliary background */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-support__hero-button:hover {
    background-color: #e0b800;
    transform: translateY(-2px);
}

/* Channels Section */
.page-support__channels-section {
    padding: 80px 0;
    background-color: #1A202C; /* Main brand color for dark background */
    color: #ffffff; /* Light text for dark background */
    text-align: center;
}

.page-support__channels-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-support__channels-intro {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-support__channel-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-support__channel-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-support__channel-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-support__channel-description {
    font-size: 1em;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-support__channel-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-support__channel-button:hover {
    background-color: #e0b800;
}

.page-support__channels-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    margin: 40px auto 0;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-support__faq-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light background */
    color: #333333; /* Dark text */
    text-align: center;
}

.page-support__faq-main-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #1A202C; /* Main brand color for title */
}

.page-support__faq-intro {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.page-support__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
    background-color: #f0f0f0;
}

.page-support__faq-item-title {
    font-size: 1.25em;
    color: #1A202C;
    margin: 0;
    flex-grow: 1;
}

.page-support__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #FFD700;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-toggle {
    transform: rotate(45deg);
    color: #DC143C; /* Red for active state */
}

.page-support__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #fdfdfd;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 1000px !important; /* Ensure it expands sufficiently */
    padding: 15px 25px 25px;
}

.page-support__faq-answer p {
    margin-bottom: 10px;
    color: #555555;
    font-size: 1em;
}

.page-support__faq-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    margin: 40px auto 0;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Resources Section */
.page-support__resources-section {
    padding: 80px 0;
    background-color: #1A202C; /* Main brand color for dark background */
    color: #ffffff; /* Light text */
    text-align: center;
}

.page-support__resources-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-support__resources-intro {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-support__resource-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-support__resource-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-support__resource-card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-support__resource-card-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__resource-card-title a:hover {
    color: #e0b800;
    text-decoration: underline;
}

.page-support__resource-card-description {
    font-size: 1em;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-support__resource-card-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-support__resource-card-button:hover {
    background-color: #e0b800;
}

/* Security Policy Section */
.page-support__security-policy-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light background */
    color: #333333; /* Dark text */
    text-align: center;
}

.page-support__security-policy-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #1A202C;
}

.page-support__security-policy-intro {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__security-policy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    font-size: 1em;
    color: #555555;
}

.page-support__security-policy-content p {
    margin-bottom: 15px;
}

.page-support__security-policy-content a {
    color: #FFD700; /* Use auxiliary color for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-support__security-policy-content a:hover {
    color: #e0b800;
    text-decoration: underline;
}

.page-support__security-image {
    width: 100%;
    height: auto;
    max-width: 1000px;
    margin: 40px auto 0;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.page-support__cta-section {
    padding: 80px 0;
    background-color: #1A202C; /* Main brand color for dark background */
    color: #ffffff; /* Light text */
    text-align: center;
}

.page-support__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-support__cta-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-support__cta-button:hover {
    background-color: #e0b800;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 2.8em;
    }
    .page-support__channels-title,
    .page-support__faq-main-title,
    .page-support__resources-title,
    .page-support__security-policy-title,
    .page-support__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-support__container {
        padding: 0 15px !important; /* Ensure padding on mobile */
    }

    .page-support__hero-section {
        height: 500px; /* Adjust height for mobile */
        padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
    }

    .page-support__hero-title {
        font-size: 2.2em;
    }

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

    .page-support__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-support__channels-section,
    .page-support__faq-section,
    .page-support__resources-section,
    .page-support__security-policy-section,
    .page-support__cta-section {
        padding: 50px 0;
    }

    .page-support__channels-title,
    .page-support__faq-main-title,
    .page-support__resources-title,
    .page-support__security-policy-title,
    .page-support__cta-title {
        font-size: 1.8em;
    }

    .page-support__channels-grid,
    .page-support__resources-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
    }

    .page-support__faq-question {
        padding: 15px 20px;
    }

    .page-support__faq-item-title {
        font-size: 1.1em;
    }

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

    .page-support__faq-item.active .page-support__faq-answer {
        padding: 10px 20px 20px;
    }

    /* Images responsiveness */
    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    /* Video responsiveness (if any, though not explicitly in HTML for this page) */
    .page-support video,
    .page-support__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .page-support__video-section,
    .page-support__video-container,
    .page-support__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Button responsiveness */
    .page-support__hero-button,
    .page-support__channel-button,
    .page-support__resource-card-button,
    .page-support__cta-button,
    .page-support a[class*="button"],
    .page-support a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        text-align: center; /* Center text in full-width buttons */
    }

    .page-support__channels-grid .page-support__channel-card,
    .page-support__resources-grid .page-support__resource-card {
        text-align: center; /* Center content in cards on mobile */
    }
    .page-support__channel-card .page-support__channel-button,
    .page-support__resource-card .page-support__resource-card-button {
        margin: 0 auto; /* Center buttons in cards */
    }

    .page-support__cta-buttons,
    .page-support__button-group,
    .page-support__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
}

/* No CSS filters for images */
.page-support img {
    filter: none; /* Ensure no filters are applied */
}