/* ================================
RESET
================================ */

html{
box-sizing:border-box;
margin:0;
padding:0;
}

body,
h1,h2,h3,h4,h5,h6,
p,
div,
section,
span,
a{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Lora', serif;
background:#f2e6d6;
color:#3b1a10;
}


/* ================================
HERO SECTION
================================ */

.hero-header{

width:100%;

background-image:url('../images/hero-bg.jpg');
background-repeat:no-repeat;
background-position:center;
background-size:cover;

display:flex;
justify-content:center;
align-items:center;

text-align:center;

padding:60px 20px;

}


/* CONTENT */

.hero-content{

max-width:900px;
width:100%;

margin:auto;
transform:translateX(-20px);

}


/* KANNADA */

.hero-kannada{

font-family:'Noto Serif Kannada', serif;
font-size:44px;

margin-bottom:6px;

}


/* ENGLISH */

.hero-english{

font-family:'Cinzel', serif;
font-size:34px;

letter-spacing:2px;

margin-bottom:6px;

}


/* TAGLINE */

.hero-tagline{

display:flex;
justify-content:center;
align-items:center;
gap:12px;

}


.tag-text{

font-size:16px;
font-style:italic;
font-weight:600;
color:#6b3a1a;

}


.tag-line{

width:70px;
height:1px;
background:#6b3a1a;

}


/* ================================
TABLET
================================ */

@media (max-width:1024px){

.hero-kannada{
font-size:36px;
}

.hero-english{
font-size:28px;
}

}


/* ================================
MOBILE
================================ */

@media (max-width:768px){

.hero-header{
padding:60px 20px;
}

.hero-kannada{
font-size:26px;
}

.hero-english{
font-size:22px;
max-width:260px;
margin:0 auto 10px auto;
}

.tag-text{
font-size:13px;
}

.tag-line{
width:40px;
}

}