/* style/help-center.css */

/* General Styles for Help Center Page */
.page-help-center {
    font-family: Arial, sans-serif;
    color: #E0E0E0; /* Light gray for text on dark background */
    background-color: #0A0A0A; /* Main dark background */
}

.page-help-center-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-help-center-hero {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #FFD700;
}

.page-help-center-hero-content {
    z-index: 1;
    max-width: 800px;
}

.page-help-center-hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-help-center-hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    color: #B0B0B0;
    margin-bottom: 30px;
}

.page-help-center-hero-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0A0A0A;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-help-center-hero-btn:hover {
    background-color: #E0B000;
    transform: translateY(-3px);
}

.page-help-center-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
    filter: grayscale(100%);
}

.page-help-center-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Topics Section */
.page-help-center-topics {
    padding: 60px 0;
    background-color: #1A1A1A;
}

.page-help-center-section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-help-center-section-description {
    font-size: 1.1em;
    color: #B0B0B0;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-help-center-topic-item {
    background-color: #0A0A0A;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px; /* Ensure consistent height */
}

.page-help-center-topic-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-color: #FFD700;
}

.page-help-center-topic-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-help-center-topic-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-help-center-topic-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-help-center-topic-title a:hover {
    color: #E0B000;
}

.page-help-center-topic-desc {
    font-size: 1em;
    color: #B0B0B0;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-help-center-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0A0A0A;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto; /* Push button to bottom */
}

.page-help-center-btn:hover {
    background-color: #E0B000;
    transform: translateY(-2px);
}

/* Call to Action Section */
.page-help-center-cta {
    padding: 80px 0;
    background-color: #0A0A0A;
    border-top: 2px solid #FFD700;
}

.page-help-center-cta .page-help-center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.page-help-center-cta-content {
    max-width: 700px;
}

.page-help-center-cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-help-center-cta-description {
    font-size: 1.1em;
    color: #B0B0B0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-help-center-cta-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0A0A0A;
    padding: 18px 35px;
    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-help-center-cta-btn:hover {
    background-color: #E0B000;
    transform: translateY(-3px);
}

.page-help-center-cta-image {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
}

.page-help-center-cta-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-help-center-hero {
        flex-direction: row;
        text-align: left;
        justify-content: space-around;
        padding: 100px 40px;
    }

    .page-help-center-hero-content {
        text-align: left;
    }

    .page-help-center-hero-image {
        position: relative;
        width: 40%;
        height: auto;
        opacity: 1;
        filter: none;
        z-index: 1;
    }

    .page-help-center-hero-img {
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-help-center-cta .page-help-center-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .page-help-center-cta-content {
        flex: 1;
    }

    .page-help-center-cta-image {
        flex: 1;
        margin-top: 0;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .page-help-center-hero-title {
        font-size: 2.5em;
    }

    .page-help-center-section-title {
        font-size: 2em;
    }

    .page-help-center-cta-title {
        font-size: 2.2em;
    }

    .page-help-center-topic-item {
        padding: 20px;
    }
}