/* Color Palette from Logo */
:root {
    --primary-red: #E74C3C;
    --secondary-red: #C0392B;
    --light-red: #EC7063;
    --dark-red: #A93226;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f5f5f5;
    --bg-darker: #2c2c2c;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.3rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--light-red) 100%);
    color: var(--text-light);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--text-light);
    color: var(--primary-red);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-red);
}

.btn-small {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    background: var(--primary-red);
    color: var(--text-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-small:hover {
    background: var(--secondary-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: var(--text-light);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.podcast-meta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.genre,
.podcast-type {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--light-red) 100%);
    color: var(--text-light);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hosts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.host-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    width: 100%;
}

.host-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.15);
}

.host-card:focus-visible {
    outline: 3px solid rgba(231, 76, 60, 0.5);
    outline-offset: 4px;
}

.host-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--light-red) 100%);
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.host-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    display: block;
}

.host-card h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.host-card p {
    color: #666;
    font-size: 0.95rem;
}

.host-card--trigger {
    background: var(--bg-light);
    border: 2px solid transparent;
    font-family: inherit;
    text-align: center;
}

.host-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 200;
    padding: 20px;
}

.host-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.host-modal__dialog {
    background: var(--text-light);
    color: var(--text-dark);
    width: min(90vw, 560px);
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.host-modal.is-open .host-modal__dialog {
    transform: translateY(0);
}

.host-modal__role {
    color: var(--primary-red);
    font-weight: 700;
    margin-top: 0.5rem;
}

.host-modal__bio {
    margin-top: 1rem;
    line-height: 1.7;
}

.host-modal__credit {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.host-modal__credit a {
    color: var(--primary-red);
    text-decoration: underline;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 1.1rem;
    cursor: pointer;
}

.modal-close:hover {
    background: #e9e9e9;
}

body.modal-open {
    overflow: hidden;
}

/* Episodes Section */
.episodes {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.episodes h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-red);
}

.episodes-intro {
    text-align: center;
    max-width: 760px;
    margin: -1.5rem auto 2.5rem;
    color: #555;
    font-size: 1.05rem;
}

.apple-podcasts-embed {
    display: flex;
    justify-content: center;
}

.apple-podcasts-embed iframe {
    width: 100%;
    max-width: 660px;
    border: 0;
    background: transparent;
}

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

.episode-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--primary-red);
}

.episode-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--light-red), transparent);
}

.episode-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.2);
}

.episode-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--light-red) 100%);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.episode-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.episode-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.episode-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #888;
}

.episode-meta span {
    display: flex;
    align-items: center;
}

/* Subscribe Section */
.subscribe {
    background: linear-gradient(135deg, var(--secondary-red) 0%, var(--dark-red) 100%);
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
}

.subscribe h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subscribe > .container > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.platform-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.platform-item a {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.platform-item a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.platform-btn {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
}

.platform-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.platform-icon {
    font-size: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: var(--text-light);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.contact .cta-buttons {
    justify-content: center;
    margin-top: 2rem;
}

.contact .btn-primary {
    background-color: var(--primary-red);
    color: var(--text-light);
}

.contact .btn-secondary {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.contact-email {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
}

.contact-email a {
    color: var(--primary-red);
    font-weight: 600;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-red);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

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

.social-links {
    text-align: center;
    margin-top: 3rem;
}

.social-links h3 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.socials {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--light-red) 100%);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--bg-darker) 100%);
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
}

footer p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

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

    .nav-links {
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .about h2,
    .episodes h2,
    .subscribe h2,
    .contact h2 {
        font-size: 2rem;
    }

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

    .platform-links {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .socials {
        gap: 0.8rem;
    }

    .social-icon {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-logo {
        width: 80px;
        height: 80px;
    }

    .platform-links {
        grid-template-columns: 1fr;
    }

    .about,
    .episodes,
    .subscribe,
    .contact {
        padding: 40px 20px;
    }

    .podcast-meta {
        flex-direction: column;
        align-items: center;
    }
}
