/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f7f9fc;
    color: #333;
}

/* Hero Section */
.hero-section {
    background-image: url("/gainforchrist/images/2.jpg");
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: #ffcb70;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
}

/* Form Section */
.post-form-section {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.post-form-section label {
    display: block;
    margin-bottom: 5px;
}

.post-form-section textarea,
.post-form-section input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.post-form-section button {
    width: 100%;
    padding: 12px;
    background-color: #4a90e2;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.post-form-section button:hover {
    background-color: #3a78c2;
}

/* Comments Section */
.comments-section .comment {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.comments-section .replies {
    margin-left: 20px;
    margin-top: 10px;
}

.comment {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.comment.question {
    background-color: #f0f8ff;
    border-left: 5px solid #007bff;
}

.comment.comment {
    background-color: #f9f9f9;
    border-left: 5px solid #28a745;
}

.replies {
    margin-left: 20px;
    margin-top: 10px;
}

.reply-form input[type="text"] {
    width: 100%;
    margin-bottom: 8px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.reply-form textarea {
    width: 100%;
    margin-bottom: 8px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.reply-form button {
    padding: 8px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.reply-form button:hover {
    background-color: #0056b3;
}

}

