/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #b8885a;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --bg-light: #fafafa;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    transition: color 0.3s;
}

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

.btn-contact {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-contact:hover {
    background-color: #a07648;
}

/* Hero Section */
.hero {
    padding: 80px 0 0 0;
    background: linear-gradient(135deg, #fff 0%, var(--bg-light) 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 400;
}

.hero-image {
    max-width: 100%;
    width: 100%;
    border-radius: 20px;
    margin: 0 auto;
    display: block;
}

/* Episode Preview */
.episode-preview {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 30px;
    margin: 50px 0 30px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.preview-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.preview-date {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.preview-description {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.preview-player {
    width: 100%;
    margin-top: 10px;
}

/* Subscribe Links */
.subscribe-links {
    margin-top: 50px;
    padding-bottom: 60px;
    text-align: center;
}

.subscribe-links h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.subscribe-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.subscribe-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s;
    background: white;
}

.subscribe-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.subscribe-btn svg {
    width: 20px;
    height: 20px;
}

/* Episodes Section */
.episodes {
    padding: 80px 0;
}

.episodes h2 {
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.episode-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.episode-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.episode-player {
    width: 100%;
    margin-top: 15px;
}

.episode-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #fff 0%, #faf7f3 100%);
}

.featured-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.episode-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.episode-date {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.episode-description {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.episode-description p {
    margin-bottom: 10px;
}


.loading {
    text-align: center;
    padding: 40px;
    color: var(--text-gray);
    font-size: 18px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    position: relative;
}

.close {
    color: #aaa;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: var(--text-dark);
}

#modal-title {
    font-size: 32px;
    margin-bottom: 10px;
}

#modal-date {
    color: var(--text-gray);
    margin-bottom: 20px;
}

#modal-description {
    margin-bottom: 30px;
    line-height: 1.8;
}

#modal-player {
    width: 100%;
    margin-top: 20px;
}

/* Footer */
footer {
    background-color: var(--bg-light);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
}

footer p {
    color: var(--text-gray);
}

/* About Page */
.about-hero {
    padding: 80px 0 40px 0;
}

.about-hero h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-bio {
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero {
        padding: 60px 0 0 0;
    }

    .subscribe-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .episodes-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .nav-links {
        gap: 15px;
    }

    .logo {
        font-size: 18px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .btn-contact {
        padding: 8px 16px;
    }
}
