*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#111;
color:white;
scroll-behavior:smooth;
}


/* LOADER */

#loader{
position:fixed;
width:100%;
height:100%;
background:#000;
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
}

.loader-text{
font-family:'Bebas Neue';
font-size:80px;
letter-spacing:10px;
}


/* NAVBAR */

.navbar{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(10px);
z-index:1000;
}

.logo{
font-size:30px;
letter-spacing:3px;
}

.menu{
display:flex;
gap:40px;
list-style:none;
}

.menu a{
color:white;
text-decoration:none;
}

.nav-btn{
background:#c9a24c;
padding:10px 25px;
border-radius:30px;
text-decoration:none;
color:black;
}

.burger{
display:none;
flex-direction:column;
cursor:pointer;
}

.burger span{
height:3px;
width:25px;
background:white;
margin:4px;
}


/* HERO */

.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
}

.bg-video{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
}

.hero-content{
position:relative;
z-index:2;
}

.hero h1{
font-family:'Bebas Neue';
font-size:120px;
letter-spacing:12px;
}

.hero-buttons{
margin-top:30px;
display:flex;
gap:20px;
justify-content:center;
align-items:center;
flex-wrap:wrap;
}
.hero-content{
position:relative;
z-index:2;
max-width:700px;
padding:20px;
}
.hero p{
font-size:18px;
margin-top:20px;
margin-bottom:40px;
line-height:1.6;
}
.btn{
background:#c9a24c;
padding:15px 35px;
border-radius:30px;
text-decoration:none;
color:black;
}

.btn{
margin-top:10px;
}

.btn-outline{
border:2px solid white;
padding:15px 35px;
border-radius:30px;
text-decoration:none;
color:white;
}
.btn{
background:#c9a24c;
padding:15px 35px;
border-radius:30px;
text-decoration:none;
color:black;
transition:0.3s;
}

.btn:hover{
box-shadow:0 0 20px #c9a24c;
transform:translateY(-2px);
}


/* ABOUT */

.about{
display:flex;
justify-content:center;
padding:120px 20px;
}

.about-box{
max-width:700px;
border:1px solid rgba(201,162,76,0.4);
padding:50px;
border-radius:10px;
background:#151515;
}

.about-text{
margin-top:20px;
line-height:1.7;
}


/* SERVICES */

.services{
padding:120px 20px;
text-align:center;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1000px;
margin:auto;
}

.service{
background:#1a1a1a;
padding:40px;
border-radius:10px;
transition:0.3s;
}

.service:hover{
transform:translateY(-10px);
}


/* GALLERY */

.gallery{
padding:120px 20px;
text-align:center;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
max-width:1100px;
margin:auto;
}
.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

.gallery img{
width:100%;
height:300px;
object-fit:cover;
border-radius:10px;
cursor:pointer;
border:2px solid rgba(201,162,76,0.5);
transition:transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery img:hover{
transform:scale(1.07);
box-shadow:0 15px 40px rgba(0,0,0,0.6);
}


/* IMAGE VIEW */

#imageViewer{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
display:none;
align-items:center;
justify-content:center;
}

#viewerImg{
max-width:90%;
max-height:90%;
}


/* MAP */

.map{
padding:120px 20px;
text-align:center;
}
.map iframe{
width:90%;
max-width:1000px;
height:420px;
border:2px solid #c9a24c;
border-radius:12px;
margin:auto;
display:block;
}

/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:28px;
text-decoration:none;
color:white;
}


/* FOOTER */

footer{
text-align:center;
padding:30px;
background:black;
}

.creator{
margin-top:10px;
font-size:14px;
color:#c9a24c;
}


/* MOBILE */

@media(max-width:768px){

.hero h1{
font-size:70px;
}

.navbar{
padding:15px 25px;
}

.menu{
position:absolute;
top:70px;
right:0;
background:black;
flex-direction:column;
width:200px;
display:none;
padding:20px;
}

.menu.active{
display:flex;
}

.burger{
display:flex;
}

.nav-btn{
display:none;
}

}
.parallax{
background:url("gallery/1.jpg") center/cover fixed;
height:400px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
}

.parallax::before{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
}

.parallax-content{
position:relative;
max-width:600px;
}

.parallax h2{
font-family:'Bebas Neue';
font-size:50px;
letter-spacing:3px;
margin-bottom:20px;
}
section h2{
font-family:'Bebas Neue';
font-size:42px;
letter-spacing:3px;
margin-bottom:50px;
position:relative;
}

section h2::after{
content:"";
width:80px;
height:2px;
background:#c9a24c;
display:block;
margin:15px auto 0;
}
@media(max-width:768px){

.hero h1{
font-size:60px;
}

.hero p{
font-size:16px;
}

.hero-buttons{
flex-direction:column;
}

.gallery img{
height:220px;
}

.map iframe{
width:95%;
height:350px;
}

.about-box{
padding:30px;
}

}