@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:ital,wght@0,300;0,400;0,600;1,400&display=swap');

:root {
    --bg-dark: #2C2C2C; /* Softer Charcoal */
    --bg-warm: #F9F4F0; /* Warm Cream/Beige from image */
    --surface: #FFFFFF;
    --primary: #C5A059; /* Muted Gold from image */
    --primary-light: #D4AF37;
    --accent: #E67E22; /* Terracotta from notebook */
    --text-main: #3A3A3A; /* For Headings */
    --text-body: #555555; /* Lighter Gray for Body Text (ADA Compliant) */
    --text-dim: #767676; /* Softest ADA Compliant Gray */
    --border-gold: 4px solid var(--primary);
    --radius: 20px;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-warm);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .brand {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 80px 0;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(249, 244, 240, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary);
    padding: 1rem 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.latest-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bg-dark);
    border-bottom: 1px solid var(--primary);
    padding-bottom: 2px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 0.3rem 1rem;
}

.search-bar input {
    border: none;
    background: none;
    padding: 0.2rem;
    font-size: 0.8rem;
    outline: none;
    width: 120px;
}

/* --- Hamburger Menu (Simulated Roll-over) --- */
.hamburger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--bg-dark);
    transition: var(--transition);
}

.nav-links {
    display: none; /* Hidden by default for roll-over */
}

.nav-menu-wrap:hover .nav-links,
.nav-menu-wrap:focus-within .nav-links {
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--surface);
    border: 2px solid var(--primary);
    padding: 2rem;
    border-radius: 0 0 var(--radius) var(--radius);
    width: 250px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Bridge to keep menu open while moving mouse */
.nav-menu-wrap::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    height: 40px;
    background: transparent;
    z-index: 999;
}

.latest-link:focus, .btn:focus, input:focus {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

.nav-links a {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* --- Hero --- */
.hero {
    min-height: 85vh; /* Ensure enough room for the box + margins */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content in the remaining space */
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    padding-top: 90px; /* Header height (80px) + a bit of extra breathing room */
    padding-bottom: 20px; /* Safety margin for small screens */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.2));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--bg-dark);
    line-height: 1.1;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.floating-image {
    width: 100%;
    max-width: 450px;
    height: 500px;
    background-size: cover;
    background-position: center;
    border: var(--border-gold);
    border-radius: var(--radius);
    box-shadow: 15px 15px 0 var(--primary); /* More subtle shadow */
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.btn-primary {
    background: var(--bg-dark);
    color: var(--bg-warm);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

/* --- Blog Archive --- */
/* --- Blog Archive List Layout --- */
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 60px;
}

.post-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: var(--border-gold);
    transition: var(--transition);
    padding: 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    position: relative;
}

@media (max-width: 900px) {
    .post-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.post-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.post-img {
    flex: 0 0 400px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    border: 2px solid var(--primary);
}

@media (max-width: 900px) {
    .post-img {
        flex: none;
        width: 100%;
        height: 250px;
    }
}

.post-content {
    flex: 1;
}

.post-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--bg-dark);
}

.post-content p {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.post-category {
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.post-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.post-body p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* --- Single Post --- */
.post-header {
    padding-top: 180px;
    padding-bottom: 80px;
    text-align: center;
    position: relative;
    background-image: url('podcast_hero_rewritten_by_love_1778195994294.png');
    background-size: cover;
    background-position: center;
    color: white; /* Make text white to stand out against background */
}

.post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.4));
    z-index: 0;
}

.post-header .container {
    position: relative;
    z-index: 1;
}

.post-header h1 {
    color: var(--primary) !important; /* Ensure main title remains gold */
}

.post-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.post-meta {
    color: #ccc; /* Slightly lighter for readability on dark overlay */
    font-size: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

/* Spacing between Hero and Content */
.post-header + .container, 
article > .container:first-of-type,
section:first-of-type {
    padding-top: 100px;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem; /* Slightly larger */
    color: var(--text-body);
    font-weight: 400;
}

.post-content p {
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    margin: 3rem 0;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.play-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    transition: var(--transition);
}

.video-container:hover .play-icon {
    transform: scale(1.1);
}

/* --- Footer --- */
footer {
    background: var(--surface);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 40px;
}

.footer-brand .brand {
    margin-bottom: 1.5rem;
    display: block;
}

.footer-brand p {
    color: var(--text-dim);
    max-width: 300px;
}

.block-header {
    background: var(--bg-dark);
    color: var(--bg-warm);
    display: inline-block;
    padding: 0.5rem 2rem;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.shortcode-menu ul {
    list-style: none;
    padding: 0;
}

.shortcode-menu li {
    margin-bottom: 0.8rem;
}

.shortcode-menu a {
    color: var(--text-dim);
    transition: var(--transition);
}

.shortcode-menu a:hover {
    color: var(--primary);
}

/* --- Store --- */
.product-card {
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.product-img {
    background: var(--bg-warm);
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

/* --- Newsletter / Mini Course --- */
.mini-course-box {
    background: var(--surface);
    border: 2px solid var(--primary);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin: 40px 0;
    text-align: center;
}

.mini-course-box h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.mini-course-box p {
    color: var(--text-dim);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mini-course-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.mini-course-form input {
    flex: 1;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: var(--bg-dark);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}
