/* CPS Hero Section Styles */

.cps-hero-section {
    margin: 0 !important;
    padding: 0 !important;
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.cps-hero-content {
    box-sizing: border-box;
}

.cps-hero-header-1 {
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
    font-family: refrigerator-deluxe, Impact, Charcoal, sans-serif;
}

.cps-hero-header-2 {
    margin: 0 0 5px 0;
    line-height: 1.3;
    font-weight: 600;
    font-family: refrigerator-deluxe, Impact, Charcoal, sans-serif;
}

.cps-hero-subheader {
    margin: 0 0 20px 0;
    line-height: 1.5;
    font-size: 1.25em;
    font-family: refrigerator-deluxe, Impact, Charcoal, sans-serif;
}

.cps-hero-copy {
    margin: 0 0 30px 0;
    line-height: 1.6;
    max-width: 50%;
    font-family: DIN, sans-serif;
}

.cps-text-center .cps-hero-copy {
    margin-left: auto;
    margin-right: auto;
}

.cps-text-left .cps-hero-copy {
    margin-right: auto;
}

.cps-text-right .cps-hero-copy {
    margin-left: auto;
}

/* Responsive: full width on mobile */
@media (max-width: 768px) {
    .cps-hero-copy {
        max-width: 100%;
    }
}

.cps-hero-copy p {
    margin: 0 0 15px 0;
}

.cps-hero-copy p:last-child {
    margin-bottom: 0;
}

.cps-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cps-text-center .cps-hero-buttons {
    justify-content: center;
}

.cps-text-left .cps-hero-buttons {
    justify-content: flex-start;
}

.cps-text-right .cps-hero-buttons {
    justify-content: flex-end;
}

.cps-hero-button {
    display: inline-block;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    line-height: 1.5;
    text-align: center;
}

.cps-hero-button-primary {
    background-color: var(--primary-btn-bg, #0066cc);
    color: var(--primary-btn-text, #ffffff) !important;
    border: 2px solid var(--primary-btn-bg, #0066cc);
}

.cps-hero-button-primary:hover {
    background-color: var(--primary-btn-hover, #0052a3);
    border-color: var(--primary-btn-hover, #0052a3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cps-hero-button-secondary {
    background-color: transparent;
    color: var(--secondary-btn-text, #ffffff) !important;
    border: 2px solid var(--secondary-btn-border, #ffffff);
}

.cps-hero-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cps-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cps-hero-button {
        width: 100%;
    }
}
