/**
 * GBN Email Campaign — Form Style: Fiesta
 *
 * Color scheme: Triadic — 120° intervals.
 *   Primary:   #e91e8c  Hot Magenta  HSL 330°
 *   Triadic 1: #dba80d  Solar Gold   HSL  45°  (header strip, success)
 *   Triadic 2: #0db5db  Tropical Cyan HSL 193°  (subheading, accents)
 *
 * Typography: Pacifico (Google Fonts) for heading — distinctive flowing cursive.
 * Layout: Full-width card with a triadic gradient header strip (8px tall).
 *   White body, pill-shaped inputs, gradient pill button.
 * Spacing: Extra generous — 36px body padding. Large heading (1.8em).
 */

@import url( 'https://fonts.googleapis.com/css2?family=Pacifico&display=swap' );

.gbn-ec-subscribe-wrap {
    max-width: 560px;
    margin: 0 auto;
    padding: 0;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(233, 30, 140, 0.08),
        0 12px 32px rgba(233, 30, 140, 0.14);

    --gbn-ec-sub-primary:       #e91e8c;
    --gbn-ec-sub-primary-hover: #c01070;
    --gbn-ec-sub-bg:            #ffffff;
    --gbn-ec-sub-text:          #1a0a14;
    --gbn-ec-sub-muted:         #905070;
    --gbn-ec-sub-border:        #f5b8da;
}

/* Triadic gradient header strip */
.gbn-ec-subscribe-wrap::before {
    content: '';
    display: block;
    height: 8px;
    background: linear-gradient( 90deg, #e91e8c 0%, #dba80d 50%, #0db5db 100% );
}

/* Body padding lives on the inner div */
.gbn-ec-subscribe-wrap .gbn-ec-subscribe-inner {
    padding: 36px 36px 30px;
}

/* ── Typography ───────────────────────────────────────────────────────────── */

.gbn-ec-subscribe-wrap .gbn-ec-subscribe-heading {
    font-family: 'Pacifico', cursive;
    color: #e91e8c;
    font-size: 1.85em;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 12px;
    text-shadow: 2px 2px 0 rgba(233, 30, 140, 0.1);
}

.gbn-ec-subscribe-wrap .gbn-ec-subscribe-subhead {
    color: #007a96;
    font-size: 0.95em;
    font-weight: 500;
    margin-bottom: 24px;
}

/* ── Inputs — pill-shaped ─────────────────────────────────────────────────── */

.gbn-ec-subscribe-wrap .gbn-ec-sub-input {
    border: 2px solid #f5b8da;
    border-radius: 30px;
    padding: 10px 18px;
    background: #fff8fc;
    font-size: 14px;
    max-width: 420px;
}

.gbn-ec-subscribe-wrap .gbn-ec-sub-input:focus {
    border-color: #e91e8c;
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.13);
}

/* ── Button — gradient pill ───────────────────────────────────────────────── */

.gbn-ec-subscribe-wrap .gbn-ec-sub-btn {
    background: linear-gradient( 90deg, #c01878 0%, #007a96 100% );
    border-radius: 30px;
    display: inline-block;
    width: auto;
    padding: 11px 36px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(233, 30, 140, 0.32);
    transition: opacity 0.2s, transform 0.12s;
}

.gbn-ec-subscribe-wrap .gbn-ec-sub-btn:hover:not(:disabled) {
    opacity: 0.88;
    transform: translateY(-2px);
    background: linear-gradient( 90deg, #c01878 0%, #007a96 100% );
}

.gbn-ec-subscribe-wrap .gbn-ec-sub-btn:active {
    transform: translateY(0);
}

/* Gold triadic accent for success message */
.gbn-ec-subscribe-wrap .gbn-ec-sub-msg--success {
    background: #fef8e0;
    color: #7a5c00;
    border: 1px solid #dba80d;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media ( max-width: 480px ) {
    .gbn-ec-subscribe-wrap .gbn-ec-subscribe-inner {
        padding: 28px 20px 22px;
    }

    .gbn-ec-subscribe-wrap .gbn-ec-subscribe-heading {
        font-size: 1.5em;
    }
}
