/**
 * Hero Component Styles
 * 
 * Contains all styles related to hero/banner sections
 * Button styles have been moved to buttons.css
 */

.hero-section {
    position: relative;
    background-color: var(--lubinik-hero-primary-bg-color);
    color: var(--lubinik-hero-primary-text-color);
    padding: 0;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero-section.has-overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--lubinik-hero-overlay-bg-color);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--lubinik-spacing-md);
}

.hero-title {
    font-size: var(--lubinik-font-size-xxl);
    margin-bottom: var(--lubinik-spacing-md);
    color: var(--lubinik-hero-primary-heading-color);
}

.hero-description {
    font-size: var(--lubinik-font-size-lg);
    margin-bottom: var(--lubinik-spacing-lg);
    color: var(--lubinik-hero-primary-text-color);
}

/* Hero button styles moved to buttons.css */
/* Note: Responsive hero styles have been moved to mobile.css */
