body { 
    font-family: 'Inter', sans-serif; 
    background-image: url('bg.jpg');
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: black;
}
/* Crucial: Ensure main content is on top of the overlay */
.max-w-7xl {
    position: relative; 
    z-index: 3; 
}
.serif-text { 
    font-family: 'Newsreader', serif; 
}
/* Post Card Styles */
.blog-post-card { 
    transition: transform 0.2s, box-shadow 0.2s; 
    cursor: pointer; 
}
.blog-post-card:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05); 
}
/* All cards have neutral border - NO color coding */
.blog-post-card {
    border-top: 4px solid #cbd5e1;
}
.poem-content {
    white-space: pre-wrap;
    line-height: 1.8;
    margin-top: 0.75rem;
    font-family: 'Newsreader', serif;
    padding: 1.5rem;
    font-size: 1.1rem;
}
/* Header Box - Dogtag Style with WHITE background */
.header-box {
    position: relative;
    background: #ffffff; /* White background */
    border: 3px solid #c49a3c;
    border-radius: 80px;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    padding: 2.5rem 3.5rem;
    max-width: 580px;
    transform: rotate(-2deg);
    /* Paper texture */
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.01) 2px,
            rgba(0, 0, 0, 0.01) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.01) 2px,
            rgba(0, 0, 0, 0.01) 4px
        );
}
/* Glass lens effect overlay */
.header-box::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    width: 60%;
    height: 30%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    border-radius: 50%;
    pointer-events: none;
    filter: blur(8px);
}
/* Subtle inner shadow for depth */
.header-box::after {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 75px;
    border: 1px solid rgba(196, 154, 60, 0.3);
    pointer-events: none;
    
}
.header-box-inner {
    position: relative;
    z-index: 2;
    transform: rotate(0deg);
    font-size: 1.125rem;
    line-height: 1.8;
    font-style: italic;
    font-family: 'Newsreader', serif;
}

/* Navigation Links - Very Faint Yellow */
#filter-nav button {
    background-color: #fffbeb; /* Very faint yellow */
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.15s ease;
}

#filter-nav button:hover {
    background-color: #fef3c7; /* Slightly stronger yellow on hover */
    color: #1f2937;
}

/* Responsive Video Embed */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Email Modal Specific Styles */
.modal-backdrop {
    backdrop-filter: blur(5px);
}
.email-modal input, .email-modal textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    margin-top: 0.25rem;
}
.email-modal label {
    font-weight: 600;
    color: #374151;
}