*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: Arial, sans-serif;
}

body{
line-height:1.6;
color:#333;
}

/* HEADER */

header{
text-align:center;
padding:30px;
background:white;
border-bottom:1px solid #eee;
}

.logo{
width:160px;
border-radius:50%;
margin-bottom:10px;
}

nav{
margin-top:10px;
}

nav a{
margin:0 15px;
text-decoration:none;
font-weight:bold;
color:#444;
}

/* HERO */

.hero{
height:70vh;
background:linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
url("nrutya-nyaas.jpg") center/cover no-repeat;

display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero h2{
font-size:40px;
margin-bottom:15px;
}

.hero button{
padding:12px 30px;
border:none;
background:#c49b3d;
color:white;
font-size:16px;
cursor:pointer;
}

/* SECTIONS */

.section{
padding:80px 10%;
text-align:center;
}

.section.light{
background:#f7f7f7;
}

/* CARDS */

.cards{
display:flex;
gap:30px;
margin-top:40px;
flex-wrap:wrap;
justify-content:center;
}

.card{
background:white;
padding:20px;
width:260px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.card img{
width:100%;
border-radius:8px;
margin-bottom:15px;
}

/* GALLERY */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
margin-top:30px;
}

.gallery img{
width:100%;
border-radius:10px;
}

/* FOOTER */

footer{
background:#222;
color:white;
text-align:center;
padding:25px;
margin-top:40px;
}