/* style/blog.css */

/* Variables for consistency with shared.css and brand colors */
:root {
    --okbet-primary: #F2C14E;
    --okbet-secondary: #FFD36B;
    --okbet-card-bg: #111111;
    --okbet-background: #0A0A0A;
    --okbet-text-main: #FFF6D6;
    --okbet-border: #3A2A12;
    --okbet-glow: #FFD36B;
    --okbet-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);

    /* Inherit header offset from shared.css */
    --header-offset: 122px; /* Default value, actual value comes from shared.css */
}

.page-blog {
    background-color: var(--okbet-background);
    color: var(--okbet-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-blog__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    text-align: center;
    padding: 60px 0;
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
}

.page-blog__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
}

.page-blog__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-blog__hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Using clamp for H1 font size */
    font-weight: 700;
    color: var(--okbet-text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-blog__hero-description {
    font-size: 1.1em;
    color: var(--okbet-text-main);
    margin-bottom: 30px;
}

/* Section Titles */
.page-blog__section-title {
    font-size: 2.5em;
    color: var(--okbet-text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.page-blog__section-intro,
.page-blog__section-description {
    font-size: 1.1em;
    color: var(--okbet-text-main);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

/* Buttons */
.page-blog__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.page-blog__btn-primary,
.page-blog__btn-secondary,
.page-blog__read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%; /* Ensure responsiveness */
}

.page-blog__btn-primary {
    background: var(--okbet-button-gradient);
    color: #ffffff; /* White text on dark/gradient button */
    border: none;
    box-shadow: 0 5px 15px rgba(255, 211, 107, 0.3);
}

.page-blog__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 211, 107, 0.4);
}