/* INICIO.CSS - versión corregida */

/* Reset general */
*{margin:0;padding:0;box-sizing:border-box;}
html,body{height:100%;}
body{
  font-family:'Montserrat',sans-serif;
  background:#0f0f0f;
  color:#fff;
  line-height:1.6;
  scroll-behavior:smooth;
}

/* Links */
a{text-decoration:none;color:inherit;}

/* =======================================================
   HEADER
   ======================================================= */

.header{
  position:fixed;
  top:0;left:0;right:0;
  height:72px;
  background:rgba(10,10,10,0.92);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 36px;
  z-index:1500;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

/* LOGO REDONDO PREMIUM */
.logo img{
  height:70px;
  width:70px;
  border-radius:50%;
  object-fit:cover;
  background:#fff;
  padding:4px;
  border:2px solid #ff6e33;
}

/* MENU */
.nav{
  display:flex;
  align-items:center;
  gap:26px;   /* <-- Esto faltaba y POR ESO NO SE VEÍA TU MENÚ */
}

.nav a{
  font-weight:600;
  color:#e7e7e7;
  font-size:16px;
  transition:0.18s ease;
}

.nav a:hover,
.nav a.active{
  color:#ff6e33;
  transform:translateY(-2px);
}

/* Espacio debajo del header */
.spacer{height:72px;}

/* =======================================================
   HERO
   ======================================================= */

.hero{
  min-height:calc(100vh - 72px);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  padding:40px 20px;

  background:linear-gradient(180deg,#0b0b0b 0%, #121212 100%);
  background-size:cover;
  background-position:center;
}

/* IMAGEN OPCIONAL */
.hero[data-bg="image"]{
  background-image:url("assets/hero-barber.jpg");
}

/* Overlay */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.42);
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:920px;
  padding:30px;
}

.hero-content h1{
  font-size:clamp(32px,6.5vw,64px);
  font-weight:800;
  color:#f2f2f2;
  margin-bottom:12px;
  letter-spacing:0.6px;
  text-shadow:0 6px 28px rgba(0,0,0,0.6);
}

.hero-content p{
  font-size:clamp(14px,1.6vw,20px);
  color:rgba(255,255,255,0.86);
  margin-bottom:22px;
}

/* BOTÓN */
.btn-primary{
  display:inline-block;
  padding:12px 28px;
  background:#c3542a;
  color:#fff;
  border-radius:10px;
  font-weight:700;
  transition:0.16s ease;
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(195,84,42,0.18);
}

/* RESPONSIVE */
@media(max-width:900px){
  .header{padding:0 20px;height:68px;}
  .spacer{height:68px;}
  .nav{gap:16px;}
  .nav a{font-size:14px;}
}

@media(max-width:480px){
  .header{padding:0 14px;height:64px;}
  .spacer{height:64px;}
  .nav{gap:10px;}
  .nav a{font-size:12px;}
  .hero-content{padding:18px;}
}
