/*
 * Home Page Styles
 * Using BEM methodology and CSS Variables.
 */

/* General Container for Home Blocks */
.home-block-container {
    width: min(100% - 32px, var(--theme-container));
    margin-inline: auto;
}

/* ==========================================================================
   Hero Block
   ========================================================================== */
.home-hero {
    background-color: var(--theme-background-alt);
    padding: 60px 0;
    text-align: center;
}

.home-hero__title {
    color: var(--theme-text);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.home-hero__description {
    color: var(--theme-text-muted);
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.home-hero__actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.home-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--theme-radius-sm);
    background-color: var(--theme-btn-bg);
    color: var(--theme-btn-text) !important;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.home-hero__button:hover {
    background-color: var(--theme-btn-hover-bg);
    color: var(--theme-btn-hover-text) !important;
}

.home-hero__button--secondary {
    background-color: transparent;
    color: var(--theme-btn-bg) !important;
    border: 2px solid var(--theme-btn-bg);
}

.home-hero__button--secondary:hover {
    background-color: var(--theme-btn-bg);
    color: var(--theme-btn-text) !important;
}

/* Add other block styles here following the same pattern */
