/* Mission: Texas - Modern Rustic Political Podcast */

:root {
    /* Texas Rustic Modern Palette */
    --bg-cream: #f9f6f2;
    --bg-tan: #e8dfd5;
    --bg-sand: #d4c5b3;
    --bg-white: #ffffff;
    
    /* Texas Colors */
    --texas-rust: #c85a3c;
    --texas-burnt: #8b4513;
    --texas-clay: #a0522d;
    --texas-sage: #7a8a6e;
    --texas-brown: #3e2723;
    --texas-brown-warm: #4e342e;
    
    /* Democratic Accent */
    --dem-blue: #0066cc;
    --dem-blue-dark: #004c99;
    
    /* Text Colors */
    --text-primary: #2d2520;
    --text-secondary: #5a4e47;
    --text-light: #ffffff;
    --text-muted: #8c7f77;
    
    /* UI Colors */
    --border-subtle: rgba(212, 197, 179, 0.3);
    --shadow-soft: rgba(139, 69, 19, 0.08);
    --shadow-medium: rgba(139, 69, 19, 0.15);
    --shadow-strong: rgba(45, 37, 32, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header & Navigation */
.header {
    background: var(--texas-brown);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(62, 39, 35, 0.3);
    border-bottom: 3px solid var(--texas-rust);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.25s ease;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-social-link:hover {
    background-color: rgba(200, 90, 60, 0.3);
    border-color: var(--texas-rust);
    color: var(--text-light);
}

.header-social-link i {
    display: block;
}

.logo {
    font-family: 'Alfa Slab One', 'Impact', 'Arial Black', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--bg-cream);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--texas-rust);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.logo i {
    font-size: 1.3rem;
    color: var(--texas-rust);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--texas-rust);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 20px 3.5rem;
    overflow: hidden;
    margin-bottom: 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-cream) 100%);
}

.hero-content {
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px var(--shadow-medium);
    border: 3px solid var(--bg-sand);
    transition: all 0.3s ease;
}

.hero-image:hover {
    box-shadow: 0 8px 24px var(--shadow-strong);
    border-color: var(--texas-rust);
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-family: 'Alfa Slab One', 'Impact', 'Arial Black', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--texas-rust);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1;
    text-shadow: 2px 2px 0px var(--bg-tan), 3px 3px 8px rgba(0, 0, 0, 0.12);
    position: relative;
}

.hero-subtitle {
    font-family: 'Alfa Slab One', 'Impact', 'Arial Black', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    background: var(--texas-brown);
    padding: 0.65rem 1.3rem;
    display: inline-block;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    border-radius: 4px;
    box-shadow: 0 3px 8px rgba(62, 39, 35, 0.25);
}

.hero-subtitle i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 580px;
}

.hero-listen {
    margin-top: 1.5rem;
}

.hero-listen-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
}

.hero-listen-title i {
    margin-right: 0.5rem;
    color: var(--texas-rust);
}

.hero-podcast-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-podcast-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-white);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Alfa Slab One', 'Impact', 'Arial Black', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.25s ease;
    border: 2px solid var(--bg-sand);
    box-shadow: 0 2px 8px var(--shadow-soft);
}

.hero-podcast-link:hover {
    border-color: var(--texas-rust);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

.hero-podcast-link.apple:hover {
    background: rgba(200, 90, 60, 0.08);
    border-color: var(--texas-rust);
    color: var(--texas-rust);
}

.hero-podcast-link.spotify:hover {
    background: rgba(29, 185, 84, 0.08);
    border-color: #1DB954;
    color: #1DB954;
}

.hero-podcast-link.youtube:hover {
    background: rgba(255, 0, 0, 0.08);
    border-color: #FF0000;
    color: #FF0000;
}

.hero-podcast-link i {
    font-size: 1.2rem;
}

/* Section Styles */
section {
    padding: 2.5rem 0;
    position: relative;
}

.section-title {
    font-family: 'Alfa Slab One', 'Impact', 'Arial Black', sans-serif;
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--texas-burnt);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    text-shadow: 1px 1px 0px var(--bg-tan), 2px 2px 6px rgba(0, 0, 0, 0.1);
}

.section-title i {
    margin-right: 0.75rem;
    font-size: 2.5rem;
    color: var(--texas-rust);
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--texas-rust) 50%, transparent 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--bg-tan);
    padding: 4rem 0;
    margin: 0;
    position: relative;
    scroll-margin-top: 70px;
    border-top: 3px solid var(--texas-rust);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 400;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--texas-rust);
    font-weight: 600;
}

/* Footer Disclaimer */
.disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hosts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.host {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px var(--shadow-soft);
    border-left: 4px solid var(--texas-rust);
    transition: all 0.25s ease;
}

.host:hover {
    box-shadow: 0 5px 15px var(--shadow-medium);
    border-left-color: var(--texas-burnt);
}

.host h3 {
    font-family: 'Alfa Slab One', 'Impact', 'Arial Black', sans-serif;
    font-size: 1.65rem;
    color: var(--texas-burnt);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    white-space: nowrap;
}

.host h3 i {
    margin-right: 0.5rem;
    font-size: 1.4rem;
    color: var(--texas-rust);
}

.host p {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.host-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--texas-burnt);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-top: 0.5rem;
}

.host-social:hover {
    color: var(--texas-rust);
}

.host-social i {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--texas-brown);
    color: var(--text-light);
    padding: 2.5rem 0;
    text-align: center;
    margin-top: 0;
    border-top: 3px solid var(--texas-rust);
    box-shadow: 0 -2px 8px rgba(62, 39, 35, 0.3);
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.footer-subtitle i {
    margin-right: 0.5rem;
    color: var(--texas-rust);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.social-link:hover {
    background: rgba(200, 90, 60, 0.35);
    color: var(--text-light);
    border-color: var(--texas-rust);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-podcast-links {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .nav-right {
        gap: 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .header-social {
        gap: 0.75rem;
        padding-left: 1.5rem;
    }

    .header-social-link {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-podcast-links {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-podcast-link {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .header-social {
        justify-content: center;
        padding-left: 0;
        padding-top: 1rem;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
    }

    .header-social-link {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

/* Smooth Scrolling with Header Offset */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}
