/*
Theme Name: Intrigue Digital
Theme URI: https://www.intrigue-digital.com/wordpress-theme
Author: Jessica Dobbs
Author URI: https://www.jessdobbs.com
Description: A modern, multipurpose WordPress theme built for flexibility, performance, and deep customization.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: intrigue-digital
Tags: blog, portfolio, business, e-commerce, custom-background, custom-logo, custom-menu, editor-style, featured-images, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
*/

/* =============================================
   Reset & Base Styles
   ============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* =============================================
   CSS Variables (Starter Set – We'll Expand Later)
   ============================================= */
:root {
    --color-primary: #0066cc;
    --color-secondary: #ff6600;
    --color-text: #333333;
    --color-light: #f8f9fa;
    --color-dark: #212529;
    --font-sans: system-ui, sans-serif;
    --font-heading: Georgia, serif;
    --spacing-unit: 1.5rem;
    --container-width: 1200px;
}

/* =============================================
   Typography & Headings
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem;
    line-height: 1.2;
    font-family: var(--font-heading);
}

p {
    margin: 0 0 1.5rem;
}

/* =============================================
   Container & Layout Basics
   ============================================= */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* =============================================
   Header (Placeholder)
   ============================================= */
.site-header {
    background: var(--color-dark);
    color: white;
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .custom-logo-link img.custom-logo {
        max-width: 80% !important;
        height: auto !important;
    }
}

/* =============================================
   Comments Area
   ============================================= */
.comments-area {
    margin-top: 60px;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.comments-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-color);
    color: var(--heading-color);
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.comment .avatar {
    border-radius: 50%;
    float: left;
    margin-right: 20px;
}

.comment-author {
    font-weight: 600;
    color: var(--heading-color);
}

.comment-metadata {
    font-size: 0.9rem;
    color: #777;
}

.comment-content {
    margin-top: 10px;
}

.comment-reply-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

.comment-reply-link:hover {
    text-decoration: underline;
}

/* Comment Form */
.comment-form {
    margin-top: 40px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 20px;
}

.comment-form .comment-form-cookies-consent {
    margin-bottom: 20px;
}

.comment-form .submit {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.comment-form .submit:hover {
    background: var(--heading-color);
}