
body{
margin:0;
font-family:'Montserrat',sans-serif;
background:#f5f1e8;
color:#333;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* NAVBAR */

.navbar{
background:#fdfbf7;
border-bottom:1px solid #eee;
position:sticky;
top:0;
z-index:999;
}

.nav-wrapper{
display:flex;
justify-content:space-between;
align-items:center;
padding:16px 0;
}

.brand{
display:flex;
align-items:center;
gap:10px;
}

.logo{
height:45px;
}

.brand-title{
font-family:'Playfair Display',serif;
font-size:20px;
color:#b28b3a;
}

/* NAV */

.nav{
display:flex;
align-items:center;
gap:24px;
}

.nav a{
text-decoration:none;
color:#444;
font-weight:500;
position:relative;
}

.nav a::after{
content:'';
position:absolute;
bottom:-6px;
left:0;
width:0;
height:2px;
background:#c6a24a;
transition:0.3s;
}

.nav a:hover::after{
width:100%;
}

.nav a:hover{
color:#c6a24a;
}


.btn-reservar{
background:linear-gradient(135deg,#d4b15a,#b8963d);
color:white;
padding:8px 16px;
border-radius:18px;
font-size:14px;
text-decoration:none;
}

a.btn-reservar:hover{
    color:#ffffff;
}

/* HERO */

.hero{
height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
}

.hero-video{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
z-index:-1;
}

.hero-content{
padding:0 20px;
}

.hero-content h1{
font-family:'Playfair Display',serif;
font-size:56px;
color:white;
}

.hero-content p{
color:white;
font-size:18px;
}

.hero-buttons{
margin-top:20px;
}

.hero-btn{
background:#c6a24a;
color:white;
padding:12px 22px;
border-radius:20px;
text-decoration:none;
margin-right:10px;
}

.hero-btn-outline{
border:1px solid white;
padding:12px 22px;
border-radius:20px;
text-decoration:none;
color:white;
}

/* SALON SECTION */

.salon-section{
padding:120px 0;
}

.section-header{
text-align:center;
max-width:700px;
margin:auto;
margin-bottom:70px;
}

.section-tag{
letter-spacing:3px;
font-size:12px;
color:#b28b3a;
text-transform:uppercase;
}

.section-header h2{
font-family:'Playfair Display',serif;
font-size:42px;
margin:10px 0;
color:#b28b3a;
}

.section-header p{
font-size:16px;
line-height:1.6;
color:#666;
}

.salon-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
}

.salon-card{
background:white;
padding:35px;
border-radius:14px;
text-align:center;
box-shadow:0 20px 40px rgba(0,0,0,0.08);
transition:all .4s ease;
}

.salon-card:hover{
transform:translateY(-10px);
box-shadow:0 30px 60px rgba(0,0,0,0.12);
}

.salon-icon{
font-size:38px;
margin-bottom:15px;
}

.salon-card h3{
font-family:'Playfair Display',serif;
color:#b28b3a;
}

/* FADE ANIMATION */

.fade-in{
opacity:0;
transform:translateY(30px);
transition:all .8s ease;
}

.fade-in.visible{
opacity:1;
transform:translateY(0);
}

.delay{transition-delay:.2s;}
.delay2{transition-delay:.4s;}

/* MOBILE */

.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
}

@media (max-width:900px){

.nav{
position:absolute;
top:70px;
right:0;
background:#fdfbf7;
flex-direction:column;
width:100%;
display:none;
padding:20px;
}

.nav.active{
display:flex;
}

.menu-toggle{
display:block;
}

.salon-grid{
grid-template-columns:1fr;
}

.hero-content h1{
font-size:34px;
}

.hero{
height:80vh;
}

}
