/*
Theme Name: Lumière
Theme URI: https://example.com/lumiere
Author: Your Name
Author URI: https://example.com
Description: Um tema WordPress profissional, limpo e elegante baseado no design Lumière.
Version: 1.0.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lumiere
Tags: blog, news, custom-colors, custom-logo, custom-menu, featured-images
*/

/* 
 * O CSS base está carregado via CDN do Tailwind e configurações no wp_head.
 * O CSS adicional foi movido para lá ou mantido aqui.
 */

body {
    font-family: 'Inter', sans-serif;
    background: var(--color-cream);
    color: var(--color-ink);
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.heading-serif {
    font-family: 'Playfair Display', serif;
}

.menu-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.post-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-card:hover {
    transform: translateY(-6px);
}

.post-card:hover .post-image {
    transform: scale(1.05);
}

.post-image {
    transition: transform 0.6s ease;
}

.category-tag {
    position: relative;
    overflow: hidden;
}

.marquee {
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gradient-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
}

.menu-link {
    position: relative;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.menu-link:hover::after {
    width: 100%;
}

.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.scroll-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-ink));
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s;
}

/* WP Core Classes */
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.wp-caption { max-width: 100%; }
.wp-caption-text { text-align: center; font-size: 0.875rem; color: #666; margin-top: 0.5rem; }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }

/* WP Content & Typography */
.entry-content p {
    margin-bottom: 1.75rem;
    line-height: 1.8;
}
.entry-content h2 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: inherit;
    line-height: 1.3;
}
.entry-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: inherit;
    line-height: 1.4;
}
.entry-content ul, .entry-content ol {
    margin-bottom: 1.75rem;
    padding-left: 1.5rem;
}

/* Comment Form Styles */
.comment-respond {
    max-width: 48rem;
    margin-top: 2rem;
}
.comment-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1.5rem;
}
.comment-form > * {
    grid-column: 1 / -1;
}
.comment-form .comment-form-author {
    grid-column: 1 / 2;
}
.comment-form .comment-form-email {
    grid-column: 2 / 3;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 0.75rem;
    width: 100%;
    background-color: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 1rem;
}
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}
.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-ink);
}
.comment-form input[type="submit"] {
    background-color: var(--color-ink);
    color: var(--color-cream);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.comment-form input[type="submit"]:hover {
    background-color: var(--color-accent);
    color: var(--color-ink);
}

/* Existing Comments Styles */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    max-width: 48rem;
}
.comment-list .comment {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}
.comment-list .comment:last-child {
    border-bottom: none;
}
.comment-list .comment-body {
    padding: 0;
}
.comment-list .comment-author {
    font-weight: 600;
    display: inline-block;
    font-size: 1rem;
    color: var(--color-ink);
}
.comment-list .comment-author .avatar {
    display: none; /* Hide avatars completely */
}
.comment-list .comment-author .fn {
    font-style: normal;
}
.comment-list .comment-author .says {
    display: none; /* Hide "says:" text */
}
.comment-list .comment-meta {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}
.comment-list .comment-meta a {
    color: inherit;
    text-decoration: none;
}
.comment-list .comment-meta a:hover {
    text-decoration: underline;
}
.comment-list .comment-content {
    margin-top: 0.75rem;
    color: #374151;
    line-height: 1.6;
}
.comment-list .comment-content p {
    margin-bottom: 0.5rem;
}
.comment-list .reply {
    margin-top: 0.5rem;
    font-size: 0.875rem;
}
.comment-list .reply a {
    color: var(--color-accent);
    font-weight: 500;
    text-decoration: none;
}
.comment-list .reply a:hover {
    text-decoration: underline;
}
