/*
Theme Name: Right Side Talks Conservative
Description: Conservative political design for Right Side Talks podcast
Version: 1.0
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #f8f9fa;
}

/* Conservative color palette */
:root {
    --primary-red: #DC143C;
    --dark-red: #B91C3C;
    --deep-black: #1a1a1a;
    --charcoal: #404040;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --gold-accent: #DAA520;
}

/* Header styles - patriotic and authoritative */
.site-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    border-bottom: 3px solid var(--gold-accent);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Georgia', serif;
}

.site-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin-top: 0.3rem;
    font-style: italic;
}

/* Navigation */
.main-navigation {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.main-navigation a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-navigation a:hover {
    background: rgba(255,255,255,0.2);
    color: var(--gold-accent);
    transform: translateY(-2px);
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--charcoal) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.hero-section::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="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23DAA520" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-style: italic;
}

.cta-button {
    background: var(--primary-red);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.cta-button:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
}

/* Content sections */
.content-section {
    padding: 4rem 0;
    background: var(--white);
}

.content-section:nth-child(even) {
    background: var(--light-gray);
}

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

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

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Episode grid */
.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.episode-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-red);
}

.episode-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.episode-number {
    color: var(--primary-red);
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.episode-title {
    font-size: 1.5rem;
    color: var(--deep-black);
    margin-bottom: 1rem;
    font-weight: bold;
}

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

.episode-links {
    display: flex;
    gap: 1rem;
}

.episode-link {
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.episode-link.youtube {
    background: #ff0000;
    color: white;
}

.episode-link.spotify {
    background: #1db954;
    color: white;
}

.episode-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* YouTube embed styling */
.youtube-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* About section styling */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.conservative-values {
    background: var(--primary-red);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.2);
}

.conservative-values h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.conservative-values ul {
    list-style: none;
}

.conservative-values li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.conservative-values li::before {
    content: '★';
    color: var(--gold-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Footer */
.site-footer {
    background: var(--deep-black);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--primary-red);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--gold-accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* Social media links */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

/* Responsive design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .episodes-grid {
        grid-template-columns: 1fr;
    }
    
    .episode-links {
        flex-direction: column;
    }
}

/* Patriotic animations */
@keyframes patrioticGlow {
    0%, 100% {
        text-shadow: 0 0 5px var(--gold-accent);
    }
    50% {
        text-shadow: 0 0 20px var(--gold-accent), 0 0 30px var(--primary-red);
    }
}

.patriotic-glow {
    animation: patrioticGlow 3s ease-in-out infinite;
}

/* Conservative blog post styling */
.post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.post-title {
    color: var(--deep-black);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-meta {
    color: var(--charcoal);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-red);
}

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

.post-content blockquote {
    border-left: 5px solid var(--primary-red);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--charcoal);
    background: rgba(220, 20, 60, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
}