/* =====================================================
   PIANO TUTORIALS WITH CHRIS EBUTE
   ABOUT PAGE
=====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#050505;

    color:#ffffff;

    overflow-x:hidden;

}

/*==============================
HEADER
==============================*/

.hero{

    width:100%;

    min-height:50vh;

    background:

    linear-gradient(rgba(0,0,0,.78),

    rgba(0,0,0,.78)),

    url("image/about-background.jpg");

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

    position:relative;

}

/*==============================
NAVIGATION
==============================*/

.header_menu{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 8%;

    backdrop-filter:blur(18px);

    background:rgba(0,0,0,.30);

    z-index:999;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.logo img{

    width:150px;

    transition:.4s;

}

nav{

    display:flex;

    gap:35px;

}

nav a{

    color:white;

    text-decoration:none;

    font-weight:500;

    transition:.35s;

    position:relative;

}

nav a:hover{

    color:#FFD54A;

}

nav a::after{

    content:"";

    position:absolute;

    bottom:-6px;

    left:0;

    width:0;

    height:2px;

    background:#FFD54A;

    transition:.35s;

}

nav a:hover::after{

    width:100%;

}

.active{

    color:#FFD54A;

}

/*==============================
HERO CONTENT
==============================*/

.hero-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:170px 10% 90px;

}

.hero-content h4{

    color:#FFD54A;

    letter-spacing:3px;

    font-weight:600;

    margin-bottom:18px;

}

.hero-content h1{

    font-family:'Playfair Display',serif;

    font-size:78px;

    margin-bottom:20px;

}

.hero-content p{

    max-width:760px;

    color:#dddddd;

    font-size:20px;

    line-height:1.8;

}

/*==============================
BUTTON
==============================*/

.hero-content a{

    margin-top:45px;

    display:inline-block;

    padding:18px 45px;

    background:

    linear-gradient(135deg,#FFD54A,#F4B400);

    color:#111;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.hero-content a:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 40px rgba(255,213,74,.45);

}

/*==============================
ABOUT SECTION
==============================*/

.about-section{

    width:100%;

    padding:110px 8%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    text-align:center;

}

.about-image img{

    width:100%;

    max-width:500px;

    border-radius:30px;

    box-shadow:0 20px 50px rgba(0,0,0,.45);

    transition:.45s;

}

.about-image img:hover{

    transform:scale(1.03);

}

.about-text span{

    color:#FFD54A;

    font-weight:600;

    letter-spacing:2px;

}

.about-text h2{

    font-family:'Playfair Display',serif;

    font-size:48px;

    margin:18px 0 30px;

}

.about-text p{

    color:#d6d6d6;

    line-height:2;

    margin-bottom:20px;

    font-size:18px;

}

/* ======================================================
   WHY LEARN FROM CHRIS
======================================================*/

.why{

    padding:110px 8%;

    background:#0d0d0d;

}

.why h2{

    text-align:center;

    font-size:52px;

    font-family:'Playfair Display', serif;

    margin-bottom:70px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border-radius:25px;

    padding:45px 35px;

    text-align:center;

    transition:.45s;

}

.card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(255,213,74,.15);

}

.card i{

    font-size:55px;

    color:#FFD54A;

    margin-bottom:25px;

}

.card h3{

    font-size:28px;

    margin-bottom:18px;

}

.card p{

    color:#d6d6d6;

    line-height:1.9;

}


/* ======================================================
   TEACHING PHILOSOPHY
======================================================*/

.quote{

    padding:130px 10%;

    background:

    linear-gradient(rgba(0,0,0,.82),

    rgba(0,0,0,.82)),

    url(image/piano-background.jpg);

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

}

.quote-box{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.quote i{

    font-size:55px;

    color:#FFD54A;

    margin-bottom:30px;

}

.quote p{

    font-size:32px;

    line-height:1.8;

    font-family:'Playfair Display', serif;

}

.quote h3{

    color:#FFD54A;

    margin-top:40px;

    font-size:28px;

}


/* ======================================================
   MISSION & VISION
======================================================*/

.mission{

    padding:100px 8%;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:35px;

}

.mission-card{

    background:#111;

    border-left:6px solid #FFD54A;

    border-radius:20px;

    padding:45px;

    transition:.4s;

}

.mission-card:hover{

    transform:translateY(-10px);

}

.mission-card h2{

    margin-bottom:20px;

    font-size:35px;

}

.mission-card p{

    color:#d6d6d6;

    line-height:2;

}


/* ======================================================
   TIMELINE
======================================================*/

.timeline{

    padding:110px 8%;

    position:relative;

}

.timeline h2{

    text-align:center;

    font-size:55px;

    margin-bottom:70px;

    font-family:'Playfair Display', serif;

}

.line{

    position:absolute;

    left:50%;

    top:180px;

    width:4px;

    height:65%;

    background:#FFD54A;

    transform:translateX(-50%);

}

.item{

    width:45%;

    background:#101010;

    padding:30px;

    border-radius:20px;

    margin-bottom:40px;

    position:relative;

}

.item:nth-child(even){

    margin-left:auto;

}

.item h3{

    color:#FFD54A;

    margin-bottom:10px;

}

.item p{

    color:#d6d6d6;

    line-height:1.8;

}


/* ======================================================
   CALL TO ACTION
======================================================*/

.cta{

    padding:130px 8%;

    text-align:center;

    background:linear-gradient(135deg,#050505,#151515);

}

.cta h2{

    font-size:58px;

    font-family:'Playfair Display', serif;

    margin-bottom:25px;

}

.cta p{

    color:#d6d6d6;

    font-size:20px;

    max-width:700px;

    margin:auto;

}

.cta a{

    display:inline-block;

    margin-top:45px;

    padding:18px 50px;

    background:linear-gradient(135deg,#FFD54A,#F4B400);

    color:#111;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.cta a:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 50px rgba(255,213,74,.35);

}


/* ======================================================
   FOOTER
======================================================*/

footer{

    background:#000;

    text-align:center;

    padding:35px;

}

footer p{

    color:#999;

    font-size:17px;

}


/* ======================================================
   RESPONSIVE DESIGN
======================================================*/

@media(max-width:1000px){

.about-section{

grid-template-columns:1fr;

text-align:center;

}

.hero-content h1{

font-size:58px;

}

.line{

display:none;

}

.item{

width:100%;

margin-left:0;

}

}

@media(max-width:768px){

.hero-content h1{

font-size:42px;

}

.hero-content p{

font-size:17px;

}

.why h2,
.timeline h2,
.cta h2{

font-size:36px;

}

.quote p{

font-size:24px;

}

.header_menu{

flex-direction:column;

padding:18px;

}

nav{

margin-top:15px;

flex-wrap:wrap;

justify-content:center;

gap:18px;

}

}

@media(max-width:500px){

.hero-content{

padding:120px 6% 0;

}

.about-section,
.why,
.timeline,
.cta,
.mission{

padding:80px 6%;

}

.card{

padding:35px 25px;

}

.mission-card{

padding:35px;

}

}