/* ==================================================
   CONTENT-PAGES.CSS
   Purpose: Unified dark theme for About, Privacy, 
   Terms, and Contact pages.
   ================================================== */

.about-container, 
.privacy-container, 
.terms-container,
#comment-intro,
#comment-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    line-height: 1.8;
}

/* Headings */
h1, h2 {
    font-weight: 700;
    color: var(--text-white);
    border-bottom: 1px solid var(--border-steel);
    padding-bottom: 10px;
    margin-top: 40px;
}

/* Emphasis and Links */
strong { 
    font-weight: 700;           /* Extra bold weight */
    color: var(--text-white);   /* Pure white for maximum contrast */
    letter-spacing: 0.2px;      /* Slight spacing makes it cleaner on dark BG */
}
a { color: var(--brand-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Contact Form Specifics */
#comment-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

#comment-form input,
#comment-form textarea {
    width: 80%;
    padding: 12px 20px;
    font-size: 16px;
    background-color: var(--bg-panel);
    color: var(--text-white);
    border: 1px solid var(--border-input);
    border-radius: 28px;
    outline: none;
    transition: border-color 0.3s ease-in-out;
}

#comment-form input:focus,
#comment-form textarea:focus {
    border-color: var(--brand-blue);
}

/* Button Container 
   Used to center the red button in Privacy/Terms 
*/
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    width: 100%;
}

/* Specialized Buttons */
#comment-form button,
.privacy-container button {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    background-color: var(--brand-blue);
    border: none;
    border-radius: 28px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

#comment-form button:active,
.privacy-container button:active {
    transform: scale(0.98);
}

/* Danger/Delete State (The Red Button) */
.privacy-container button {
    background-color: var(--danger-red);
}

.privacy-container button:hover { 
    background-color: #B71C1C; /* Darker red for contrast */
}

/* Global Font Override */
body { font-family: 'Roboto', sans-serif; }

/* Responsive Design */
@media (max-width: 768px) {
    .about-container, 
    .privacy-container, 
    .terms-container, 
    #comment-intro, 
    #comment-section {
        padding: 15px;
        margin: 20px auto;
    }
    #comment-form input, 
    #comment-form textarea { 
        width: 95%; 
    }
}