/* Hero - Tailwind Block Styles */
/* This version uses Tailwind CSS extensively with minimal custom CSS */
/* Most layout, spacing, colors use Tailwind utilities in the component files */

/* Only custom CSS needed for features that can't be done with Tailwind utilities */

/* Import Carousel Styles - complete carousel functionality */
@import url('./carousel.css');

/* Import Split Variant Styles  */
@import url('./split-style.css');

/* Button theme integration - uses CSS custom properties for WordPress theme integration */
.hero-button {
    display: inline-block;
    padding: var(--hero-button-padding, 15px 35px);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: var(--hero-button-border-width, 2px) solid transparent;
    text-align: center;
}

.hero-button-primary {
    background: var(--hero-button-primary-bg, #2271b1);
    color: var(--hero-button-primary-color, #ffffff);
    border-color: var(--hero-button-primary-border, #2271b1);
    font-family: var(--hero-button-primary-font-family, inherit);
    font-weight: var(--hero-button-primary-font-weight, 600);
}

.hero-button-primary:hover {
    background: var(--hero-button-primary-bg-hover, #135e96);
    color: var(--hero-button-primary-color-hover, #ffffff);
    border-color: var(--hero-button-primary-border-hover, #135e96);
}

.hero-button-secondary {
    background: var(--hero-button-secondary-bg, rgba(255, 255, 255, 0.2));
    color: var(--hero-button-secondary-color, #ffffff);
    border-color: var(--hero-button-secondary-border, rgba(255, 255, 255, 0.5));
    font-family: var(--hero-button-secondary-font-family, inherit);
    font-weight: var(--hero-button-secondary-font-weight, 600);
}

.hero-button-secondary:hover {
    background: var(--hero-button-secondary-bg-hover, rgba(255, 255, 255, 0.3));
    color: var(--hero-button-secondary-color-hover, #ffffff);
    border-color: var(--hero-button-secondary-border-hover, rgba(255, 255, 255, 0.8));
}

.hero-button-outline {
    background: var(--hero-button-outline-bg, transparent);
    color: var(--hero-button-outline-color, #ffffff);
    border-color: var(--hero-button-outline-border, #ffffff);
    font-family: var(--hero-button-outline-font-family, inherit);
    font-weight: var(--hero-button-outline-font-weight, 600);
}

.hero-button-outline:hover {
    background: var(--hero-button-outline-bg-hover, rgba(255, 255, 255, 0.1));
    color: var(--hero-button-outline-color-hover, #ffffff);
    border-color: var(--hero-button-outline-border-hover, #ffffff);
}

/* Socius Form integration fixes - WordPress plugin specific */
.hero-socius-form input.form-pr-5 { padding-right: 0 !important; }
.hero-socius-form input.form-pl-5 { padding-right: 0 !important; }
.hero-socius-form label { display: none; }

/* Theme Integration - CSS Custom Properties */
:root {
    --color--primary: #243352;
    --color--white: white;
    --color--black: black;
}

.button,
.hero-socius-form button {
    cursor: pointer;
    border: 2px solid var(--color--primary);
    background-color: var(--color--primary);
    color: var(--color--white);
    text-align: center;
    letter-spacing: .025rem;
    border-radius: .25rem;
    padding: .625rem 1.25rem;
    font-weight: 600;
    line-height: 1.3rem;
    transition: all .2s;
}

.button:hover,
.hero-socius-form button:hover {
    background-color: transparent;
    color: var(--color--black);
    transform: translate(0, -2px);
}

/* Note: Compare this file (~90 lines) with the original hero/style.css (~570 lines) */
/* The reduction is achieved by using Tailwind utilities in components for: */
/* - Layout (flex, grid, positioning) */
/* - Spacing (padding, margin) */
/* - Typography (text sizes, weights) */
/* - Colors and backgrounds */
/* - Responsive design (breakpoints) */
/* - Borders and shadows */
