


/* Hide desktop navigation on mobile */
.nav-menu {
    display: none;
}


/* Show hamburger menu icon */
.hamburger {
    display: block;
    cursor: pointer;
}


.hamburger img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}


/* Mobile hero adjustments */
.hero-section {
    padding: 60px 0 80px;
    min-height: auto;
}


.podcast-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto 32px;
}


.new-badge {
   
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    font-size: 12px;
}


.hero-title {
    font-size: 36px;
    margin-bottom: 12px;
}


.hero-description {
    font-size: 16px;
    margin-bottom: 28px;
}


/* Stack buttons vertically */
.hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
}


.btn-primary,
.btn-secondary {
    width: 100%;
    max-width: 320px;
}


/* About section mobile */
.about-section {
    padding: 60px 0;
}


.section-title {
    font-size: 32px;
    margin-bottom: 16px;
}


.about-text,
.about-text-sub {
    font-size: 15px;
    margin-bottom: 12px;
}


/* Statistics - 2x2 grid on mobile */
.stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}


.stat-number {
    font-size: 36px;
}


.stat-label {
    font-size: 11px;
}


/* Why choose section mobile */
.why-choose-section {
    padding: 60px 0;
}


/* Single column for features on mobile */
.features-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 20px !important;
}


.features-grid .feature-card {
    grid-column: auto !important;
    grid-row: auto !important;
}


.feature-card {
    padding: 28px 20px;
}


.feature-icon {
    width: 50px;
    height: 50px;
}


.feature-title {
    font-size: 18px;
}


.feature-desc {
    font-size: 14px;
}


/* Episodes section mobile */
.episodes-section {
    padding: 60px 0;
}


/* Single column for episodes */
.episodes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
}


.episode-title {
    font-size: 16px;
}


.episode-desc {
    font-size: 14px;
}


/* Host section mobile - stack vertically */
.host-section {
    padding: 60px 0;
}


.host-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}


.host-image {
    flex: none;
    max-width: 100%;
}


.host-name {
    font-size: 24px;
    text-align: center;
}


.host-bio {
    font-size: 15px;
    text-align: center;
}


.social-links {
    justify-content: center;
    gap: 12px;
}


.social-icon {
    width: 40px;
    height: 40px;
}


.social-icon img {
    width: 18px;
    height: 18px;
}


/* Footer mobile */
.footer {
    padding: 60px 0 32px;
}


.footer-logo {
    font-size: 28px;
}


.footer-platforms {
    flex-direction: column;
    gap: 16px;
    align-items: center;
}


.platform-link {
    font-size: 14px;
}


.footer-copyright {
    padding-top: 24px;
}


.footer-copyright p {
    font-size: 13px;
}


/* Mobile-specific optimizations */
body {
    font-size: 15px;
}


/* Increase tap target sizes */
.nav-link,
.btn-subscribe,
.social-icon,
.platform-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* Disable hover effects on mobile */
@media (hover: none) {
    .feature-card:hover,
    .episode-card:hover,
    .stat-card:hover {
        transform: none;
    }
}


/* Reduce animation complexity */
.soundwave-bg {
    animation: none;
}


.podcast-circle {
    animation-duration: 6s;
}





