/* RESET */

body{
margin:0;
padding:0;
overflow-x:hidden;
font-family:Arial,sans-serif;
}

/* MARQUEE */

.top-marquee{
background:#2f1d17;
color:#fff;
height:48px;
display:flex;
align-items:center;
overflow:hidden;
white-space:nowrap;
}

.marquee-content{
display:inline-block;
font-size:16px;
font-weight:500;
animation:marqueeMove 25s linear infinite;
}

@keyframes marqueeMove{
from{
transform:translateX(100%);
}
to{
transform:translateX(-100%);
}
}

/* HEADER */
.main-header{
background:#fff;
border-bottom:1px solid #eee;
padding:28px 30px;
position:sticky;
top:0;
z-index:999;
}

/* HEADER GRID */

.header-inner{
display:grid;
grid-template-columns:1fr auto 1fr;
align-items:center;
width:100%;
}

/* MENU */

.desktop-menu{
justify-self:start;
}

.main-menu{
display:flex;
align-items:center;
gap:35px;
margin:0;
padding:0;
list-style:none;
}

.main-menu li{
list-style:none;
}

.main-menu li a{
color:#2f1d17;
text-decoration:none;
font-size:16px;
font-weight:600;
}

.main-menu li a:hover{
opacity:.7;
}

/* LOGO */

.site-logo{
justify-self:center;
}

.site-logo a{
color:#2f1d17;
text-decoration:none;
font-size:32px;
font-weight:300;
line-height:1;
letter-spacing:1px;
}

.custom-logo{
max-height:70px;
width:auto;
}

/* ICONS */

.header-icons{
justify-self:end;
display:flex;
align-items:center;
gap:24px;
}

.header-icons a{
display:flex;
align-items:center;
justify-content:center;
width:40px;
height:40px;
color:#2f1d17;
font-size:18px;
text-decoration:none;
}

.header-icons a:hover{
opacity:.7;
}

/* MOBILE */

@media(max-width:991px){

.header-inner{
grid-template-columns:1fr;
gap:20px;
}

.desktop-menu{
justify-self:center;
}

.site-logo{
justify-self:center;
}

.header-icons{
justify-self:center;
}

.main-menu{
justify-content:center;
flex-wrap:wrap;
gap:18px;
}

.site-logo a{
font-size:36px;
}

}
/* =========================
   HERO
========================= */
.hero-section{

    background-image:url("http://kartbharo.com/wp-content/uploads/2026/06/Hero-scaled.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    min-height:720px;

    margin:20px;
    border-radius:25px;

    position:relative;
    overflow:hidden;
}

.hero-overlay{

    width:100%;
    height:720px;

    display:flex;
    align-items:center;

    background:linear-gradient(
        90deg,
        rgba(236,224,208,.90) 0%,
        rgba(236,224,208,.55) 35%,
        rgba(236,224,208,0) 70%
    );
}

.hero-content{

    max-width:650px;
    padding-left:80px;
}

.hero-title{

    font-size:78px;
    line-height:1.05;
    color:#2f1d17;
    margin-bottom:25px;
}

.hero-desc{

    font-size:24px;
    margin-bottom:35px;
    color:#2f1d17;
}

.hero-btn{

    background:#2f1d17;
    color:#fff;
    padding:16px 40px;
    border-radius:10px;
    text-decoration:none;
    display:inline-block;
}

.hero-image img{
    width:100%;
    height:720px;
    object-fit:cover;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .header-wrapper{
        flex-direction:column;
        gap:20px;
    }

    .main-menu{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-content{
        padding:40px 25px;
    }

    .hero-title{
        font-size:42px;
    }

    .hero-image img{
        height:auto;
    }

}