/* ==========================================================
   Kashi Vishwanath Temple
   Premium Theme V1.0
========================================================== */

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

html{
scroll-behavior:smooth;
}

body{
font-family:Arial,Helvetica,sans-serif;
background:#fff;
color:#222;
line-height:1.6;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

.hero{

height:100vh;

background:
linear-gradient(
rgba(53,20,102,.72),
rgba(53,20,102,.72)
),
url("assets/images/kashi-vishwanath-hero.jpg");

background-size:cover;

background-position:center;

background-repeat:no-repeat;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

padding:20px;

}


.overlay{

max-width:900px;

}

.hero h1{

font-size:72px;

color:#ffffff;

margin-bottom:20px;

font-weight:700;

}

.hero p{

font-size:24px;

color:#ffffff;

margin-bottom:40px;

}

.hero-button{

display:inline-block;

padding:18px 42px;

background:#D4AF37;

color:#222;

border-radius:50px;

font-size:18px;

font-weight:bold;

transition:.35s;

}

.hero-button:hover{

background:#ffffff;

transform:translateY(-3px);

}

@media(max-width:768px){

.hero h1{

font-size:42px;

}

.hero p{

font-size:20px;

}

.hero-button{

display:block;

width:100%;

max-width:280px;

margin:auto;

}

}
/* ===============================
   Navigation
=================================*/

.navbar{

position:fixed;

top:0;

left:0;

width:100%;

padding:20px 8%;

display:flex;

justify-content:space-between;

align-items:center;

background:rgba(255,255,255,.08);

backdrop-filter:blur(12px);

z-index:999;

}

.logo{

font-size:28px;

font-weight:bold;

color:#ffffff;

}

.logo span{

color:#D4AF37;

}

.menu{

display:flex;

gap:35px;

list-style:none;

}

.menu li{

list-style:none;

}

.menu a{

color:#ffffff;

font-size:17px;

transition:.3s;

}

.menu a:hover{

color:#D4AF37;

}

@media(max-width:768px){

.menu{

display:none;

}

.logo{

font-size:22px;
   /* ==========================================
   QUICK ACCESS SECTION
========================================== */

.quick-access{
    padding:100px 8%;
    background:#faf7f2;
}

.container{
    max-width:1400px;
    margin:auto;
}

.quick-access h2{
    text-align:center;
    font-size:42px;
    color:#2b1c12;
    margin-bottom:15px;
}

.section-subtitle{
    text-align:center;
    color:#777;
    font-size:18px;
    margin-bottom:60px;
}

.card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:#ffffff;
    border-radius:22px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.icon{
    font-size:46px;
    margin-bottom:20px;
}

.card h3{
    font-size:24px;
    color:#2b1c12;
    margin-bottom:12px;
}

.card p{
    color:#666;
    line-height:1.6;
}
   /* ==========================================
   FEATURES SECTION
========================================== */

.features{
    padding:100px 8%;
    background:#ffffff;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.feature-box{
    background:#fafafa;
    padding:35px 30px;
    border-radius:20px;
    text-align:center;
    transition:.35s;
    border:1px solid #eee;
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.feature-box h3{
    font-size:24px;
    color:#2b1c12;
    margin-bottom:15px;
}

.feature-box p{
    color:#666;
    line-height:1.7;
}
