*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Arial,Helvetica,sans-serif;
background:#000;
color:#fff;
padding-top:85px;

}

:root{

--primary:#d9aaaa;
--dark:#000;
--white:#fff;

}

.navbar{

background:#000;
border-bottom:1px solid #333;

}

.navbar-brand img{

height:60px;

}

.nav-link{

color:var(--primary)!important;
font-weight:600;
margin-left:20px;
transition:.3s;

}

.nav-link:hover{

color:#fff!important;

}

.btn-theme{

background:var(--primary);
color:#000;
padding:12px 28px;
border-radius:40px;
font-weight:bold;
border:none;

}

.btn-theme:hover{

background:#fff;

}

.section{

padding:80px 0;

}

.section-title{

text-align:center;
font-size:42px;
font-weight:bold;
margin-bottom:15px;
color:var(--primary);

}

.section-sub{

text-align:center;
color:#ccc;
margin-bottom:50px;

}

.card{

background:#111;
border:1px solid #333;
transition:.4s;

}

.card:hover{

transform:translateY(-8px);

}

.card img{

height:350px;
object-fit:cover;

}

.footer{

background:#111;
padding:60px 0;
margin-top:80px;

}

.footer h4{

color:var(--primary);
margin-bottom:20px;

}

.footer a{

color:#ddd;
text-decoration:none;

}

.footer a:hover{

color:var(--primary);

}

.footer-logo{

width:150px;

}

.footer-links{

list-style:none;
padding:0;

}

.footer-links li{

margin-bottom:12px;

}

.tagline{

color:var(--primary);

}

.whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:60px;

height:60px;

background:#25D366;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

color:#fff;

text-decoration:none;

box-shadow:0 0 15px rgba(0,0,0,.4);

z-index:999;

}

.hero{

min-height:90vh;

display:flex;

align-items:center;

background:linear-gradient(rgba(0,0,0,.75),
rgba(0,0,0,.75));

}

.hero h1{

font-size:70px;
font-weight:bold;
color:var(--primary);

}

.hero p{

font-size:24px;
margin:20px 0;

}

.collection-box{

background:#111;

padding:20px;

border-radius:10px;

transition:.3s;

text-align:center;

}

.collection-box:hover{

background:#1a1a1a;

transform:scale(1.04);

}

.collection-box img{

width:100%;
height:320px;
object-fit:cover;

}

.contact-box{

background:#111;

padding:30px;

border-radius:10px;

}
.gallery-card{

overflow:hidden;

border-radius:12px;

}

.gallery-card img{

height:320px;

width:100%;

object-fit:cover;

cursor:pointer;

transition:.5s;

}

.gallery-card:hover img{

transform:scale(1.08);

}

#lightbox{

display:none;

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.95);

justify-content:center;

align-items:center;

z-index:99999;

}

#lightbox img{

max-width:90%;

max-height:90%;

border-radius:10px;

}

#closeLightbox{

position:absolute;

top:25px;

right:40px;

font-size:45px;

color:#fff;

cursor:pointer;

}