/* =========================
   RESET / BASE
========================= */
*{ margin:0; padding:0; box-sizing:border-box; }

html, body{
  width:100%;
  height:100%;
  background:#000;
  overflow-x:hidden;
  font-family: Arial, Helvetica, sans-serif;
}

a{ color:inherit; text-decoration:none; }

/* =========================
   TOP BAR (LOGO + HAMBURGER)
========================= */
.topbar{
  position:sticky;
  top:0;
  z-index:999;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 18px;
  background:rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.10);
}

.logo{
  color:#fff;
  font-weight:800;
  letter-spacing:-0.5px;
  max-width:75%;
}

/* Hamburger button */
.menu-btn{
  margin-left:auto;              /* forces it to the right */
  width:44px;
  height:44px;
  display:none;                  /* desktop hidden */
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:900;
  border-radius:12px;
  cursor:pointer;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.18);
  color:#fff;
}

/* =========================
   NAV MENU (THE LINKS)
   This is nav#navMenu
========================= */
#navMenu{
  max-width:1100px;
  margin:0 auto;
  padding:12px 18px;
  display:flex;                 /* desktop visible */
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  justify-content:center;
  background:#000;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

#navMenu a{
  color:rgba(255,255,255,0.85);
  font-size:14px;
  font-weight:800;
}

#navMenu a:hover{ color:#fff; }

#navMenu .nav-cta{
  padding:8px 12px;
  border-radius:12px;
  background:linear-gradient(180deg,#f6d365,#d4af37);
  color:#111 !important;
  font-weight:900;
}

/* =========================
   HERO
========================= */
.hero{
  position:relative;
  width:100%;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 8%;
  background-image:url("https://boricuasincorporated.com/wp-content/uploads/2026/02/barber.desktop.png");
  background-size:cover;
  background-position:75% center;
  background-repeat:no-repeat;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.45) 55%,
    rgba(0,0,0,0.20) 100%
  );
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:720px;
  color:#fff;
  text-align:center;
}

.hero-content h1{
  font-size:56px;
  line-height:1.05;
  margin:0 0 16px;
  font-weight:900;
  letter-spacing:-1px;
}

.hero-content h1 span{
  font-style:italic;
  font-weight:800;
  opacity:0.95;
}

.hero-sub{
  font-size:18px;
  line-height:1.5;
  margin:0 0 18px;
  opacity:0.92;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-bottom:26px;
}

.hero-badges span{
  font-size:13px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:16px;
  padding:14px 20px;
  border-radius:16px;
  transition:all .2s ease;
  border:1px solid transparent;
  width:100%;
  max-width:360px;
}

.btn-primary{
  background:linear-gradient(180deg,#f6d365,#d4af37);
  color:#111;
  box-shadow:0 10px 25px rgba(0,0,0,0.35);
}

.btn-secondary{
  background:rgba(255,255,255,0.10);
  color:#fff;
  border:1px solid rgba(255,255,255,0.22);
}

/* =========================
   PAGE
========================= */
.page{
  padding:26px 18px 90px;
  background:#0b0b0b;
  min-height:100vh;
}

.card{
  max-width:860px;
  margin:18px auto;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:18px;
  padding:22px;
  color:#fff;
  box-shadow:0 18px 40px rgba(0,0,0,0.40);
}

.section-title{ font-size:22px; margin-bottom:8px; }
.muted{ opacity:0.85; margin-bottom:18px; }

.quick-links{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:12px;
  margin-top:14px;
}

.quick-link{
  padding:14px;
  border-radius:14px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  color:#fff;
  font-weight:900;
  text-align:center;
}

.steps{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  margin:16px 0;
}

.step{
  padding:14px;
  border-radius:14px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.10);
}

.list{
  display:grid;
  gap:12px;
  margin:16px 0;
}

.list-item{
  padding:14px;
  border-radius:14px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.10);
}

/* =========================
   FOOTER
========================= */
.footer{
  max-width:860px;
  margin:20px auto 80px;
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  color:#fff;
  text-align:center;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-bottom:10px;
}

.footer-links a{
  color:rgba(255,255,255,0.85);
  font-size:14px;
  font-weight:700;
}

/* Sticky CTA */
.sticky-book{
  display:none;
  position:fixed;
  left:14px;
  right:14px;
  bottom:14px;
  z-index:999;
  text-align:center;
  padding:14px 16px;
  border-radius:16px;
  font-weight:900;
  background:linear-gradient(180deg,#f6d365,#d4af37);
  color:#111;
  box-shadow:0 18px 40px rgba(0,0,0,0.55);
}

/* =========================
   DESKTOP HERO FIX
========================= */
@media (min-width: 769px){
  .hero{
    justify-content:flex-start;
    padding:70px 8%;
    background-position:90% center;
  }

  .hero-overlay{
    background:linear-gradient(
      90deg,
      rgba(0,0,0,0.78) 0%,
      rgba(0,0,0,0.45) 55%,
      rgba(0,0,0,0.08) 100%
    );
  }

  .hero-content{
    text-align:left;
    max-width:560px;
  }

  .hero-badges,
  .hero-buttons{
    justify-content:flex-start;
  }
}

/* =========================
   MOBILE MENU RULES (THE FIX)
========================= */
@media (max-width: 768px){

  /* show hamburger on mobile */
  .menu-btn{ display:inline-flex; }

  /* hide the menu links until tapped */
  #navMenu{
    display:none !important;
    position:absolute;
    left:14px;
    right:14px;
    top:64px;                   /* dropdown below topbar */
    margin:0;
    padding:14px;
    flex-direction:column;
    gap:10px;
    border-radius:18px;
    background:rgba(0,0,0,0.95);
    border:1px solid rgba(255,255,255,0.10);
    box-shadow:0 18px 40px rgba(0,0,0,0.55);
    z-index:998;
  }

  /* show when JS adds nav-open */
  #navMenu.nav-open{
    display:flex !important;
  }

  #navMenu a{
    display:block;
    width:100%;
    padding:12px 12px;
    border-radius:14px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.10);
    text-align:center;
  }

  /* mobile hero */
  .hero{
    padding:46px 18px;
    background-image:url("https://boricuasincorporated.com/wp-content/uploads/2026/02/barber.mobile.png");
    background-position:center top;
  }

  .hero-content h1{ font-size:44px; }
  .hero-sub{ font-size:16px; }

  .steps{ grid-template-columns:1fr; }
  .quick-links{ grid-template-columns:1fr; }

  .sticky-book{ display:block; }
}
@media (min-width: 769px){
  .menu-btn{ display:none !important; }
  #navMenu{ display:flex !important; position:static !important; }
}