/* ========================================
   Sunshine Bear — Cara Bellman Memorial
   Colors inspired by Cara's love of Care Bears
   ======================================== */

/* ---- HERO IMAGE: No cropping, no overlay ---- */
.wp-block-image.is-style-cara-portrait img {
    width: auto !important;
    max-width: 55% !important;
    max-height: 80vh !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
}
.wp-block-image.is-style-cara-portrait {
    margin-bottom: 0 !important;
    text-align: center !important;
}
.wp-block-image.is-style-cara-portrait figure {
    margin: 0 !important;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif !important;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---- LINKS ---- */
a {
    color: #FF8F00 !important;
    transition: all 0.2s;
}
a:hover {
    color: #FFD700 !important;
    text-shadow: 0 0 8px rgba(255,215,0,0.2);
}

/* ---- SEPARATORS ---- */
.wp-block-separator {
    border-color: rgba(255, 215, 0, 0.2) !important;
}

/* ---- CELEBRATION INFO BOX ---- */
.wp-block-group.has-border-color {
    border-color: #FFD700 !important;
    box-shadow: 0 2px 12px rgba(255,215,0,0.08);
}

/* ---- SECTION HEADING GOLD UNDERLINE ---- */
h2:not(.wp-block-heading:first-of-type) {
    position: relative;
    padding-bottom: 0.3rem;
    margin-bottom: 1rem;
}
h2:not(.wp-block-heading:first-of-type)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
}

/* ---- FOOTER ---- */
footer {
    text-align: center !important;
    padding: 3rem 2rem !important;
    background: #0A1628 !important;
    color: rgba(255,255,255,0.5) !important;
    font-size: 0.9rem !important;
    font-family: 'Inter', system-ui, sans-serif !important;
}

footer img,
footer .wp-block-navigation,
footer a[href*=wordpress],
footer a[href*=w.org],
footer p:last-of-type {
    display: none !important;
}

footer a {
    color: #FFD700 !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

/* Gold divider */
footer::before {
    content: '' !important;
    display: block !important;
    width: 40px !important;
    height: 2px !important;
    background: #FFD700 !important;
    margin: 0 auto 1.5rem auto !important;
    border-radius: 1px !important;
    opacity: 0.4 !important;
}

/* Custom footer text */
footer::after {
    content: 'January 12, 1978  \u2726  March 5, 2026' !important;
    display: block !important;
    font-size: 0.85rem !important;
    color: rgba(255,255,255,0.4) !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-style: italic !important;
    margin-top: 0.3rem !important;
}

/* ---- FORM ELEMENTS ---- */
textarea, input[type=text], input[type=email], input[type=url] {
    border-color: rgba(255, 215, 0, 0.3) !important;
    border-radius: 8px !important;
}
textarea:focus, input:focus {
    border-color: #FFD700 !important;
    box-shadow: 0 0 0 1px #FFD700 !important;
    outline: none !important;
}

input[type=submit], .wp-block-button__link {
    background: #FFD700 !important;
    color: #3E2723 !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(255,215,0,0.3) !important;
    transition: all 0.2s !important;
    border: none !important;
}
input[type=submit]:hover, .wp-block-button__link:hover {
    background: #FFB300 !important;
    box-shadow: 0 6px 20px rgba(255,179,0,0.4) !important;
    transform: translateY(-1px) !important;
}
