/* ==========================================
   BHUWEAR - Hero CSS
========================================== */

.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: #f8f8f8;
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 80px 0;
}

.hero-left {
    flex: 1;
}

.hero-tag {
    display: inline-block;
    background: #111111;
    color: #ffffff;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-left h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111111;
}

.hero-left p {
    font-size: 18px;
    color: #666666;
    max-width: 500px;
    margin-bottom: 35px;
}

.btn-shop {
    display: inline-block;
    padding: 16px 36px;
    background: #111111;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-shop:hover {
    background: #333333;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-right img {
    width: 100%;
    max-width: 500px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.btn-outline{
    display:inline-block;
    padding:16px 36px;
    border:2px solid #111;
    color:#111;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.btn-outline:hover{
    background:#111;
    color:#fff;
}

.hero{
    background:linear-gradient(to right,#f7f7f7,#ffffff);
}

.hero-left h1{
    font-size:72px;
    font-weight:800;
    letter-spacing:-2px;
}

.hero-left p{
    font-size:20px;
    max-width:550px;
    color:#666;
}

.hero-right img{
    width:100%;
    max-width:620px;
    transition:.5s;
}

.hero-right img:hover{
    transform:scale(1.03);
}

.hero-tag{
    border-radius:50px;
}

.btn-shop,
.btn-outline{

    min-width:190px;
    text-align:center;

}