/*
Theme Name: Hello Elementor Child
Theme URI: https://example.com/
Description: Child theme for Hello Elementor
Author: Your Name
Template: hello-elementor
Version: 1.0.0
*/

/* Add your custom CSS below */

/* Page background */
body.single-post {
    background: #f8f8f8;
}

/* Center content */
body.single-post #content {
    max-width: 800px;
    margin: 30px auto;
    padding: 40px;
    background: #ebebeb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Title */
body.single-post .entry-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Content */
body.single-post .page-content {
    font-size: 18px;
    line-height: 1.8;
}

/* Center title */
.single-post .page-header {
    text-align: center;
}

/* Center meta properly */
.single-post .post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* Add spacing below meta */
.single-post .post-meta {
    margin-bottom: 25px;
}

/* Reduce space below title */
.single-post .page-header h1 {
    margin-bottom: 8px;
}

/* Soften main content container */
.single-post .site-main {
    border-radius: 8px;
    overflow: hidden;
}

/* Soften featured image container */
.single-post .post-featured-image img {
    border-radius: 5px;
    overflow: hidden;
}

/* Make links use Elementor Primary Color */
.single-post a {
    color: var(--e-global-color-primary);
}

/* Style comment form button using Elementor Primary color */
.single-post .comment-form button,
.single-post .comment-form input[type="submit"] {
    background-color: var(--e-global-color-primary);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.single-post .comment-form button:hover,
.single-post .comment-form input[type="submit"]:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}