/**
 * EDC Elementor Widgets - Minimal Structural CSS
 * 
 * Visual styling (colors, fonts, sizes, spacing) comes from Elementor controls.
 * This CSS only provides structural layout that controls don't handle.
 */

/* =====================
   THANK YOU WIDGET - Structure Only
   ===================== */

.edc-ty-container {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-sizing: border-box;
}

.edc-ty-container * {
    box-sizing: border-box;
}

.edc-ty-top-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
}

.edc-ty-headline {
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    line-height: 1.3;
    text-align: center;
}

.edc-ty-content {
    display: grid;
    align-items: center;
    width: 100%;
}

.edc-ty-image {
    width: 100%;
}

.edc-ty-image img {
    width: 100%;
    height: auto;
    display: block;
}

.edc-ty-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.edc-ty-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
}

.edc-ty-button:hover {
    text-decoration: none;
}

.edc-ty-button-text {
    font-family: 'Oswald', 'Impact', 'Arial Narrow', sans-serif;
    line-height: 1.2;
    display: inline;
    text-decoration: none;
}

/* =====================
   LANDING PAGE HERO WIDGET - Structure Only
   ===================== */

.edc-container {
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.edc-container * {
    box-sizing: border-box;
}

.edc-header-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    text-align: center;
}

.edc-main-headline {
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    line-height: 1.3;
    text-align: center;
}

.edc-subheadline {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    text-align: center;
}

.edc-form-headline {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.3;
    text-align: center;
}

.edc-hero-section {
    display: grid;
}

.edc-hero-image {
    width: 100%;
}

.edc-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.edc-hero-form {
    width: 100%;
}

.edc-form-headline {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.3;
}

.edc-form-field {
    width: 100%;
}

.edc-form-input {
    width: 100%;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.edc-form-input:focus {
    outline: none;
}

.edc-form-button {
    display: block;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.edc-form-button-text {
    display: block;
}

.edc-privacy-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
}

.edc-privacy-text p {
    margin: 0;
}

/* Hide formkit spinner */
.formkit-spinner {
    display: none !important;
}

/* ConvertKit form resets */
.formkit-form[data-sv-form] {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    max-width: 100% !important;
    padding: 0 !important;
}

.formkit-form[data-sv-form] .formkit-column {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
}

/* =====================
   COACH BIO WIDGET - Structure Only
   ===================== */

.edc-coach-section {
    display: grid;
    box-sizing: border-box;
}

.edc-coach-section * {
    box-sizing: border-box;
}

.edc-coach-image {
    width: 100%;
}

.edc-coach-image.edc-sticky {
    position: sticky;
}

.edc-coach-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.edc-coach-content {
    width: 100%;
}

.edc-coach-title {
    font-family: 'Didot', 'Bodoni MT', 'Cormorant Garamond', 'Playfair Display', serif;
    line-height: 1.3;
}

.edc-coach-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.5;
}

.edc-coach-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.8;
}

.edc-coach-description p:last-child {
    margin-bottom: 0;
}

.edc-mission-list {
    list-style: none;
    padding: 0;
}

.edc-mission-item {
    line-height: 1.6;
}

/* =====================
   RESPONSIVE - Structural Changes Only
   ===================== */

@media (max-width: 1024px) {
    .edc-ty-content {
        grid-template-columns: 1fr !important;
    }

    .edc-hero-section {
        grid-template-columns: 1fr !important;
    }

    .edc-coach-section {
        grid-template-columns: 1fr !important;
    }

    .edc-coach-image.edc-sticky {
        position: static;
    }

    .edc-coach-image {
        order: 1 !important;
    }

    .edc-coach-content {
        order: 2 !important;
    }
}
