/* =========================
GLOBAL
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#fff;
color:#222;
overflow-x:hidden;
}

a{
text-decoration:none;
}

/* =========================
HEADER
========================= */

header{
position:sticky;
top:0;
z-index:9999;

display:flex;
justify-content:space-between;
align-items:center;

padding:18px 5%;

background:rgba(255,255,255,.96);

backdrop-filter:blur(14px);

box-shadow:0 4px 18px rgba(0,0,0,.06);
}

.logo img{
height:70px;
width:auto;
object-fit:contain;
}

nav{
display:flex;
align-items:center;
gap:28px;
flex-wrap:wrap;
}

nav a{
font-size:15px;
font-weight:600;
color:#222;
transition:.3s;
position:relative;
}

nav a:hover{
color:#b68b2d;
}

nav a::after{
content:"";
position:absolute;
left:0;
bottom:-8px;
width:0;
height:2px;
background:#b68b2d;
transition:.3s;
}

nav a:hover::after{
width:100%;
}

/* =========================
PAGE HERO
========================= */

.page-banner{
height:240px;

background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url("images/black-marble.jpg");

background-size:cover;
background-position:center;

display:flex;
align-items:center;
justify-content:center;

text-align:center;
}

.page-banner h1{
font-size:58px;
font-weight:700;
color:#fff;
letter-spacing:1px;
text-shadow:0 5px 20px rgba(0,0,0,.5);
}

/* =========================
FOOTER
========================= */

footer{
background:
linear-gradient(rgba(0,0,0,.86),rgba(0,0,0,.92)),
url("images/black-marble.jpg");

background-size:cover;
background-position:center;

color:#fff;

border-top:4px solid #b68b2d;

padding:55px 5% 22px;
}

.footer-top{
max-width:1550px;
margin:auto;

display:grid;
grid-template-columns:1.15fr 1fr 1fr .75fr;

gap:42px;

padding-bottom:38px;

border-bottom:1px solid rgba(212,175,55,.35);
}

.footer-logo{
height:95px;
margin-bottom:18px;
}

footer h3{
color:#d4af37;
margin-bottom:18px;
font-size:22px;
}

footer p,
footer a{
color:#ddd;
font-size:15px;
line-height:1.9;
}

footer a:hover{
color:#d4af37;
}

.contact-item{
display:flex;
gap:15px;
align-items:flex-start;
margin-bottom:24px;
}

.contact-item i{
font-size:24px;
color:#d4af37;
min-width:28px;
margin-top:6px;
}

.social-icons{
display:flex;
gap:14px;
margin-top:15px;
}

.social-icons a{
width:48px;
height:48px;
display:flex;
align-items:center;
justify-content:center;
border:1px solid #b68b2d;
border-radius:50%;
color:#d4af37;
font-size:18px;
transition:.3s;
}

.social-icons a:hover{
background:#d4af37;
color:#111;
}

.copyright{
max-width:1550px;
margin:24px auto 0;
text-align:center;
color:#aaa;
font-size:13px;
line-height:1.8;
}

/* =========================
WHATSAPP
========================= */

.whatsapp-home{
position:fixed;
left:20px;
bottom:20px;
z-index:99999;

display:flex;
align-items:center;
gap:12px;

padding:12px 20px;

background:#25D366;

border-radius:50px;

box-shadow:0 8px 30px rgba(0,0,0,.35);

transition:.3s;
}

.whatsapp-home:hover{
transform:translateY(-4px);
}

.whatsapp-home i{
font-size:42px;
color:#fff;
}

.whatsapp-home span{
font-size:16px;
font-weight:700;
color:#fff;
letter-spacing:.3px;
}

/* =========================
BUTTONS
========================= */

.btn{
display:inline-block;
padding:14px 32px;
border-radius:6px;
font-size:15px;
font-weight:600;
transition:.3s;
}

.btn-gold{
background:#b68b2d;
color:#fff;
}

.btn-gold:hover{
background:#d4af37;
transform:translateY(-4px);
}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

header{
flex-direction:column;
padding:18px;
}

.logo img{
height:58px;
}

nav{
justify-content:center;
gap:14px;
margin-top:12px;
}

nav a{
font-size:13px;
}

.page-banner{
height:200px;
}

.page-banner h1{
font-size:38px;
}

.footer-top{
grid-template-columns:1fr;
text-align:center;
}

.social-icons{
justify-content:center;
}

.whatsapp-home{
left:12px;
bottom:12px;
padding:10px 16px;
}

.whatsapp-home i{
font-size:34px;
}

.whatsapp-home span{
font-size:13px;
}

}