/* style/blog-website-updates.css */

/* Variables */
:root {
    --page-blog-website-updates-primary-color: #0A1931;
    --page-blog-website-updates-accent-color: #FFD700;
    --page-blog-website-updates-text-light: #F8F8F8;
    --page-blog-website-updates-text-dark: #222222;
    --page-blog-website-updates-bg-dark: #0A1931;
    --page-blog-website-updates-bg-light: #f5e6ce; /* Adjusted for contrast with dark text */
    --page-blog-website-updates-button-hover: #e0b800;
}

.page-blog-website-updates {
    font-family: 'Arial', sans-serif;
    color: var(--page-blog-website-updates-text-light);
    background-color: var(--page-blog-website-updates-bg-dark);
}

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

/* Hero Section */
.page-blog-website-updates__hero {
    background: linear-gradient(135deg, var(--page-blog-website-updates-primary-color) 0%, #1a3a66 100%); /* Darker gradient for better contrast */
    padding: 100px 0;
    text-align: center;
    color: var(--page-blog-website-updates-text-light);
}

.page-blog-website-updates__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-blog-website-updates-accent-color);
    line-height: 1.2;
}

.page-blog-website-updates__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-blog-website-updates-text-light);
}

.page-blog-website-updates__hero-button {
    display: inline-block;
    background-color: var(--page-blog-website-updates-accent-color);
    color: var(--page-blog-website-updates-primary-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog-website-updates__hero-button:hover {
    background-color: var(--page-blog-website-updates-button-hover);
    transform: translateY(-3px);
}

/* General Section Styling */
.page-blog-website-updates__section {
    padding: 80px 0;
    background-color: var(--page-blog-website-updates-bg-dark);
    color: var(--page-blog-website-updates-text-light);
}

.page-blog-website-updates__section:nth-of-type(even) {
    background-color: #0F203D; /* Slightly lighter dark background for contrast */
}

.page-blog-website-updates__section-title {
    font-size: 2.8em;
    color: var(--page-blog-website-updates-accent-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.page-blog-website-updates__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-blog-website-updates-accent-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

.page-blog-website-updates__section-description {
    font-size: 1.2em;
    text-align: center;
    max-width: 800px;
    margin: -40px auto 60px auto;
    color: var(--page-blog-website-updates-text-light);
}

.page-blog-website-updates__sub-title {
    font-size: 2em;
    color: var(--page-blog-website-updates-accent-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-blog-website-updates__content-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-blog-website-updates__content-row--reverse {
    flex-direction: row-reverse;
}

.page-blog-website-updates__text-content {
    flex: 1;
}

.page-blog-website-updates__text-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--page-blog-website-updates-text-light);
}

.page-blog-website-updates__image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-blog-website-updates__image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Promotions Grid */
.page-blog-website-updates__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-website-updates__promo-card {
    background-color: #1a2c4a; /* Slightly lighter dark background for cards */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-website-updates__promo-card:hover {
    transform: translateY(-10px);
    background-color: #2a3d5c;
}

.page-blog-website-updates__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.page-blog-website-updates__promo-title {
    font-size: 1.8em;
    color: var(--page-blog-website-updates-accent-color);
    margin-bottom: 15px;
}

.page-blog-website-updates__promo-text {
    font-size: 1em;
    line-height: 1.7;
    color: var(--page-blog-website-updates-text-light);
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-blog-website-updates__promo-button,
.page-blog-website-updates__support-button {
    display: inline-block;
    background-color: var(--page-blog-website-updates-accent-color);
    color: var(--page-blog-website-updates-primary-color);
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.page-blog-website-updates__promo-button:hover,
.page-blog-website-updates__support-button:hover {
    background-color: var(--page-blog-website-updates-button-hover);
}

/* Call to Action (CTA) Section */
.page-blog-website-updates__cta {
    background-color: var(--page-blog-website-updates-accent-color);
    color: var(--page-blog-website-updates-primary-color);
    padding: 80px 0;
    text-align: center;
}

.page-blog-website-updates__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--page-blog-website-updates-primary-color);
}

.page-blog-website-updates__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-blog-website-updates-primary-color);
}

.page-blog-website-updates__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-blog-website-updates__cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.page-blog-website-updates__cta-button--primary {
    background-color: var(--page-blog-website-updates-primary-color);
    color: var(--page-blog-website-updates-accent-color);
}

.page-blog-website-updates__cta-button--primary:hover {
    background-color: #1a3a66;
    transform: translateY(-3px);
}

.page-blog-website-updates__cta-button--secondary {
    background-color: #fff;
    color: var(--page-blog-website-updates-primary-color);
    border: 2px solid var(--page-blog-website-updates-primary-color);
}

.page-blog-website-updates__cta-button--secondary:hover {
    background-color: var(--page-blog-website-updates-primary-color);
    color: var(--page-blog-website-updates-accent-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-blog-website-updates__hero-title {
        font-size: 2.8em;
    }

    .page-blog-website-updates__hero-subtitle {
        font-size: 1.3em;
    }

    .page-blog-website-updates__section-title {
        font-size: 2.2em;
    }

    .page-blog-website-updates__sub-title {
        font-size: 1.7em;
    }

    .page-blog-website-updates__content-row {
        flex-direction: column;
        text-align: center;
    }

    .page-blog-website-updates__content-row--reverse {
        flex-direction: column-reverse;
    }

    .page-blog-website-updates__image-wrapper {
        margin-bottom: 30px;
    }

    .page-blog-website-updates__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-blog-website-updates__hero {
        padding: 80px 0;
    }

    .page-blog-website-updates__hero-title {
        font-size: 2.2em;
    }

    .page-blog-website-updates__hero-subtitle {
        font-size: 1.1em;
    }

    .page-blog-website-updates__section {
        padding: 60px 0;
    }

    .page-blog-website-updates__section-title {
        font-size: 1.8em;
    }

    .page-blog-website-updates__sub-title {
        font-size: 1.5em;
    }

    .page-blog-website-updates__text-content p {
        font-size: 1em;
    }

    .page-blog-website-updates__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-blog-website-updates__cta-title {
        font-size: 2em;
    }

    .page-blog-website-updates__cta-description {
        font-size: 1.1em;
    }

    .page-blog-website-updates__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-blog-website-updates__cta-button {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-blog-website-updates__hero-title {
        font-size: 1.8em;
    }

    .page-blog-website-updates__hero-subtitle {
        font-size: 0.9em;
    }

    .page-blog-website-updates__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-blog-website-updates__section-title {
        font-size: 1.6em;
    }

    .page-blog-website-updates__sub-title {
        font-size: 1.3em;
    }

    .page-blog-website-updates__cta-title {
        font-size: 1.8em;
    }

    .page-blog-website-updates__cta-description {
        font-size: 1em;
    }

    .page-blog-website-updates__cta-button {
        width: 90%;
    }
}