/*====================================================
        BEGINNER COURSES VERSION 2
        Piano Tutorials With Chris Ebute
=====================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

:root{

    --gold:#FFD54A;
    --gold-dark:#d4a800;

    --blue:#2563eb;

    --dark:#0b0b0b;
    --dark2:#141414;
    --dark3:#1d1d1d;

    --white:#ffffff;
    --text:#d9d9d9;

    --shadow:
    0 15px 40px rgba(0,0,0,.25);

}

html{

    scroll-behavior:smooth;

}

body{

    background:#080808;
    color:white;
    overflow-x:hidden;

}



/*==============================================
            HERO SECTION
===============================================*/


.hero{

    position:relative;

    background:
    linear-gradient(
        rgba(0,0,0,.70),
        rgba(0,0,0,.70)
    ),
    url("image/backgroundimg.png");

    background-size:cover;
    background-position:center;

   

}

/*.hero{

    min-height:75vh;

    position:relative;

    background:
    linear-gradient(rgba(0,0,0,.70),
    rgba(0,0,0,.70)),
    url("image/backgroundimg.png");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:160px 8% 100px;

}*/


/*==============================================
            NAVBAR
===============================================*/

.navbar{

    position:absolute;

    top:0;
    left:0;

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 8%;

    background:rgba(0,0,0,.35);

    backdrop-filter:blur(10px);

    z-index:999;

}

.logo img{

    width:150px;

}

.navbar ul{

    display:flex;

    list-style:none;

    gap:35px;

}

.navbar ul li{

    list-style:none;

}

.navbar a{

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.navbar a:hover{

    color:var(--gold);

}



/*==============================================
            HERO CONTENT
===============================================*/

/*.hero-content{

    max-width:900px;

    padding:120px 30px 40px;

    margin:auto;

}

.course-label{

    display:inline-block;

    background:var(--gold);

    color:#111;

    padding:12px 28px;

    border-radius:40px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:72px;

    line-height:1.1;

    margin-bottom:30px;

}

.hero-content p{

    font-size:22px;

    line-height:1.8;

    color:#dddddd;

    margin-bottom:45px;

}



/*==============================================
            SEARCH
===============================================*/

/*.search-box{

    width:100%;

    max-width:700px;

    margin:auto;

    display:flex;

}

.search-box input{

    width:100%;

    padding:20px;

    border:none;

    outline:none;

    font-size:18px;

    border-radius:50px 0 0 50px;

}

.search-box button{

    border:none;

    padding:0 35px;

    background:var(--gold);

    cursor:pointer;

    border-radius:0 50px 50px 0;

    font-size:20px;

    transition:.3s;

}

.search-box button:hover{

    background:var(--gold-dark);

}



/*==============================================
        STATISTICS
===============================================*/

/*.statistics{

    margin-top:40px;

    padding:90px 8%;


    background:#101010;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat{

    background:var(--dark3);

    border-radius:22px;

    padding:40px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.stat:hover{

    transform:translateY(-8px);

}

.stat h2{

    font-size:52px;

    color:var(--gold);

    margin-bottom:12px;

}

.stat p{

    font-size:18px;

    color:#cccccc;

}



/*==============================================
        PROGRESS SECTION
===============================================*/

.progress-section{

    padding:0px 8%;

    background:#080808;

}

.progress-card{

    max-width:800px;

    margin:auto;

    background:linear-gradient(
    135deg,
    #1a1a1a,
    #101010);

    padding:10px;

    border-radius:30px;

    text-align:center;

    box-shadow:var(--shadow);

}

.progress-card h2{

    font-size:42px;

    margin-bottom:15px;

}

.progress-card p{

    color:#bbbbbb;

    margin-bottom:35px;

}

.progress-bar{

    width:100%;

    height:16px;

    background:#2b2b2b;

    border-radius:50px;

    overflow:hidden;

    margin-bottom:20px;

}

.progress-fill{

    width:0%;

    height:100%;

    background:linear-gradient(
    90deg,
    var(--gold),
    #ffef9b);

    border-radius:50px;

}

.progress-card span{

    display:block;

    margin-bottom:35px;

    color:var(--gold);

    font-weight:bold;

}

.resume-btn{

    display:inline-block;

    padding:18px 45px;

    border-radius:50px;

    text-decoration:none;

    color:#111;

    font-weight:bold;

    background:linear-gradient(
    135deg,
    var(--gold),
    var(--gold-dark));

    transition:.35s;

}

.resume-btn:hover{

    transform:translateY(-5px);

    box-shadow:

    0 18px 35px rgba(255,213,74,.30);

}

/*====================================================
            MODULE SECTION
=====================================================*/

.module{

    padding:90px 8%;

}

.module:nth-child(even){

    background:#0d0d0d;

}

.module-heading{

    text-align:center;

    margin-bottom:60px;

}

.module-heading h2{

    color:var(--gold);

    font-size:20px;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:10px;

}

.module-heading h3{

    font-size:48px;

    margin-bottom:20px;

}

.module-heading p{

    max-width:750px;

    margin:auto;

    color:#bdbdbd;

    font-size:18px;

    line-height:1.8;

}



/*====================================================
            COURSE GRID
=====================================================*/

.course-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}



/*====================================================
            COURSE CARD
=====================================================*/

.course-card{
    position: relative;

    background:var(--dark2);

    border-radius:22px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

    display:flex;

    flex-direction:column;

}

.course-card:hover{

    transform:translateY(-12px);

}



/*====================================================
            COURSE IMAGE
=====================================================*/

.image-box{

    position:relative;

    width:100%;

    aspect-ratio:16/9;

    overflow:hidden;

    background:#111;

}
.image-box img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    display:block;

    transition:.45s;

}

.course-card{

    background:var(--dark2);

    border-radius:22px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

    display:flex;

    flex-direction:column;

    height:100%;

}



/*====================================================
            COURSE OVERLAY
=====================================================*/

.overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.55);

    opacity:0;

    transition:.35s;

}

.course-card:hover .overlay{

    opacity:1;

}

.overlay span{

    background:linear-gradient(
    135deg,
    var(--gold),
    var(--gold-dark));

    color:#111;

    padding:15px 35px;

    border-radius:40px;

    font-weight:bold;

    font-size:18px;

}



/*====================================================
            BEGINNER TAG
=====================================================*/

.tag{

    position:absolute;

    top:18px;

    left:18px;

    background:#16a34a;

    color:white;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

}



/*====================================================
            COURSE CONTENT
=====================================================*/

.course-content{

    display:flex;

    flex-direction:column;

    flex:1;

    padding:28px;

}

.course-btn{

    margin-top:auto;

}
.course-content h3{

    font-size:28px;

    margin-bottom:15px;

    line-height:1.3;

}



/*====================================================
            STARS
=====================================================*/

.stars{

    color:gold;

    font-size:18px;

    margin-bottom:18px;

}

.stars span{

    color:#cccccc;

    font-size:15px;

}



/*====================================================
            DESCRIPTION
=====================================================*/

.course-content p{

    color:#cfcfcf;

    line-height:1.9;

    margin-bottom:25px;

    flex:1;

}



/*====================================================
            DETAILS
=====================================================*/

.details{

    display:flex;

    justify-content:space-between;

    margin-bottom:22px;

    color:#bdbdbd;

    font-size:15px;

}



/*====================================================
            RESOURCES
=====================================================*/

.resources{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:28px;

}

.resources span{

    background:#252525;

    color:#e5e5e5;

    padding:8px 14px;

    border-radius:25px;

    font-size:14px;

}



/*====================================================
            BUTTON
=====================================================*/

.course-btn{

    display:block;

    text-align:center;

    padding:16px;

    border-radius:40px;

    background:linear-gradient(
    135deg,
    var(--gold),
    var(--gold-dark));

    color:#111;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.course-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(255,213,74,.30);

}



/*====================================================
            IMAGE LINK
=====================================================*/

.image-box a{

    display:block;

    width:100%;

    height:100%;

    position:relative;

}



/*====================================================
            PREMIUM EFFECT
=====================================================*/

.course-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:4px;

    background:linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent);

    transition:.5s;

}

.course-card:hover::before{

    left:100%;

}

/*====================================================
            DOWNLOAD CENTRE
=====================================================*/

.downloads{

    padding:100px 8%;

    background:#0b0b0b;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:48px;

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#bdbdbd;

    line-height:1.8;

}

.download-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.download-card{

    background:#171717;

    padding:45px;

    text-align:center;

    border-radius:22px;

    transition:.35s;

    box-shadow:var(--shadow);

}

.download-card:hover{

    transform:translateY(-10px);

}

.download-card i{

    font-size:60px;

    color:var(--gold);

    margin-bottom:25px;

}

.download-card h3{

    font-size:28px;

    margin-bottom:18px;

}

.download-card p{

    color:#cfcfcf;

    line-height:1.8;

    margin-bottom:30px;

}

.download-btn{

    display:inline-block;

    padding:16px 40px;

    border-radius:40px;

    background:linear-gradient(
    135deg,
    var(--gold),
    var(--gold-dark));

    color:#111;

    text-decoration:none;

    font-weight:bold;

    transition:.35s;

}

.download-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(255,213,74,.30);

}



/*====================================================
            WHY LEARN WITH US
=====================================================*/

.why-us{

    padding:110px 8%;

    background:#101010;

}

.benefits-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:35px;

}

.benefit-card{

    background:#171717;

    padding:45px 35px;

    border-radius:22px;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow);

}

.benefit-card:hover{

    transform:translateY(-10px);

}

.benefit-card i{

    font-size:55px;

    color:var(--gold);

    margin-bottom:25px;

}

.benefit-card h3{

    font-size:26px;

    margin-bottom:18px;

}

.benefit-card p{

    color:#cfcfcf;

    line-height:1.8;

}



/*====================================================
            MEMBERSHIP CTA
=====================================================*/

.membership-cta{

    padding:120px 8%;

    background:linear-gradient(
    135deg,
    #111,
    #1b1b1b);

}

.cta-content{

    max-width:950px;

    margin:auto;

    text-align:center;

}

.cta-content h2{

    font-size:54px;

    margin-bottom:25px;

}

.cta-content p{

    color:#d5d5d5;

    font-size:20px;

    line-height:1.9;

    margin-bottom:45px;

}

.cta-button{

    display:inline-block;

    padding:20px 50px;

    border-radius:50px;

    background:linear-gradient(
    135deg,
    var(--gold),
    var(--gold-dark));

    color:#111;

    text-decoration:none;

    font-weight:700;

    font-size:18px;

    transition:.35s;

}

.cta-button:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 40px rgba(255,213,74,.35);

}



/*====================================================
            NEWSLETTER
=====================================================*/

.newsletter{

    padding:100px 8%;

    background:#0b0b0b;

}

.newsletter-box{

    max-width:900px;

    margin:auto;

    background:#171717;

    padding:70px;

    border-radius:30px;

    text-align:center;

    box-shadow:var(--shadow);

}

.newsletter-box h2{

    font-size:46px;

    margin-bottom:20px;

}

.newsletter-box p{

    color:#cfcfcf;

    margin-bottom:35px;

}

.newsletter form{

    display:flex;

    justify-content:center;

    align-items:center;

}

.newsletter input{

    width:65%;

    padding:20px;

    border:none;

    outline:none;

    font-size:17px;

    border-radius:50px 0 0 50px;

}

.newsletter button{

    padding:20px 40px;

    border:none;

    background:var(--gold);

    color:#111;

    font-weight:700;

    cursor:pointer;

    border-radius:0 50px 50px 0;

    transition:.35s;

}

.newsletter button:hover{

    background:var(--gold-dark);

}



/*====================================================
                    FOOTER
=====================================================*/

footer{

    background:#050505;

    padding:90px 8% 30px;

}

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    width:180px;

    margin-bottom:25px;

}

.footer-column h3{

    margin-bottom:25px;

    color:var(--gold);

}

.footer-column p{

    color:#bdbdbd;

    line-height:1.8;

}

.footer-column ul{

    list-style:none;

}

.footer-column ul li{

    margin-bottom:15px;

}

.footer-column ul li a{

    color:#d8d8d8;

    text-decoration:none;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:var(--gold);

    padding-left:8px;

}

.social-links{

    display:flex;

    gap:15px;

}

.social-links a{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#1c1c1c;

    border-radius:50%;

    color:white;

    font-size:20px;

    transition:.35s;

}

.social-links a:hover{

    background:var(--gold);

    color:#111;

    transform:translateY(-5px);

}

.footer-bottom{

    margin-top:70px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

}

.footer-bottom p{

    color:#888;

}


/*==============================================
            HERO SECTION
===============================================*/

.hero{

    position:relative;

    background:
    linear-gradient(rgba(0,0,0,.72),
    rgba(0,0,0,.72)),
    url("image/backgroundimg.png");

    background-size:cover;
    background-position:center;

    padding:130px 8% 70px;

}

.hero-content{

    max-width:900px;

    margin:0 auto;

    text-align:center;

}

.hero-content h1{

    font-size:58px;

    line-height:1.15;

    margin:20px 0;

}

.hero-content p{

    font-size:18px;

    max-width:760px;

    margin:0 auto 30px;

    line-height:1.8;

}

/*====================================================
        RESPONSIVE DESIGN
=====================================================*/

@media (max-width:1200px){

.hero-content h1{

font-size:58px;

}

.statistics{

grid-template-columns:repeat(2,1fr);

}

.footer-container{

grid-template-columns:repeat(2,1fr);

}

}



@media (max-width:992px){

.navbar{

flex-direction:column;

padding:20px;

}

.navbar ul{

margin-top:20px;

flex-wrap:wrap;

justify-content:center;

gap:20px;

}

.hero{

padding:160px 20px 100px;

}

.hero-content h1{

font-size:48px;

}

.hero-content p{

font-size:18px;

}

.search-box{

    width:100%;

    max-width:650px;

    margin:25px auto 0;

}
.search-box input{

font-size:16px;

}

.module-heading h3{

font-size:40px;

}

.section-title h2{

font-size:40px;

}

.cta-content h2{

font-size:42px;

}

.newsletter-box{

padding:50px;

}

}



@media (max-width:768px){

.statistics{

grid-template-columns:1fr;

}

.course-grid{

grid-template-columns:1fr;

}

.download-grid{

grid-template-columns:1fr;

}

.benefits-grid{

grid-template-columns:1fr;

}

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.social-links{

justify-content:center;

}

.newsletter form{

flex-direction:column;

gap:15px;

}

.newsletter input{

width:100%;

border-radius:50px;

}

.newsletter button{

width:100%;

border-radius:50px;

}

.search-box{

flex-direction:column;

gap:15px;

}

.search-box input{

border-radius:50px;

}

.search-box button{

width:100%;

border-radius:50px;

padding:18px;

}

.progress-card{

padding:40px 25px;

}

.cta-content{

padding:0 15px;

}

}



@media (max-width:576px){

.hero-content h1{

font-size:36px;

line-height:1.2;

}

.hero-content p{

font-size:16px;

}

.course-label{

font-size:13px;

padding:10px 20px;

}

.module-heading h3{

font-size:30px;

}

.module-heading p{

font-size:16px;

}

.course-content{

padding:22px;

}

.course-content h3{

font-size:23px;

}

.details{

flex-direction:column;

gap:10px;

}

.resources{

justify-content:center;

}

.download-card{

padding:35px 25px;

}

.newsletter-box{

padding:35px 20px;

}

.cta-content h2{

font-size:32px;

}

.cta-content p{

font-size:17px;

}

.footer-logo{

width:140px;

}

}



/*====================================================
        SMOOTH FADE ANIMATION
=====================================================*/

.fade-up{

opacity:0;

transform:translateY(40px);

transition:all .8s ease;

}

.fade-up.show{

opacity:1;

transform:translateY(0);

}



/*====================================================
        HOVER ANIMATIONS
=====================================================*/

.course-card,
.download-card,
.benefit-card,
.stat{

transition:
transform .35s ease,
box-shadow .35s ease;

}

.course-card:hover,
.download-card:hover,
.benefit-card:hover,
.stat:hover{

box-shadow:

0 25px 50px rgba(0,0,0,.35);

}



/*====================================================
        IMAGE EFFECT
=====================================================*/

.image-box img{

transition:
transform .45s ease,
filter .45s ease;

}

.course-card:hover img{

filter:brightness(.8);

}



/*====================================================
        BUTTON EFFECTS
=====================================================*/

.course-btn,
.download-btn,
.resume-btn,
.cta-button{

transition:all .35s ease;

}

.course-btn:hover,
.download-btn:hover,
.resume-btn:hover,
.cta-button:hover{

transform:translateY(-5px);

}



/*====================================================
        CUSTOM SCROLLBAR
=====================================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#0f0f0f;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(

180deg,

var(--gold),

var(--gold-dark)

);

border-radius:50px;

}



/*====================================================
        TEXT SELECTION
=====================================================*/

::selection{

background:var(--gold);

color:#111;

}



/*====================================================
        SMALL UTILITIES
=====================================================*/

img{

max-width:100%;

display:block;

}

a{

transition:.3s;

}

section{

position:relative;

overflow:hidden;

}



/*====================================================
        PREMIUM GOLD LINE
=====================================================*/

.section-title::after{

content:"";

display:block;

width:90px;

height:4px;

background:var(--gold);

margin:18px auto 0;

border-radius:30px;

}



/*====================================================
        GLASS EFFECT
=====================================================*/

.progress-card,
.newsletter-box,
.cta-content{

backdrop-filter:blur(12px);

}



/*====================================================
        FINAL POLISH
=====================================================*/

body{

line-height:1.6;

letter-spacing:.3px;

}

h1,h2,h3{

font-weight:700;

}

p{

font-weight:400;

}