/* style/blog-rongvang68-2024-promotions-guide.css */

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

/* Base Styles for the page */
.page-blog-rongvang68-2024-promotions-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--background-color);
}

.page-blog-rongvang68-2024-promotions-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-rongvang68-2024-promotions-guide__section {
    padding: 60px 0;
    background-color: var(--background-color);
    border-bottom: 1px solid var(--divider);
}

.page-blog-rongvang68-2024-promotions-guide__section:last-of-type {
    border-bottom: none;
}

/* Hero Section */
.page-blog-rongvang68-2024-promotions-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 60px 0; /* body already has padding-top for header */
    background-color: var(--deep-green); /* Darker background for hero */
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-blog-rongvang68-2024-promotions-guide__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for aesthetic */
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.page-blog-rongvang68-2024-promotions-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0.8; /* Slightly dim image for text readability */
}

.page-blog-rongvang68-2024-promotions-guide__hero-content {
    position: relative; /* Relative to hero section, not absolute over image */
    z-index: 2;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -150px; /* Pull content up over the image, but not overlapping text */
    background: linear-gradient(0deg, var(--background-color) 50%, rgba(8, 22, 15, 0.7) 100%);
    border-radius: 10px;
}

.page-blog-rongvang68-2024-promotions-guide__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem); /* H1 font size with clamp */
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-rongvang68-2024-promotions-guide__hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.page-blog-rongvang68-2024-promotions-guide__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}