/*
Theme Name: KL Modas
Author: Lucas
Version: 1.0
*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#0b0b0b;
    color:#ffffff;
    font-family:Arial, sans-serif;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.hero{
    min-height:80vh;
    display:flex;
    align-items:center;
}

.hero-text h1{
    font-size:70px;
    line-height:1.1;
}

.hero-text span{
    color:#b86cff;
}

.hero-text p{
    font-size:20px;
    margin:20px 0;
}

.btn{
    background:#b86cff;
    color:#fff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:10px;
    display:inline-block;
}
.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.hero-image img{
    width:100%;
    max-width:500px;
    border-radius:20px;
}

@media(max-width:768px){

    .hero-content{
        flex-direction:column;
        text-align:center;
    }

    .hero-text h1{
        font-size:45px;
    }

}