/* === PASTEL NAVY BLUE + GOLD - FORCED FOR BLOCK THEME === */

body, .wp-site-blocks {
    background: linear-gradient(180deg, #f0f4f8 0%, #e6edf5 100%) !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Roboto, Arial, sans-serif !important;
}

h1, h2, h3, .wp-block-heading {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Roboto, Arial, sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: -0.05em !important;
    color: #0c2238 !important;
}

h1 { font-size: 4.5rem !important; }
h2 { font-size: 3.3rem !important; }

.wp-block-cover {
    background: linear-gradient(135deg, #8fb4d0, #c5d9e8) !important;
    position: relative !important;
    overflow: hidden !important;
}

.wp-block-cover::after {
    content: '' !important;
    position: absolute !important;
    bottom: -40% !important;
    right: -25% !important;
    width: 850px !important;
    height: 850px !important;
    background: radial-gradient(circle, rgba(212,175,119,0.32) 0%, transparent 70%) !important;
    animation: goldPulse 26s infinite ease-in-out !important;
}

.wp-block-group {
    background: #f8f9fc !important;
    border-radius: 32px !important;
    box-shadow: 0 25px 65px rgba(15,42,61,0.08) !important;
    padding: 80px 60px !important;
    margin: 80px 0 !important;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.wp-block-group:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 40px 90px rgba(15,42,61,0.15) !important;
}

.wp-block-group::before {
    content: '' !important;
    position: absolute !important;
    top: 0; left: 0; right: 0;
    height: 7px !important;
    background: linear-gradient(90deg, transparent, #d4af77, transparent) !important;
}

.wp-block-button__link {
    background: #d4af77 !important;
    color: white !important;
    border-radius: 50px !important;
    padding: 22px 52px !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    box-shadow: 0 15px 45px rgba(212,175,119,0.45) !important;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.wp-block-button__link:hover {
    transform: translateY(-10px) scale(1.07) !important;
}

@keyframes goldPulse {
    0%, 100% { opacity: 0.25; transform: scale(0.94); }
    50% { opacity: 0.48; transform: scale(1.08); }
}