/* ================================
   CSS RESET AND BASE STYLES
================================ */

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

/* Color Variables - 90s Manchester United Aesthetic */
:root {
    --devil-red: #B72025;
    --golden-yellow: #F2C300;
    --jet-black: #1B1B1B;
    --warm-cream: #FFF9F2;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #999999;
    --gray-dark: #333333;
    
    /* Typography */
    --font-heading: 'Teko', 'Anton', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --container-padding: 1rem;
    --section-padding: 3rem 0;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Base Typography */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--warm-cream);
}

/* Heading Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--jet-black);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Paragraph and Text Styles */
p {
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

a {
    color: var(--devil-red);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--golden-yellow);
}

/* Container and Layout */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-medium);
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--devil-red);
    color: var(--white);
    border-color: var(--devil-red);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--devil-red);
    border-color: var(--devil-red);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--devil-red);
    border-color: var(--devil-red);
    font-weight: 700;
}

.btn-secondary:hover {
    background-color: var(--devil-red);
    color: var(--white);
}

/* ================================
   HEADER AND NAVIGATION
================================ */

.header {
    background-color: var(--jet-black);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--container-padding);
    max-width: var(--container-max-width);
    margin: 0 auto;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 1px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--golden-yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--golden-yellow);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 2px 0;
    transition: var(--transition-fast);
}

/* ================================
   HERO SECTION
================================ */

.hero {
    background: linear-gradient(135deg, var(--devil-red) 0%, #8B1538 100%);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23000" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--warm-cream);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-logo-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* ================================
   PAGE HEADER
================================ */

.page-header {
    background: linear-gradient(135deg, var(--jet-black) 0%, var(--gray-dark) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--warm-cream);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

/* ================================
   SECTIONS
================================ */

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--jet-black);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--golden-yellow);
}

/* Featured Episode Section */
.featured-episode {
    padding: var(--section-padding);
    background-color: var(--white);
}

/* Latest Posts Section */
.latest-posts {
    padding: var(--section-padding);
    background-color: var(--gray-light);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ================================
   BLOG POSTS AND EPISODES
================================ */

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Post Card Styles */
.post-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--transition-medium);
    border: 2px solid transparent;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-color: var(--golden-yellow);
}

.post-card.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: var(--gray-medium);
}

.post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid var(--devil-red);
}

.post-content {
    padding: 1.5rem;
}

.post-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--jet-black);
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.post-date {
    font-weight: 600;
}

.post-category {
    background-color: var(--devil-red);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-excerpt {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-read-more {
    font-weight: 700;
    color: var(--devil-red);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-decoration: underline;
}

/* Episode Card Styles */
.episode-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
    border-left: 4px solid var(--devil-red);
}

.episode-card.featured {
    border-left-width: 6px;
    border-left-color: var(--golden-yellow);
}

.episode-content {
    padding: 2rem;
}

.episode-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--jet-black);
}

.episode-description {
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

.episode-player {
    background-color: var(--gray-light);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.player-placeholder {
    color: var(--gray-medium);
    font-style: italic;
}

/* Coming Soon Episode Styles */
.episode-card.coming-soon {
    border-left-color: var(--golden-yellow);
    background: linear-gradient(135deg, var(--warm-cream) 0%, #fff 100%);
}

.coming-soon-placeholder {
    background: linear-gradient(135deg, var(--golden-yellow) 0%, #f0b500 100%);
    color: var(--jet-black);
    font-weight: 600;
    border-radius: 6px;
    padding: 1.5rem;
}

.coming-soon-placeholder p:first-child {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.coming-soon-placeholder em {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

/* Episodes List */
.episodes-section {
    padding: var(--section-padding);
}

.episodes-list {
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Section */
.blog-section {
    padding: var(--section-padding);
}

/* ================================
   ABOUT PAGE
================================ */

.about-section {
    padding: var(--section-padding);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-heading {
    color: var(--devil-red);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-heading:first-child {
    margin-top: 0;
}

.about-paragraph {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-list {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.about-list li {
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--golden-yellow);
}

.value-title {
    color: var(--devil-red);
    margin-bottom: 0.5rem;
}

.value-description {
    color: var(--gray-dark);
}

/* About CTA */
.about-cta {
    background-color: var(--gray-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* About Sidebar */
.about-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.sidebar-logo {
    width: 100px;
    height: auto;
    margin-bottom: 1rem;
}

.sidebar-title {
    color: var(--devil-red);
    margin-bottom: 1rem;
}

.sidebar-text {
    color: var(--gray-dark);
    font-style: italic;
}

/* ================================
   CONTACT PAGE
================================ */

.contact-section {
    padding: var(--section-padding);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-heading {
    color: var(--devil-red);
    margin-bottom: 1rem;
}

.contact-subheading {
    color: var(--jet-black);
    font-size: 1.2rem;
    margin: 2rem 0 1rem 0;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-list {
    margin-left: 1.5rem;
}

.contact-list li {
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--jet-black);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-light);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: var(--warm-cream);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--devil-red);
    background-color: var(--white);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    display: block;
    color: var(--devil-red);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    min-height: 1.2rem;
}

.form-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ================================
   FOOTER
================================ */

.footer {
    background-color: var(--jet-black);
    color: var(--white);
    padding: 3rem 0 1rem 0;
}

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

.footer-logo {
    width: 60px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--gray-light);
    line-height: 1.6;
}

.footer-title {
    color: var(--golden-yellow);
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: var(--gray-light);
    transition: var(--transition-fast);
}

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

.footer-social {
    color: var(--gray-light);
}

.footer-bottom {
    border-top: 1px solid var(--gray-dark);
    padding-top: 1rem;
    text-align: center;
    color: var(--gray-medium);
}

/* ================================
   BLOG POST PAGE STYLES
================================ */

/* Loading and Error States */
.loading-container,
.error-container {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--warm-cream);
}

.loading-content,
.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-content h2 {
    color: var(--devil-red);
    margin-bottom: 1rem;
}

/* Post Header */
.post-header {
    background: linear-gradient(135deg, var(--jet-black) 0%, var(--gray-dark) 100%);
    color: var(--white);
    padding: 3rem 0;
}

.post-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.post-header .post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.post-header .post-meta span {
    font-size: 0.9rem;
    color: var(--warm-cream);
}

.post-header .post-category {
    background-color: var(--devil-red);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.post-header .post-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-header .post-excerpt {
    font-size: 1.2rem;
    color: var(--warm-cream);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.post-author {
    color: var(--warm-cream);
    font-style: italic;
}

/* Post Content */
.post-content-section {
    padding: 3rem 0;
    background-color: var(--warm-cream);
}

.post-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.post-main-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-dark);
}

.post-content h1,
.post-content h2,
.post-content h3 {
    color: var(--devil-red);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content h1:first-child,
.post-content h2:first-child,
.post-content h3:first-child {
    margin-top: 0;
}

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

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content strong {
    color: var(--jet-black);
    font-weight: 600;
}

.post-content em {
    color: var(--gray-dark);
    font-style: italic;
}

/* Post Tags */
.post-tags {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
}

.post-tags h4 {
    margin-bottom: 1rem;
    color: var(--jet-black);
}

.tags-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background-color: var(--gray-light);
    color: var(--gray-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Post Navigation */
.post-navigation {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-buttons span {
    color: var(--gray-dark);
    font-weight: 600;
}

/* Sidebar */
.post-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: var(--devil-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Related Posts */
.related-post {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.related-post:last-child {
    border-bottom: none;
}

.related-post h4 {
    margin-bottom: 0.5rem;
}

.related-post h4 a {
    color: var(--jet-black);
    text-decoration: none;
    font-size: 1rem;
}

.related-post h4 a:hover {
    color: var(--devil-red);
}

.related-post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--gray-medium);
}

.related-post-category {
    background-color: var(--devil-red);
    color: var(--white);
    padding: 0.1rem 0.5rem;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Categories List */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-link {
    padding: 0.5rem 0.75rem;
    background-color: var(--gray-light);
    color: var(--gray-dark);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.category-link:hover {
    background-color: var(--devil-red);
    color: var(--white);
}

/* ================================
   RESPONSIVE DESIGN
================================ */

/* Tablet Styles */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--jet-black);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition-medium);
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Logo */
    .logo-text {
        display: none;
    }
    
    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* About Content */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-sidebar {
        position: static;
    }
    
    /* Contact Content */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    /* Values Grid */
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Blog Post Page Mobile */
    .post-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .post-sidebar {
        position: static;
    }
    
    .post-header .post-title {
        font-size: 2rem;
    }
    
    .post-navigation {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .share-buttons {
        justify-content: center;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .page-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    /* Spacing */
    :root {
        --container-padding: 0.75rem;
        --section-padding: 2rem 0;
    }
    
    /* Posts Grid */
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Hero Buttons */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Episode Content */
    .episode-content {
        padding: 1.5rem;
    }
    
    /* Contact Form */
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    /* About CTA */
    .about-cta {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .nav-toggle,
    .hero-buttons,
    .btn {
        display: none;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    .hero {
        background: none;
        color: black;
    }
    
    .page-header {
        background: none;
        color: black;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --devil-red: #990000;
        --golden-yellow: #CC9900;
        --jet-black: #000000;
        --gray-dark: #000000;
    }
}

/* Focus Styles for Better Accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--golden-yellow);
    outline-offset: 2px;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ================================
   BREADCRUMB NAVIGATION
================================ */

.breadcrumb {
    background-color: var(--gray-light);
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin: 0 0.5rem;
    color: var(--gray-medium);
    font-weight: bold;
}

.breadcrumb-item a {
    color: var(--devil-red);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--jet-black);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--gray-dark);
    font-weight: 500;
}

/* Mobile breadcrumb adjustments */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.75rem 0;
    }
    
    .breadcrumb-item {
        font-size: 0.8rem;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 0.3rem;
    }
}

/* ================================
   CONTACT FORM STYLES
================================ */

.contact-section {
    padding: 3rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding-right: 2rem;
}

.contact-heading {
    color: var(--devil-red);
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--gray-dark);
}

.contact-subheading {
    color: var(--jet-black);
    margin: 2rem 0 1rem 0;
    font-size: 1.25rem;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-dark);
}

.contact-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--devil-red);
    font-weight: bold;
}

/* Form Styles */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--jet-black);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: var(--white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--devil-red);
    box-shadow: 0 0 0 3px rgba(183, 32, 37, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    display: none;
    color: var(--devil-red);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-success {
    color: #155724;
}

.form-error-message {
    color: #721c24;
}

/* Mobile contact form adjustments */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.6rem;
    }
}
