/* style/user-community-beginner-forum.css */
.page-user-community-beginner-forum {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e5dfd3; /* Light text on dark background for general content */
    background-color: #1A202C;
}

.page-user-community-beginner-forum__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-user-community-beginner-forum__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a4a6b 100%); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-user-community-beginner-forum__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,subtle_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-user-community-beginner-forum__hero-section > * {
    position: relative;
    z-index: 1;
}

.page-user-community-beginner-forum__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-user-community-beginner-forum__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e5dfd3;
}

.page-user-community-beginner-forum__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-user-community-beginner-forum__button--primary {
    background-color: #FFD700;
    color: #1A202C; /* Dark text on gold button */
}

.page-user-community-beginner-forum__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-user-community-beginner-forum__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-user-community-beginner-forum__button--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-user-community-beginner-forum__section {
    padding: 60px 0;
    text-align: center;
}

.page-user-community-beginner-forum__section--intro {
    background-color: #222a3b;
    color: #e5dfd3;
}

.page-user-community-beginner-forum__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #FFD700;
    font-weight: bold;
}

.page-user-community-beginner-forum__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e5dfd3;
}

.page-user-community-beginner-forum__text strong {
    color: #FFD700;
}

.page-user-community-beginner-forum__text a {
    color: #FFD700;
    text-decoration: underline;
}

.page-user-community-beginner-forum__text a:hover {
    color: #e6c200;
}

.page-user-community-beginner-forum__content-image {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-user-community-beginner-forum__section--topics {
    background-color: #1A202C;
    color: #e5dfd3;
}

.page-user-community-beginner-forum__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-user-community-beginner-forum__grid-item {
    background-color: #222a3b;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-user-community-beginner-forum__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-user-community-beginner-forum__item-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-user-community-beginner-forum__grid-item .page-user-community-beginner-forum__text {
    font-size: 1em;
    color: #e5dfd3;
    margin-bottom: 20px;
    max-width: none;
}

.page-user-community-beginner-forum__link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-user-community-beginner-forum__link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-user-community-beginner-forum__section--tips {
    background-color: #222a3b;
    color: #e5dfd3;
    text-align: left;
}

.page-user-community-beginner-forum__list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0;
    max-width: 900px;
}

.page-user-community-beginner-forum__list li {
    background-color: #1A202C;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    font-size: 1.1em;
    color: #e5dfd3;
}

.page-user-community-beginner-forum__list li strong {
    color: #FFD700;
}

.page-user-community-beginner-forum__list li a {
    color: #FFD700;
    text-decoration: underline;
}

.page-user-community-beginner-forum__list li a:hover {
    color: #e6c200;
}

.page-user-community-beginner-forum__section--cta {
    background-color: #1A202C;
    color: #e5dfd3;
    padding-bottom: 80px;
}

.page-user-community-beginner-forum__button-group {
    margin-top: 30px;
}

.page-user-community-beginner-forum__section--contact {
    background-color: #222a3b;
    color: #e5dfd3;
    padding-bottom: 80px;
}

.page-user-community-beginner-forum__hero-image-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-user-community-beginner-forum__hero-image {
    width: 80%; /* Adjust as needed */
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-user-community-beginner-forum__title {
        font-size: 2.5em;
    }

    .page-user-community-beginner-forum__subtitle {
        font-size: 1.2em;
    }

    .page-user-community-beginner-forum__section-title {
        font-size: 2em;
    }

    .page-user-community-beginner-forum__grid {
        grid-template-columns: 1fr;
    }

    .page-user-community-beginner-forum__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-user-community-beginner-forum__hero-image {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .page-user-community-beginner-forum__title {
        font-size: 2em;
    }

    .page-user-community-beginner-forum__subtitle {
        font-size: 1em;
    }

    .page-user-community-beginner-forum__button {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }

    .page-user-community-beginner-forum__section {
        padding: 40px 0;
    }

    .page-user-community-beginner-forum__grid-item {
        padding: 20px;
    }

    .page-user-community-beginner-forum__item-title {
        font-size: 1.5em;
    }
}