/* Blog Page Styling - Match Homepage */

/* Apply dark gradient background to blog page - SAME AS HOMEPAGE */
body.page-id-817 {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%) !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 140px !important; /* Add space for floating header */
    overflow-x: hidden;
    overflow-y: auto;
}

/* Add animated background orbs - SAME AS HOMEPAGE */
body.page-id-817::before {
    content: "";
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    background: radial-gradient(circle, rgba(91, 141, 239, 0.6) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    pointer-events: none;
    z-index: 0;
}

body.page-id-817::after {
    content: "";
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    background: radial-gradient(circle, rgba(155, 89, 208, 0.6) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    pointer-events: none;
    z-index: 0;
}

/* Ensure content is above the background overlay */
body.page-id-817 #content,
body.page-id-817 .site-main,
body.page-id-817 main {
    position: relative;
    z-index: 1;
}

/* Hide footer on blog page */
body.page-id-817 footer.elementor-location-footer {
    display: none !important;
}

/* Hide page title if needed */
body.page-id-817 .entry-header {
    display: none !important;
}

body.page-id-817 .site-content {
    padding: 0 !important;
}

/* Style text for dark background */
body.page-id-817 h1,
body.page-id-817 h2,
body.page-id-817 h3,
body.page-id-817 h4,
body.page-id-817 h5,
body.page-id-817 h6,
body.page-id-817 .elementor-post__title,
body.page-id-817 .elementor-post__title a {
    color: rgba(255, 255, 255, 0.95) !important;
}

body.page-id-817 p,
body.page-id-817 span,
body.page-id-817 div,
body.page-id-817 a,
body.page-id-817 .elementor-post__excerpt,
body.page-id-817 .elementor-post__meta-data {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Style blog post cards for dark background */
body.page-id-817 .elementor-post {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s ease !important;
}

body.page-id-817 .elementor-post:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(91, 141, 239, 0.4) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(91, 141, 239, 0.3) !important;
    transform: translateY(-8px) !important;
}

/* Header styling is now handled globally in global-header.css */
