/*
Theme Name: Daily Reflection
Author: Bendigital
Description: A dedicated theme for daily devotionals with Audio, Text, and ESV Bible integration.
Version: 1.0
*/

:root { --dr-primary: #2c3e50; --dr-accent: #e74c3c; --dr-light: #ecf0f1; }
body { margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background: #fff; color: #333; line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header { border-bottom: 2px solid #f4f4f4; padding: 20px 0; margin-bottom: 40px; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.site-logo { font-size: 24px; font-weight: 700; color: var(--dr-primary); }
.main-nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.main-nav a { font-weight: 600; text-transform: uppercase; font-size: 14px; color: #555; }
.main-nav a:hover { color: var(--dr-accent); }

/* Hero / Single Devotion */
.hero-devotion { background: #f9f9f9; padding: 40px; border-radius: 8px; text-align: center; }
.hero-devotion img { max-height: 350px; border-radius: 4px; margin-bottom: 20px; }
.meta { color: #888; font-size: 0.9em; text-transform: uppercase; letter-spacing: 1px; }
h1.entry-title { font-size: 2.5em; margin: 10px 0 20px; color: var(--dr-primary); }

/* Buttons */
.action-buttons { display: flex; justify-content: center; gap: 15px; margin: 30px 0; }
.btn { padding: 12px 30px; border-radius: 4px; font-weight: 600; cursor: pointer; border: none; }
.btn-primary { background: var(--dr-primary); color: #fff; }
.btn-outline { border: 2px solid var(--dr-primary); color: var(--dr-primary); background: transparent; }
.btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* Toggles */
.content-toggle { display: none; text-align: left; background: #fff; padding: 30px; margin-top: 20px; border: 1px solid #eee; border-radius: 4px; }
.content-toggle.active { display: block; animation: fadeIn 0.5s; }

/* Grid */
.grid-title { margin-top: 60px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.devotion-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 30px; }
.devotion-card { border: 1px solid #eee; padding: 20px; border-radius: 4px; display: flex; align-items: center; gap: 15px; }
.devotion-card img { width: 80px; height: 80px; object-fit: cover; border-radius: 4px; }
.devotion-card h3 { margin: 0 0 5px; font-size: 1.2em; }

/* Bible Page */
.bible-wrapper { background: #fffbe6; padding: 40px; border-left: 5px solid var(--dr-accent); }
.bible-form input[type="text"] { padding: 10px; width: 60%; font-size: 16px; border: 1px solid #ccc; border-radius: 4px; }

/* Footer */
.site-footer { margin-top: 80px; padding: 40px 0; background: #f9f9f9; text-align: center; color: #777; font-size: 0.9em; }

@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }