/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100..1000&display=swap');

/* Reset */
*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: inherit;
}
ul,
ol,
li {
    list-style: none;
}
img {
    vertical-align: top;
}
html,
body {
    line-height: 2rem;
    letter-spacing: 1;
    font-size: 16px;
    scroll-behavior: smooth;
    height: 100%;
    background-color: #191919;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #FFFFFF;
}

.wrapper {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    z-index: 2;
}

.main {
    flex: 1 1 auto;
}

.container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVIGATION */
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 1.625rem 0;
}

.logo {
    padding: 1rem 0;
}
.header-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.nav {
}
.menu-list {
    display: flex;
    gap: 2.5rem;
}
.list-item {
}
.active {
    color: #118DA8;
}

.header-nav__burger {
    display: none; /* inline-block; */
    cursor: pointer;
}

.header-nav__burger span {
    display: block;
    width: 30px;
    height: 4px;
    background-color: #fff;
    margin-bottom: 6px;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
/* Transform to cross when checkbox is checked */
#nav-toggle:checked + .header-nav__burger span:nth-child(1) {
    transform: rotate(45deg) translate(0, 13px);
}

#nav-toggle:checked + .header-nav__burger span:nth-child(2) {
    opacity: 0; /* Hide the middle line */
}

#nav-toggle:checked + .header-nav__burger span:nth-child(3) {
    transform: rotate(-45deg) translate(0, -13px);
}

#nav-toggle {
    display: none;
}

/* Show the menu when checkbox is checked */


@media (max-width: 690px) {
    .header-nav__burger {
        display: inline-block;
        z-index: 100;
    }

    .header-nav__burger span {
        display: block;
        width: 30px;
        height: 4px;
        background-color: #fff;
        margin-bottom: 6px;
        border-radius: 2px;
    }

    .nav {
        display: none;
    }

    #nav-toggle:checked + .header-nav__burger + .nav {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        right: 0;
        background-color: #000000;
        height: 100%;
        width: 100%;
        overflow: hidden;
    }

    #nav-toggle:checked + body {
        overflow: hidden;
    }

    .menu-list {
        flex-direction: column;
        align-items: center;
    }

}


/* hERO  */
.hero {
    display: flex;
    align-items: center;

    gap: 3.75rem;
    margin: 2.5rem 0 0 0;
}
.hero-img {
}

.hero-img img {
    /* width: 100%; */
    height: auto;
}
.hero-content {
}
h1, 
.hero-content__heading {
    font-size: 4.375rem;
    letter-spacing: 0.2rem;
    line-height: 5.5rem;
    font-weight: 400;

    margin-bottom: 5.625rem;
}

.hero-content__heading b {
    font-size: 5rem;
}

.hero-content__heading span {
    font-size: 4.69rem;
}

.hero-content__social {
}
.hero-social___text {
    line-height: 1.5re;
    margin-bottom: 1rem;
}
.hero-social__media {
    display: flex;
    gap: 1rem;
}
.hero-social__items {
}
.hero-social__links {
}




.episode {
    margin: 6.25rem 0;
}
.episode-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4.125rem;
}
.episode-heading {
    margin-bottom: 0;
}
.btn {
    background-color: #118DA8;
    padding: 0.8rem 1rem;
    border-radius: 0.375rem;
    line-height: 1.6rem;
    letter-spacing: 0;
}
.episode-cards {
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}
.episode-cards__item {
    display: flex;
    gap: 3.2rem;

    background-color: #000000;

    padding: 2.5rem;
    border-radius: 2rem;
}
.episode-item__img img {
    max-width: 390px;
}
.episode-item__content {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 0.5rem;

}
h2,
.episode-content__heading {
    font-size: 4rem;
    line-height: 4.375rem;
    font-weight: 400;
} 
.episode-content__hashtag {
    background-color: #191919;
    padding: 0 1rem;
    border-radius: 0.375rem;
}
.episode-content__number {
    color: #118DA8;
}
.episode-content__text {
    font-size: 1.375rem;
    opacity: 0.7;
}

.host {
    display: flex;
    flex-direction: column;

    margin-bottom: 12.5rem;
}
.host-about {
    display: flex;
    align-items: center;

    justify-content: space-between;
}
.about-content {
    margin-right: 3.75rem;
}
.about-content__arrow {
    display: inline-block;

    margin-bottom: 1.1rem;
    padding: 2rem 1rem;

    background-color: #118DA8;
    border-radius: 50%;
}
.about-content__hashtag {
    color: #118DA8;
}
.about-content__heading {
}
.about-content__text {
}
.about-image {
}

.about-content__texting {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}


.host-subscribe {
    display: flex;
    margin-top: 12.5rem;
    padding: 6rem;

    border-radius: 2rem;

    background-color: #000000;
}
.about-subscribe__content {
}
.about-subscribe__hashtag {
    color: #118DA8;
}
.about-subscribe__heading {
    word-wrap: break-word;
    font-size: 4.5rem;
}

.about-subscribe__heading span {
    display: inline-block;

}

.about-subscribe__form {
    display: flex;
    flex-direction: column;
    align-items: start;

    gap: 1.3rem;
}

.about-subscribe__form input[type="text"] {
    width: 522px;
    height: 82px;
    color: #FFFFFF;
    font-size: 1.5rem;
    padding: 1.1rem;

    background-color: #191919;
}

.about-subscribe__form input[type="text"]::placeholder {

    font-size: 1.5rem;
}

.about-subscribe__form input[type="button"] {
    display: inline-block;
    width: 90px;
    height: 48px;

    color: #FFFFFF;

    cursor: pointer;

    transition: opacity ease-in-out .2s;
}

.about-subscribe__form input[type="button"]:hover {
    opacity: .7;
}



.review {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));

    gap: 1rem;
    margin-bottom: 6.25rem;
}


@media (max-width: 900px) {
    .review {
        grid-template-columns: repeat(2, minmax(250px, 1fr)); /* Two columns on smaller screens */
    }
}

@media (max-width: 600px) {
    .review {
        grid-template-columns: 1fr; /* One column on very small screens */
    }
}

.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    background-color: #000000;

    gap: 1.2rem;
    border-radius: 2rem;
    padding: 3.45rem;
}
.review-card__rating {
}
.review-card__text {
    font-size: 2.25rem;
    line-height: 2.75rem;
}
.review-card__author {
    font-size: 1.5rem;
    opacity: 0.7;
}


.footer {
    margin: 6.25rem auto;

    display: flex;
    justify-content: space-between;
}

.footer-logo {
}
.footer-logo__social {
    display: flex;
    gap: 0.5rem;

    margin-top: 1.5rem;
}
.footer-social__item {
}
.footer-social__link {
}
.footer-nav {
    display: flex;
    gap: 7.25rem;
}
.footer-nav__menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-menu__item {
}
.footer-menu__link {
}
.hero-social__media {
}
.hero-social__items {
}
.hero-social__links {
}

.footer-right {
    display: flex;
    gap: 6.25rem;

    padding-right: 13.75rem;
}



@media (max-width:1080px) {
    .hero-img img {
        width: 100%;
        height: auto;
    }
    
}



@media (max-width:1176px) {
    html {
        font-size: 14px;
    }

    h2,
    .episode-content__heading {
        font-size: 3.5rem;
        line-height: 3.5rem;
        font-weight: 400;
    } 
    .episode-content__text {
        font-size: 1rem;
    }

    .episode-item__img {
        text-align: center;
    }
    
    .episode-item__img img {
        width: 100%;
        height: auto;
    }

    .about-image img {
        width: 100%;
        height: auto;
    }

    .host {
        margin-top: 8rem;
    }

    .host-subscribe {
        margin-top: 8rem;
    }

    .host-subscribe {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-subscribe__heading {
        line-height: 5rem;
    }

    .about-subscribe__hashtag {
        margin-bottom: .7rem;
    }

    .about-subscribe__heading span {
        font-size: 4rem;
    }

    .about-subscribe__form input[type="text"] {
        max-width: 100%;
    }

    .footer-right {
        padding-right: 0;
        gap: 2.5rem;
    }
    
}

@media (max-width:852px) {
    * {
        font-size: 13px;
    }
    .hero {
        flex-direction: column;
        gap: 2.5rem;
    }

    .hero-content__heading {
        margin-bottom: 3.5rem;
    }
    .episode-header {
        flex-direction: column;
        align-items: start;
        margin-bottom: 3.5rem;
    }
    .episode-cards__item {
        flex-direction: column;
    }
    .episode-cards__item {
        gap: 2rem;
    }
    .episode-heading {
        font-size: 3.5rem;
    }

    .about-content {
        margin-right: 2rem;
    }

    .host-about {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    .about-content__heading {
        margin-bottom: 1rem;
    }

    .about-content__texting {
        gap: 0;
    }

    .footer-right {
        flex-direction: column;
    }
    
    .footer-nav {
        gap: 4rem;
    }
    
}