.elementor-widget-container .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-container .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-2341 .elementor-element.elementor-element-40d1e39{--display:flex;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}@media(min-width:768px){.elementor-2341 .elementor-element.elementor-element-40d1e39{--content-width:100%;}}/* Start custom CSS *//* ==========================================================================
   CSS Variables & Design System (Conversion Focused Light Theme)
   ========================================================================== */
:root {
    --color-bg-base: #ffffff;
    --color-bg-surface: #ffffff;
    --color-bg-surface-light: #f4f4f5;
    --color-primary-red: #d92121;
    --color-primary-dark: #a61212;
    --color-text-main: #18181b;
    --color-text-muted: #52525b;
    --color-border: #e4e4e7;

    --gradient-red: linear-gradient(135deg, #ff3b3b 0%, #d92121 100%);
    --font-sans: 'Inter', -apple-system, sans-serif;
    --font-display: 'Oswald', var(--font-sans);

    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --space-8: 4rem;
    --space-12: 6rem;

    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(217, 33, 33, 0.3);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: var(--space-3);
    font-weight: 700;
}

p {
    margin-bottom: var(--space-4);
    color: var(--color-text-muted);
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-red {
    color: var(--color-primary-red);
}

.py-section {
    padding: var(--space-8) 0;
}

.mt-2 {
    margin-top: var(--space-2);
}

.w-100 {
    width: 100%;
}

.text-gradient {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0px 8px 16px rgba(217, 33, 33, 0.3));
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: var(--space-4) 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 75px;
}

.header-event-info {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff !important;
}

/* Conversion Hero Section */
.conversion-hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: var(--space-8);
    background-color: #ffffff;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
        url('https://americanstrength.com/wp-content/uploads/2026/03/hfa_event_bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.conversion-hero .hero-title {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.conversion-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.92);
}

.conversion-hero .hero-badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.9fr;
    /* wider left pushes form further right */
    gap: var(--space-8);
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background-color: rgba(217, 33, 33, 0.1);
    color: var(--color-primary-red);
    border: 1px solid rgba(217, 33, 33, 0.2);
    border-radius: 50px;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: var(--space-4);
    color: var(--color-text-main);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 550px;
}

/* Booth Image Styling */
.booth-render-container {
    margin-top: var(--space-6);
    position: relative;
    /* No border or shadow, so the white background of the booth image integrates seamlessly */
}

.booth-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
    /* Helps blend pure white backgrounds */
    transition: transform 0.3s ease;
}

.booth-render-container:hover .booth-img {
    transform: scale(1.02);
}

.booth-caption {
    background: rgba(255, 255, 255, 0.85);
    padding: var(--space-2) var(--space-3);
    margin: 0;
    font-size: 0.85rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    color: var(--color-text-muted);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Form Section (Top Right) */
.glass-panel-dark {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(217, 33, 33, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 1);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(217, 33, 33, 0.15), 0 0 0 1px rgba(217, 33, 33, 0.05);
}

.form-container {
    padding: var(--space-5) var(--space-4);
}

.form-header .form-title-new {
    font-size: 1.5rem;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.form-header .form-desc-new {
    font-size: 0.85rem;
    margin-bottom: var(--space-4);
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    background: rgba(0, 0, 0, 0.03);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary-red);
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    margin-top: 2px;
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-muted);
    margin: 0 4px;
    display: flex;
    align-items: flex-start;
    padding-bottom: 15px;
}

.custom-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.form-row {
    display: flex;
    gap: var(--space-3);
}

.half-width {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-text-main);
}

input,
select {
    background: #ffffff;
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all 0.2s;
    width: 100%;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary-red);
    box-shadow: 0 0 0 3px rgba(217, 33, 33, 0.1);
}

select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2352525b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    cursor: pointer;
}

select option {
    background-color: var(--color-bg-surface-light);
    color: var(--color-text-main);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-out;
}

.btn-primary {
    background: var(--color-primary-red);
    color: white;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(217, 33, 33, 0.3);
}

.btn-submit {
    margin-top: 0.5rem;
}

.form-disclaimer {
    font-size: 0.65rem;
    color: #666;
    margin-top: var(--space-4);
    line-height: 1.4;
}

.typeform-embed {
    width: 100%;
    min-height: 540px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.form-success-state {
    text-align: center;
    padding: var(--space-6) 0;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: var(--space-4);
}

.form-success-state h3 {
    margin-bottom: var(--space-2);
    color: var(--color-text-main);
}

/* Below the fold sections */
.booth-preview-section {
    background-color: #ffffff;
}

.highlights-section {
    background-color: #ffffff;
    color: var(--color-text-main);
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: var(--space-2);
    color: var(--color-text-main);
}

.title-underline {
    height: 3px;
    width: 60px;
    background: var(--color-primary-red);
    margin: 0 auto;
    border-radius: 2px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.glass-panel {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.glass-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 33, 33, 0.3);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2rem;
    color: var(--color-primary-red);
    margin-bottom: var(--space-3);
}

.feature-title {
    font-size: 1.25rem;
    color: var(--color-text-main);
}

.feature-desc {
    color: var(--color-text-muted);
}

/* Footer */
.site-footer {
    background: #ffffff;
    padding: var(--space-6) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--color-text-muted);
}

/* Event Content Section */
.event-section {
    background-color: #ffffff;
}

.event-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    align-items: start;
}

.event-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.event-list {
    list-style: none;
    display: inline-grid;
    gap: var(--space-2);
    margin: var(--space-3) 0;
    color: var(--color-text-main);
    text-align: left;
}

.event-list i {
    margin-right: 0.5rem;
}

.event-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    height: 45px;
    width: 45px;
    opacity: 0.8;
    margin-bottom: var(--space-2);
}

/* Responsive */
@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
        gap: var(--space-2);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto;
    }

    .hero-form-wrapper {
        max-width: 560px;
        margin: 0 auto;
    }

    .booth-render-container {
        max-width: 600px;
        margin: var(--space-6) auto 0;
    }

    .conversion-hero {
        padding-top: 120px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .event-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: var(--space-3) 0;
    }

    .logo img {
        height: 58px;
    }

    .header-event-info span {
        font-size: 0.95rem;
        color: #ffffff !important;
    }

    .conversion-hero {
        padding-top: 140px;
        padding-bottom: var(--space-6);
        min-height: auto;
    }

    .hero-grid {
        gap: var(--space-5);
    }

    .countdown-container {
        flex-wrap: wrap;
        row-gap: var(--space-2);
    }

    .typeform-embed {
        min-height: 520px;
        height: clamp(520px, 70vh, 640px);
    }

    .footer-container {
        flex-direction: column;
        gap: var(--space-3);
        text-align: center;
    }

    .text-right {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-3);
    }

    .logo img {
        height: 52px;
    }

    .header-event-info {
        font-size: 0.85rem;
        text-align: center;
        width: 100%;
    }

    .hero-title {
        font-size: clamp(2.2rem, 11vw, 3.1rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .countdown-number {
        font-size: 1.4rem;
    }

    .countdown-separator {
        display: none;
    }

    .booth-img {
        max-height: 320px;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .typeform-embed {
        height: 560px;
    }
}/* End custom CSS */