@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;
}

:root{
    --bg-color: #1b1e39;
    --second-bg-color: #f1f1f8; 
    --text-color: #fff;
    --main-color: #4097ac;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}

body{
    color: var(--text-color);
}

section{
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3rem 9%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

header.sticky{
    padding: 20px 5%;
    background: var(--bg-color);
}

.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;
}

.nav-content{
    display: inline-block;
    align-items: center;
}

.nav-content a{
    display: inline-block;
    margin: 0 12px;
    margin-top: 8px;
    transition: all .6s ease;
}

.nav-content a:hover{
    transform: scale(1.1);
}

#menu-icon{
    font-size: 3.6rem;
    color: var(--text-color);
    display: none;
}

/* ================= HOME SECTION ==================== */
.home{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.4) url(../images/FOOTBALL\ BANTER.png);
    background-blend-mode: darken;
    background-size: cover;
    background-position: center;
}

.home-content h3{
    font-size: 4.2rem;
    font-weight: 700;
    margin-top: -120px
}

.home-content span{
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.3;
    color: #19a1c4;
}

.home-content p{
    font-size: 2.2rem;
}

.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: var(--bg-color);
    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{
    height: auto;
    width: 25vw;
    margin-top: 1%;
}

.about-text{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    
}

.about-text p{
    font-size: 2.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: var(--bg-color);
    color: #fff;
    cursor: pointer;
    border: 2px solid var(--bg-color);
}

/* ================= EPISODES SECTION ==================== */
.episodes{
    background-color:var(--second-bg-color);
}

.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), var(--main-color));
    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: var(--bg-color);
    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: var(--bg-color);
    color: #fff;
    cursor: pointer;
    border: 2px solid var(--bg-color);
}

/* ================= COMMUNITY SECTION ==================== */
.community{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url(../images/Banner.png);
    background-size: cover;
    background-position: center;
}

.community-text h2{
    font-size: 4.2rem;
    font-weight: 700;
    margin-top: -120px
}

.text-span{
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.3;
    color: #19a1c4;
}

.community-text p{
    font-size: 2.2rem;
}

.community-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: 60px;
}

.community-btn:hover{
    background-color: #fff;
    color: #1b1e39;
    cursor: pointer;
    border: 2px solid #000;
}

/* ================= EXTRAS SECTION ==================== */
.extras{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url(../images/Banner\ Youtube.png);
    background-size: cover;
    background-position: center;
}

.extras-text h2{
    font-size: 4.2rem;
    font-weight: 700;
    margin-top: -120px
}

.text-span{
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.3;
    color: #19a1c4;
}

.extras-text p{
    font-size: 2.2rem;
}

.extras-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: 60px;
}

.extras-btn:hover{
    background-color: #fff;
    color: #1b1e39;
    cursor: pointer;
    border: 2px solid #000;
}

/* ================= 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: 2.5rem;
    font-weight: 300;
}

.footer .menu a{
    transition: 0.3s;
    font-weight: 500;
    color: #fff;
}

.media-icons a{
    display: inline-block;
    margin: 0 10px;
    margin-top: 8px;
    transition: all .6s ease;
}

.media-icons a:hover{
    transform: scale(1.1);
}

.copyright p{
    text-align: center;
    padding: 18px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: #1b1e39;
}