*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f8f9fb;
color:#222;
line-height:1.6;
}

a{
text-decoration:none;
}

header{
background:#0f172a;
padding:18px 8%;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 15px rgba(0,0,0,0.15);
}

.logo{
display:flex;
flex-direction:column;
}

.logo-main{
font-size:52px;
font-weight:800;
color:#d4af37;
line-height:1;
}

.logo-tag{
font-size:11px;
color:#ffffff;
letter-spacing:1.5px;
margin-top:4px;
font-weight:500;
}

nav a{
color:white;
margin-left:25px;
font-weight:600;
font-size:15px;
transition:0.3s;
}

nav a:hover{
color:#d4af37;
}

.hero{
height:90vh;
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
position:relative;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.55);
}

.hero-content{
position:relative;
z-index:2;
color:white;
max-width:900px;
padding:20px;
}

.hero-content h1{
font-size:60px;
margin-bottom:20px;
}

.hero-content p{
font-size:22px;
margin-bottom:30px;
}

.btn{
display:inline-block;
background:#d4af37;
color:white;
padding:15px 35px;
margin:10px;
font-weight:bold;
border-radius:5px;
transition:0.3s;
}

.btn:hover{
background:#b89028;
}

.section{
padding:90px 8%;
}

.section-title{
text-align:center;
font-size:40px;
margin-bottom:50px;
color:#0f172a;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.card h3{
margin-bottom:15px;
color:#0f172a;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.gallery img{
width:100%;
height:300px;
object-fit:cover;
border-radius:10px;
}

.page-banner{
background:#0f172a;
color:white;
padding:80px 20px;
text-align:center;
}

.page-banner h1{
font-size:48px;
}

.content{
max-width:1100px;
margin:auto;
padding:60px 20px;
}

.contact-box{
background:#0f172a;
color:white;
padding:60px;
border-radius:10px;
text-align:center;
}

.contact-box h2{
margin-bottom:20px;
}

.contact-box p{
margin-bottom:10px;
}

footer{
background:#020617;
color:white;
padding:50px 8%;
margin-top:60px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.footer-grid h3{
margin-bottom:15px;
color:#d4af37;
}

.footer-bottom{
margin-top:30px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,.15);
text-align:center;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

header{
flex-direction:column;
text-align:center;
padding:20px;
}

.logo-main{
font-size:38px;
}

.logo-tag{
font-size:9px;
}

nav{
margin-top:15px;
}

nav a{
display:inline-block;
margin:8px;
font-size:14px;
}

.hero-content h1{
font-size:38px;
}

.hero-content p{
font-size:18px;
}

.section-title{
font-size:30px;
}

.page-banner h1{
font-size:34px;
}

.contact-box{
padding:30px;
}
}
.logo-main{
font-size:28px;
font-weight:800;
color:#d4af37;
letter-spacing:1px;
text-transform:uppercase;
}

.logo-tag{
font-size:9px;
color:#ffffff;
letter-spacing:1px;
margin-top:2px;
}

@media(max-width:768px){

.logo-main{
font-size:20px;
}

.logo-tag{
font-size:8px;
}

}