
body{
margin:0;
font-family:Georgia, serif;

background-image:url("temple-background.png");
background-size:400px;

color:#222;
}

.section{
padding:80px 20px;
text-align:center;
max-width:1000px;
margin:auto;

background:rgba(255,255,255,0.92);
border-radius:10px;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:#4B0000;
color:white;
position:sticky;
top:0;
}

.navbar a{
color:white;
margin-left:20px;
text-decoration:none;
}

.hero{
height:80vh;

display:flex;
align-items:center;
justify-content:center;
text-align:center;

background:
linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
url("temple-background.png");

background-size:cover;
background-position:center;

color:white;
padding:40px;
}

.btn{
background:#D4AF37;
padding:14px 28px;
border-radius:40px;
text-decoration:none;
color:black;
font-weight:bold;
margin-top:20px;
}

.section{
padding:80px 20px;
text-align:center;
max-width:1000px;
margin:auto;
}

.alt{
background:#fff3cf;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:40px;
}

.card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.timeline{
list-style:none;
padding:0;
line-height:2;
}

form{
max-width:500px;
margin:auto;
display:flex;
flex-direction:column;
gap:12px;
margin-top:30px;
}

input,select,textarea{
padding:12px;
border-radius:6px;
border:1px solid #ccc;
}

button{
background:#8B0000;
color:white;
border:none;
padding:14px;
border-radius:6px;
cursor:pointer;
}

.footer{
background:#4B0000;
color:white;
text-align:center;
padding:40px;
}

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
padding:16px 20px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
box-shadow:0 8px 20px rgba(0,0,0,0.3);
}

.logo img{
height:60px;
}

.logo{
display:flex;
align-items:center;
gap:10px;
}

h2{
color:#8B0000;
position:relative;
}

h2:after{
content:"";
display:block;
width:80px;
height:3px;
background:#D4AF37;
margin:10px auto;
}