/*==================================================
            RESET
==================================================*/

*{

margin:0;

padding:0;

box-sizing:border-box;

}

:root{

--gold:#FFD54A;

--gold-dark:#F2C230;

--blue:#2563EB;

--dark:#090909;

--card:#181818;

--card2:#222;

--text:#d5d5d5;

--shadow:0 20px 45px rgba(0,0,0,.35);

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

background:var(--dark);

color:white;

overflow-x:hidden;

}

a{

text-decoration:none;

color:inherit;

}

img{

display:block;

max-width:100%;

}

/*==================================================
        DASHBOARD LAYOUT
==================================================*/

body{

display:flex;

min-height:100vh;

}

.main-content{

margin-left:280px;

width:calc(100% - 280px);

padding:40px;

}

/*==================================================
        SIDEBAR
==================================================*/

.sidebar{

position:fixed;

left:0;

top:0;

width:280px;

height:100vh;

background:#050505;

padding:35px;

display:flex;

flex-direction:column;

box-shadow:var(--shadow);

}

.logo{

margin-bottom:45px;

text-align:center;

}

.logo img{

width:180px;

margin:auto;

}

.sidebar ul{

list-style:none;

}

.sidebar li{

margin-bottom:12px;

}

.sidebar a{

display:flex;

align-items:center;

gap:18px;

padding:18px;

border-radius:15px;

transition:.35s;

font-weight:600;

}

.sidebar a:hover,

.sidebar .active a{

background:var(--gold);

color:#111;

}

.sidebar i{

width:25px;

text-align:center;

font-size:18px;

}

/*==================================================
        TOPBAR
==================================================*/

.topbar{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:45px;

}

.topbar h1{

font-size:42px;

margin-bottom:10px;

}

.topbar p{

color:#bbbbbb;

}

.profile img{

width:70px;

height:70px;

border-radius:50%;

object-fit:cover;

border:3px solid var(--gold);

}

/*==================================================
        DAILY CHALLENGE
==================================================*/

.daily-challenge{

display:grid;

grid-template-columns:2fr 1fr;

gap:40px;

background:linear-gradient(

135deg,

#1c1c1c,

#101010

);

padding:50px;

border-radius:30px;

margin-bottom:50px;

box-shadow:var(--shadow);

align-items:center;

}

.challenge-badge{

display:inline-block;

background:rgba(255,213,74,.15);

color:var(--gold);

padding:12px 28px;

border-radius:40px;

font-weight:700;

margin-bottom:25px;

}

.challenge-content h1{

font-size:48px;

margin-bottom:20px;

}

.challenge-content p{

color:#cccccc;

line-height:1.8;

margin-bottom:35px;

}

.challenge-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin-bottom:35px;

}

.challenge-box{

background:#202020;

padding:25px;

border-radius:18px;

text-align:center;

transition:.35s;

}

.challenge-box:hover{

transform:translateY(-6px);

}

.challenge-box i{

font-size:30px;

color:var(--gold);

margin-bottom:15px;

}

.challenge-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.accept-btn{

background:var(--gold);

color:#111;

padding:18px 35px;

border-radius:50px;

font-weight:700;

transition:.35s;

}

.template-btn{

border:2px solid var(--gold);

padding:18px 35px;

border-radius:50px;

font-weight:700;

transition:.35s;

}

.accept-btn:hover,

.template-btn:hover{

transform:translateY(-4px);

}

.challenge-image img{

width:100%;

max-width:350px;

margin:auto;

}

/*==================================================
        HERO CARDS
==================================================*/

.hero-cards{

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(250px,1fr));

gap:25px;

margin-bottom:60px;

}

.hero-card{

background:var(--card);

padding:35px;

border-radius:25px;

box-shadow:var(--shadow);

transition:.35s;

}

.hero-card:hover{

transform:translateY(-8px);

}

.hero-card i{

font-size:40px;

color:var(--gold);

margin-bottom:20px;

}

/*==================================================
        DASHBOARD SECTIONS
==================================================*/

.dashboard-section{

    margin-bottom:60px;

}

.section-title{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

    flex-wrap:wrap;

    gap:15px;

}

.section-title h2{

    font-size:34px;

}

.section-title a{

    color:var(--gold);

    font-weight:600;

}

.section-title a:hover{

    text-decoration:underline;

}

/*==================================================
        LESSON GRID
==================================================*/

.lesson-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.lesson-card{

    background:var(--card);

    border-radius:25px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

}

.lesson-card:hover{

    transform:translateY(-8px);

}

.lesson-card img{

    width:100%;

    height:210px;

    object-fit:cover;

}

.lesson-card h3{

    padding:25px 25px 10px;

    font-size:25px;

}

.lesson-card p{

    padding:0 25px;

    color:#cccccc;

    margin-bottom:18px;

}

.lesson-card a{

    display:inline-block;

    margin:20px 25px 30px;

    background:var(--gold);

    color:#111;

    padding:12px 28px;

    border-radius:40px;

    font-weight:700;

}

/*==================================================
        PROGRESS BARS
==================================================*/

.progress,

.lesson-progress{

    width:100%;

    height:12px;

    background:#2b2b2b;

    border-radius:30px;

    overflow:hidden;

}

.progress-fill{

    width:42%;

    height:100%;

    background:linear-gradient(

    90deg,

    var(--gold),

    #ffe98c

    );

}

.lesson-fill{

    width:75%;

    height:100%;

    background:var(--gold);

}

.lesson-fill.second{

    width:35%;

}

/*==================================================
        TODAY'S PRACTICE
==================================================*/

.practice-card{

    background:var(--card);

    padding:35px;

    border-radius:25px;

}

.practice-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.practice-item:last-child{

    border:none;

}

.practice-item i{

    color:var(--gold);

    font-size:22px;

}

.start-practice-btn{

    display:inline-block;

    margin-top:35px;

    background:var(--gold);

    color:#111;

    padding:16px 35px;

    border-radius:40px;

    font-weight:700;

}

/*==================================================
        BADGES
==================================================*/

.badge-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));

    gap:25px;

}

.badge-card{

    background:var(--card);

    padding:35px;

    border-radius:22px;

    text-align:center;

    transition:.35s;

    font-size:55px;

}

.badge-card:hover{

    transform:translateY(-8px);

}

.badge-card h3{

    font-size:24px;

    margin:18px 0;

}

.badge-card p{

    font-size:15px;

    color:#cccccc;

}

/*==================================================
        DOWNLOADS
==================================================*/

.download-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.download-card{

    background:var(--card);

    border-radius:22px;

    padding:40px;

    text-align:center;

    transition:.35s;

}

.download-card:hover{

    transform:translateY(-8px);

}

.download-card i{

    font-size:55px;

    color:#ff4d4d;

    margin-bottom:20px;

}

.download-card h3{

    margin-bottom:25px;

}

.download-card a{

    display:inline-block;

    background:var(--gold);

    color:#111;

    padding:14px 30px;

    border-radius:40px;

    font-weight:700;

}

/*==================================================
        SONG LIST
==================================================*/

.song-list{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.song-item{

    background:var(--card);

    border-radius:20px;

    padding:20px;

    display:flex;

    align-items:center;

    gap:25px;

    transition:.35s;

}

.song-item:hover{

    transform:translateX(8px);

}

.song-item img{

    width:110px;

    height:70px;

    border-radius:12px;

    object-fit:cover;

}

.song-item div{

    flex:1;

}

.song-item p{

    color:#cccccc;

}

.song-item a{

    background:var(--gold);

    color:#111;

    padding:12px 28px;

    border-radius:40px;

    font-weight:700;

}

/*==================================================
        FAVOURITES
==================================================*/

.lesson-card{

    position:relative;

}

.lesson-card::after{

    content:"❤";

    position:absolute;

    top:18px;

    right:18px;

    width:42px;

    height:42px;

    background:white;

    color:red;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

}

/*==================================================
        WEEKLY PROGRESS
==================================================*/

.weekly-card{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}

.week-box{

    background:var(--card);

    padding:35px;

    border-radius:22px;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow);

}

.week-box:hover{

    transform:translateY(-8px);

}

.week-box h3{

    color:#bbbbbb;

    font-size:18px;

    margin-bottom:15px;

}

.week-box h1{

    font-size:42px;

    color:var(--gold);

}

/*==================================================
        GOALS
==================================================*/

.goal-card{

    background:var(--card);

    padding:35px;

    border-radius:25px;

    box-shadow:var(--shadow);

}

.goal-item{

    display:flex;

    align-items:center;

    gap:20px;

    padding:18px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.goal-item:last-child{

    border:none;

}

.goal-item input{

    width:22px;

    height:22px;

    accent-color:var(--gold);

    cursor:pointer;

}

.goal-item p{

    font-size:18px;

}

/*==================================================
        NOTES
==================================================*/

textarea{

    width:100%;

    min-height:220px;

    background:var(--card);

    color:white;

    border:none;

    border-radius:25px;

    padding:30px;

    resize:vertical;

    outline:none;

    font-size:17px;

    line-height:1.8;

    margin-bottom:25px;

    box-shadow:var(--shadow);

}

textarea::placeholder{

    color:#999;

}

.save-note{

    background:var(--gold);

    color:#111;

    border:none;

    padding:16px 35px;

    border-radius:40px;

    cursor:pointer;

    font-size:16px;

    font-weight:700;

    transition:.35s;

}

.save-note:hover{

    transform:translateY(-4px);

}

/*==================================================
        DAILY TIP
==================================================*/

.daily-tip{

    display:grid;

    grid-template-columns:280px 1fr;

    gap:35px;

    background:var(--card);

    padding:35px;

    border-radius:25px;

    margin-bottom:60px;

    align-items:center;

    box-shadow:var(--shadow);

}

.tip-image img{

    width:100%;

    border-radius:20px;

    object-fit:cover;

}

.tip-content span{

    color:var(--gold);

    font-weight:700;

}

.tip-content h2{

    margin:15px 0;

    font-size:36px;

}

.tip-content p{

    color:#d0d0d0;

    line-height:1.8;

}

/*==================================================
        MOTIVATION
==================================================*/

.motivation{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

    margin-bottom:60px;

}

.motivation-card{

    background:linear-gradient(135deg,#1b1b1b,#101010);

    padding:40px;

    border-radius:25px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.motivation-card:hover{

    transform:translateY(-8px);

}

.motivation-card i{

    font-size:55px;

    color:var(--gold);

    margin-bottom:20px;

}

.motivation-card h2{

    margin-bottom:15px;

}

.motivation-card h1{

    color:var(--gold);

    margin-bottom:20px;

    font-size:48px;

}

.motivation-card p{

    color:#cccccc;

}

/*==================================================
        QUICK ACTIONS
==================================================*/

.quick-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}

.quick-card{

    background:var(--card);

    padding:40px;

    text-align:center;

    border-radius:25px;

    transition:.35s;

    box-shadow:var(--shadow);

}

.quick-card:hover{

    transform:translateY(-8px);

    background:var(--gold);

    color:#111;

}

.quick-card i{

    font-size:45px;

    margin-bottom:20px;

}

.quick-card h3{

    font-size:22px;

}


/*==================================================
        FOOTER
==================================================*/

footer{

    margin-top:80px;

    text-align:center;

    padding:50px 20px;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-logo{

    width:180px;

    margin:auto;

    margin-bottom:25px;

}

footer p{

    color:#999;

}

/*==================================================
        BACK TO TOP
==================================================*/

.back-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    background:var(--gold);

    color:#111;

    cursor:pointer;

    display:none;

    font-size:22px;

    box-shadow:var(--shadow);

    z-index:999;

}

.back-top.show{

    display:block;

}

/*==================================================
        RESPONSIVE
==================================================*/

@media(max-width:1100px){

.main-content{

margin-left:0;

width:100%;

padding:25px;

}

.sidebar{

position:relative;

width:100%;

height:auto;

}

body{

display:block;

}

.daily-challenge{

grid-template-columns:1fr;

text-align:center;

}

.daily-tip{

grid-template-columns:1fr;

text-align:center;

}

.challenge-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.topbar{

flex-direction:column;

text-align:center;

gap:20px;

}

.hero-cards{

grid-template-columns:1fr;

}

.lesson-grid{

grid-template-columns:1fr;

}

.badge-grid{

grid-template-columns:1fr;

}

.download-grid{

grid-template-columns:1fr;

}

.quick-grid{

grid-template-columns:1fr;

}

.weekly-card{

grid-template-columns:1fr;

}

.song-item{

flex-direction:column;

text-align:center;

}

.challenge-buttons{

justify-content:center;

}

}


.hero-card,
.lesson-card,
.badge-card,
.download-card,
.week-box,
.motivation-card,
.quick-card{

opacity:0;

transform:translateY(40px);

transition:.7s;

}

.hero-card.show,
.lesson-card.show,
.badge-card.show,
.download-card.show,
.week-box.show,
.motivation-card.show,
.quick-card.show{

opacity:1;

transform:translateY(0);

}

/*==================================================
        TOAST
==================================================*/

.toast{

position:fixed;

right:30px;

bottom:30px;

background:#181818;

color:white;

padding:18px 28px;

border-left:5px solid #FFD54A;

border-radius:12px;

display:flex;

align-items:center;

gap:15px;

box-shadow:0 15px 40px rgba(0,0,0,.35);

transform:translateX(120%);

transition:.4s;

z-index:9999;

}

.toast.show{

transform:translateX(0);

}

.toast i{

color:#FFD54A;

font-size:22px;

}




























































