body{
margin:0;
font-family:'Inter',sans-serif;
background:#F4F1EB;
color:#222;
line-height:1.6;
padding-top:80px;
}

header{
background:rgba(17,17,17,0.95);
color:white;
position:sticky;
top:0;
z-index:999;
}

.nav{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px;
}

.logo{
font-family:'Playfair Display',serif;
letter-spacing:3px;
font-size:18px;
}

nav a{
color:white;
margin-left:25px;
text-decoration:none;
font-weight:300;
transition:0.3s;
}

nav a:hover{
color:#C6A86B;
}

.hero{
background:linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
url('https://images.unsplash.com/photo-1551776235-dde6d4829808?q=80&w=2070');
background-size:cover;
background-position:center;
padding:180px 20px;
text-align:center;
color:white;
}

.hero h1{
font-family:'Playfair Display',serif;
font-size:48px;
font-weight:500;
margin-bottom:20px;
}

.hero p{
font-size:20px;
max-width:650px;
margin:auto;
opacity:0.9;
}

.btn{
background:#C6A86B;
padding:16px 34px;
color:white;
text-decoration:none;
display:inline-block;
margin-top:30px;
border-radius:2px;
letter-spacing:1px;
transition:0.3s;
}

.btn:hover{
background:#b89655;
transform:translateY(-2px);
}

.section{
padding:90px 20px;
max-width:1200px;
margin:auto;
text-align:center;
}

.section h2{
font-family:'Playfair Display',serif;
font-size:34px;
margin-bottom:50px;
}

.light{
background:white;
}

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

.card{
background:rgba(255,255,255,0.85);
backdrop-filter:blur(6px);
padding:35px;
border-radius:8px;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
transition:0.4s;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.form input,
.form textarea{
width:100%;
padding:14px;
margin:12px 0;
border:1px solid #ddd;
border-radius:4px;
font-size:15px;
}

footer{
background:#111;
color:white;
padding:40px;
text-align:center;
letter-spacing:1px;
}

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
padding:16px 20px;
border-radius:50px;
text-decoration:none;
font-weight:600;
box-shadow:0 6px 20px rgba(0,0,0,0.25);
}
.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
margin-top:40px;
}

.gallery img{
width:100%;
height:220px;
object-fit:cover;
border-radius:6px;
cursor:pointer;
transition:0.4s;
}

.gallery img:hover{
transform:scale(1.05);
}

.small-text{
margin-top:25px;
opacity:0.7;
letter-spacing:1px;
}

.card, .gallery img{
opacity:0;
transform:translateY(40px);
transition:0.6s ease;
}
#lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

#lightbox img{
max-width:90%;
max-height:90%;
border-radius:6px;
}

.hero-video{
position:relative;
height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
overflow:hidden;
}

.bg-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
}

.video-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.35);
}

.hero-content{
position:relative;
z-index:2;
max-width:700px;
}
#loader{
position:fixed;
width:100%;
height:100%;
background:#111;
display:flex;
justify-content:center;
align-items:center;
z-index:99999;
}

.loader-text{
color:#C6A86B;
font-family:'Playfair Display',serif;
font-size:28px;
letter-spacing:6px;
animation:fade 1.8s infinite alternate;
}

@keyframes fade{
from{opacity:0.2;}
to{opacity:1;}
}
.custom-nav{
background:rgba(17,17,17,0.92);
backdrop-filter: blur(6px);
padding:12px 0;
transition:0.3s;
}

.brand-logo{
font-family:'Playfair Display',serif;
letter-spacing:3px;
font-size:18px;
}

.brand-sub{
font-size:10px;
letter-spacing:2px;
opacity:0.7;
}

.navbar-nav .nav-link{
margin-left:25px;
font-weight:300;
transition:0.3s;
}

.navbar-nav .nav-link:hover{
color:#C6A86B !important;
}
.btn-submit{
width:100%;
background:linear-gradient(135deg,#C6A86B,#b89655);
color:white;
padding:16px;
font-size:16px;
letter-spacing:1px;
border:none;
border-radius:4px;
cursor:pointer;
transition:all 0.3s ease;
box-shadow:0 8px 20px rgba(0,0,0,0.15);
font-weight:500;
}

.btn-submit:hover{
transform:translateY(-2px);
box-shadow:0 12px 28px rgba(0,0,0,0.25);
background:linear-gradient(135deg,#d4b67a,#c6a86b);
}

.btn-submit:active{
transform:translateY(1px);
box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

