@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Montserrat',sans-serif;
background:linear-gradient(
180deg,
#faf8f3 0%,
#f5f1ea 40%,
#ffffff 100%
);
color:#222;
overflow-x:hidden;
}

/* ABOUT SECTION */

.about-section{
padding:120px 40px;
}

.about-container{
max-width:1300px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:90px;
align-items:center;
}

.about-image img{
width:100%;
display:block;
border-radius:10px;
box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.small-title{
font-size:12px;
letter-spacing:6px;
color:#b8925e;
margin-bottom:20px;
}

.about-content h1{
font-size:70px;
font-weight:300;
letter-spacing:5px;
margin-bottom:30px;
color:#111;
}

.about-content p{
font-size:22px;
line-height:2;
font-weight:300;
color:#555;
margin-bottom:25px;
}

/* STATS */

.stats{
display:flex;
gap:50px;
margin-top:40px;
}

.stat-box{
text-align:left;
}

.stat-box h2{
font-size:42px;
font-weight:300;
color:#b8925e;
}

.stat-box span{
font-size:12px;
letter-spacing:3px;
color:#777;
}

/* MUSIC STYLE */

.music-style{
padding:120px 20px;
text-align:center;
background:#fff;
margin-top:50px;
}

.music-style h2{
font-size:52px;
font-weight:300;
letter-spacing:8px;
color:#111;
margin-bottom:60px;
}

.music-style h2::after{
content:"";
display:block;
width:80px;
height:2px;
background:#b8925e;
margin:20px auto 0;
}

.music-grid{
max-width:1000px;
margin:auto;
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

.music-grid span{
padding:14px 28px;
border:1px solid #d7c2a0;
border-radius:50px;
background:#fff;
font-size:14px;
color:#333;
transition:.3s;
}

.music-grid span:hover{
background:#b8925e;
border-color:#b8925e;
color:#fff;
}

/* MOBILE */

@media(max-width:768px){

.about-section{
padding:70px 20px;
}

.about-container{
grid-template-columns:1fr;
gap:40px;
}

.about-content h1{
font-size:42px;
}

.about-content p{
font-size:18px;
line-height:1.9;
}

.stats{
justify-content:space-between;
gap:15px;
}

.stat-box h2{
font-size:32px;
}

.music-style{
padding:80px 20px;
}

.music-style h2{
font-size:32px;
letter-spacing:4px;
}

.music-grid span{
padding:12px 20px;
font-size:13px;
}

}
