/* ==================== CONFIG ==================== */

:root{
--bg:#0f0f0f;
--bg2:#1a1a1a;
--gold:#C6A75E;
--gold-light:#e6c67c;
--white:#fff;
--gray:#aaa;
}

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

body{
font-family:'Montserrat',sans-serif;
background:var(--bg);
color:var(--white);
}

/* ==================== HEADER ==================== */

header{
position:fixed;
width:100%;
top:0;
padding:18px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,.85);
backdrop-filter:blur(10px);
z-index:1000;
}

.logo{
font-family:'Cinzel';
color:var(--gold);
font-size:22px;
}

nav a{
color:white;
margin-left:25px;
text-decoration:none;
font-size:14px;
}

nav a:hover{color:var(--gold);}

/* ==================== HERO ==================== */

.hero{
height:100vh;
background:url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
}

.hero::after{
content:'';
position:absolute;
width:100%;
height:100%;
background:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,.95));
}

.hero-content{
position:relative;
z-index:2;
max-width:800px;
animation:fadeUp 1.5s ease;
}

.hero h1{
font-family:'Cinzel';
font-size:60px;
margin-bottom:20px;
}

.hero p{
color:var(--gray);
margin-bottom:30px;
}

.btn{
padding:15px 35px;
border:none;
cursor:pointer;
font-weight:600;
transition:.4s;
}

.btn-gold{
background:linear-gradient(45deg,var(--gold),var(--gold-light));
color:#000;
}

.btn-gold:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(198,167,94,.4);
}

/* ==================== SERVICES ==================== */

section{
padding:100px 8%;
}

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:50px;
}

.card{
background:var(--bg2);
padding:30px;
border:1px solid transparent;
transition:.4s;
}

.card:hover{
border:1px solid var(--gold);
transform:translateY(-5px);
}

.price{
color:var(--gold);
margin-top:10px;
font-weight:bold;
}

/* ==================== GALERIA ==================== */

.gallery{
column-count:3;
column-gap:15px;
margin-top:50px;
}

.gallery-item{
position:relative;
margin-bottom:15px;
overflow:hidden;
}

.gallery img{
width:100%;
display:block;
transition:.4s;
}

.gallery-item:hover img{
transform:scale(1.1);
}

.gallery-item::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.4);
opacity:0;
transition:.4s;
}

.gallery-item:hover::after{
opacity:1;
}

/* ==================== ADMIN ==================== */

.admin{
display:none;
padding:120px 8%;
background:#111;
min-height:100vh;
}

.admin input{
padding:12px;
margin:5px 0;
width:100%;
background:#222;
color:white;
border:none;
}

.admin-list{
margin-top:30px;
}

.admin-item{
background:#222;
padding:15px;
margin-bottom:10px;
display:flex;
justify-content:space-between;
align-items:center;
}

/* ==================== FOOTER ==================== */

footer{
background:#000;
padding:60px 8%;
margin-top:80px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}

.footer-container h3{
font-family:'Cinzel';
color:var(--gold);
margin-bottom:15px;
}

.footer-container p,
.footer-container a{
color:var(--gray);
font-size:14px;
text-decoration:none;
display:block;
margin-bottom:8px;
}

.footer-container a:hover{
color:var(--gold);
}

.footer-bottom{
text-align:center;
margin-top:40px;
border-top:1px solid #222;
padding-top:20px;
font-size:13px;
color:#777;
}

/* ==================== RESPONSIVO ==================== */

@media(max-width:768px){
.hero h1{font-size:40px;}
.gallery{column-count:1;}
}

@keyframes fadeUp{
from{opacity:0;transform:translateY(40px);}
to{opacity:1;transform:translateY(0);}
}