/* style/resources-st666-beginner-guide.css */

:root {
    --primary-color: #0A1931;
    --secondary-color: #FFD700;
    --text-dark: #333333;
    --text-light: #ffffff;
    --border-color: #e0e0e0;
    --background-light: #f9f9f9;
}

.page-resources-st666-beginner-guide {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff; /* Default body background is white */
}

/* --- Hero Section --- */
.page-resources-st666-beginner-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 60%, #1a2a47 100%); /* Adjusted gradient for better brand color use */
    color: var(--text-light);
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-resources-st666-beginner-guide__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-resources-st666-beginner-guide__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-st666-beginner-guide__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.page-resources-st666-beginner-guide__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-resources-st666-beginner-guide__main-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--secondary-color); /* Gold title for contrast */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-st666-beginner-guide__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}