@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}

body {
    background: #fff;
    color: #000;
}

/* community-header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 10%;
    background: #1b1e39;
    transition: all .6s ease;
}

/* episode-navlist */
.navlist {
    display: flex;
    list-style: none;
}

.navlist a {
    display: inline-block;
    font-size: 17px;
    color: #fff;
    margin: 0 30px;
    padding: 2px 0;
    border-bottom: 2px solid transparent;
    transition: all .6s ease;
}

.navlist a:hover {
    color: #fff;
    border-bottom: 2px solid #fff;
}

#menu-icon {
    font-size: 32px;
    z-index: 10001;
    cursor: pointer;
    margin-left: 10px;
    display: none;
    color: #fff;
}

.nav-content {
    display: flex;
    align-items: center;
}

.nav-content a {
    display: inline-block;
    margin: 0 12px;
    margin-top: 8px;
    transition: all .6s ease;
}

section {
    padding: 80px 10% 80px;
}

.home {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.7) url(../images/Banner\ Youtube.png);
    background-size: cover;
    background-blend-mode: darken;
    background-position: center;
}

.home {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-text {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    opacity: 0;
    transform: translateY(25px);
    animation: floatUp 1.5s ease-out forwards;
}

.text-span {
    color: #4097ac;
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    align-items: center;
    justify-content: center;
    padding: 11px 40px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all .6s ease;
    margin-top: 40px;
}

.btn:hover {
    background-color: #fff;
    color: #000;
    cursor: pointer;
    border: 2px solid;
}


/* ================= ABOUT SECTION ==================== */
.about {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.about h2 {
    text-align: center;
    margin-bottom: 3%;
    font-size: 45px;
    text-transform: capitalize;
    color: #000;
}

.main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about img {
    width: 20vw;
    height: 20vw;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* height: auto;
    width: 25vw;
    margin-top: 1%; */
}

.about-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;

}

.about-text p {
    font-size: 2rem;
    color: #000;
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-btn {
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border: 2px solid #000;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 13px 20px;
    border-radius: 30px;
    transition: .4s;
}

.about-btn:hover {
    background-color: #1b1e39;
    color: #fff;
    cursor: pointer;
    border: 2px solid #000;
}


/* ================= MORE SECTION ==================== */
.more{
    background-color: #f1f1f8;
}

.center-text{
    text-align: center;
    color: #000;
}

.center-text h2{
    font-size: 4.3rem;
    font-weight: 500;
}

.center-text h6{
    font-size: 2.1rem;
    font-weight: 300;
}

.episodes-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 1.8rem;
    margin-top: 4rem;
}

.row{
    position: relative;
    text-align: center;
    cursor: pointer;
}

.row-img{
    overflow: hidden;
}

.row-img img{
    display: block;
    width: 100%;
    transition: transform 0.6s;
    cursor: pointer;   
}

.content-layer{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, .1), #4097ac);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 4rem;
}

.row-img img:hover{
    transform: scale(1.2);
}

.row h5{
    margin-top: 16px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 7px;
    color: #000;
}

.row h6 a{ 
    font-size: 16px;
    font-weight: 600;
    color: #000;
    position: absolute;
    bottom: 105px;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgb(0, 0, 0, 0.8);
    color: #fff;
    transition: opacity 0.5s;
    opacity: 0;
}

.row:hover h6 a{
    opacity: 1;
}

.center-btn{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.episodes-btn{
    display: inline-block;
    align-items: center;
    justify-content: center;
    padding: 11px 40px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all .6s ease;
    margin-top: 60px;
}

.episodes-btn:hover{
    background-color: #1b1e39;
    color: #fff;
    cursor: pointer;
    border: 2px solid #1b1e39;
}

/* ================= FOOTER SECTION ==================== */
footer {
    color: #fff;
    background-color: #1b1e39;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2em;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    gap: 2em;
    align-items: center;
    text-align: center;
}

.footer .menu li {
    display: inline-block;
    margin: 1em;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 300;
}

.footer .menu a {
    transition: 0.3s;
    font-weight: 500;
    color: #fff;
}

.media-icons li {
    display: inline-block;
    margin: 0 10px;
    margin-top: 8px;
    transition: all .6s ease;
}

.copyright p {
    text-align: center;
    padding: 18px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: #1b1e39;
}