/* General Body Styling */
body {
    background-color: #f5f5f5;
    color: #333333; /* Text color */
    font-family: 'Arial', sans-serif;
    font-size: 1.1em;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #ff6f00; /* Sunset Orange for headings */
    font-weight: bold;
}

/* Links */
a {
    color: #007aff;
    text-decoration: none;
}

a:hover {
    color: #ff6f00; /* Sunset Orange hover effect for links */
    text-decoration: underline;
}

/* Buttons */
button, .btn {
    background-color: #ff6f00; /* Sunset Orange */
    color: #ffffff; /* White text */
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover, .btn:hover {
    background-color: #ffb84d; /* Light Orange hover effect */
}

/* Footer */
footer {
    background-color: #333333; /* Charcoal background */
    color: #f5f5f5; /* Light gray text */
    padding: 20px;
    text-align: center;
}

/* 🔥 Disqus Comment Section Styling 🔥 */
#disqus_thread {
    margin-top: 40px;
    padding: 20px;
    background-color: #ffffff; /* White background for clarity */
    border: 1px solid #ddd; /* Light border to define space */
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Adjust iframe sizing */
#disqus_thread iframe {
    max-width: 100%;
    border: none; /* Clean look */
}

/* Disqus comment box padding */
#disqus_thread .post-message {
    padding: 15px;
}

/* Hide unwanted elements (optional) */
.disqus-header {
    display: none; /* Hide header if needed */
}

/* Dark mode adjustments (if applicable) */
@media (prefers-color-scheme: dark) {
    #disqus_thread {
        background-color: #222;
        color: #f5f5f5;
    }
}
