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

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

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 50px;
background:#5a1d3d;
color:white;
position:sticky;
top:0;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-weight:bold;
}

.hero{
height:90vh;
background:linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),
url('cover-photo.png');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
padding:20px;
}

.hero-content h1{
font-size:60px;
margin-bottom:20px;
}

.btn{
display:inline-block;
background:#d4a373;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:30px;
margin-top:20px;
}

.section{
padding:70px 50px;
text-align:center;
}

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

.card{
background:white;
padding:25px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.dark{
background:#5a1d3d;
color:white;
}

ul{
list-style:none;
margin-top:30px;
}

ul li{
padding:10px;
font-size:18px;
}

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

.gallery-box{
background:#eee;
height:200px;
display:flex;
align-items:center;
justify-content:center;
border-radius:15px;
}

.video-section{
margin-top:40px;
}

form{
max-width:600px;
margin:30px auto;
display:flex;
flex-direction:column;
gap:15px;
}

form input, form textarea{
padding:15px;
border:none;
border-radius:10px;
}

button{
padding:15px;
background:#d4a373;
color:white;
border:none;
border-radius:10px;
cursor:pointer;
}

footer{
background:#2b0f1d;
color:white;
text-align:center;
padding:20px;
}

@media(max-width:768px){
header{
flex-direction:column;
}

.hero-content h1{
font-size:40px;
}
}

.whatsapp-btn{
margin-left:10px;
}
.hero .btn, .cta-buttons{
margin-top:40px;
}
