/* Royal Men's Salon - Style Sheet
   Website Redesign By Rooted.com
   v=20260605 */

:root {
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --card: #1e1e1e;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #a07830;
  --white: #ffffff;
  --gray: #aaaaaa;
  --font-main: 'Montserrat', sans-serif;
  --font-accent: 'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-main);
  scroll-behavior: smooth;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.navbar-logo img {
  width: 205px;
  height: 58px;
  object-fit: contain;
}
.navbar-logo span {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 100px 5% 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1200 50%, #0d0d0d 100%);
  opacity: 0.8;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.12) 0%, transparent 70%);
}

.hero-content { position: relative; z-index: 2; max-width: 750px; }

.hero-tag {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.hero h1 {
  font-family: var(--font-accent);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--white);
}
.hero h1 span { color: var(--gold); }

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--gray);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  transition: all 0.3s;
  border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.25);
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-phone {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.hero-phone a {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  transition: color 0.3s;
}
.hero-phone a:hover { color: var(--gold-light); }
.hero-phone .phone-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulse-ring 2s infinite;
}
.hero-phone .phone-icon svg { width: 20px; height: 20px; fill: var(--black); }

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}

/* ── SECTION BASE ── */
section { padding: 80px 5%; }
.section-label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-title span { color: var(--gold); }
.section-sub { color: var(--gray); font-size: 1rem; line-height: 1.7; max-width: 600px; }
.section-head { margin-bottom: 3.5rem; }
.gold-line {
  width: 50px; height: 2px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
}

/* ── ABOUT ── */
#about { background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 4rem;
  align-items: center;
}
.about-imgs {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 12px;
}
.about-imgs img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-imgs img:hover { transform: scale(1.03); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
.about-imgs img:first-child { grid-column: 1 / -1; height: 300px; }

.about-text .badges { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.5rem 0; }
.badge {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
}

.cert-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
}
.cert-strip img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; border: 1px solid var(--gold); }
.cert-strip .cert-info p { font-size: 0.8rem; color: var(--gray); }
.cert-strip .cert-info strong { font-size: 0.9rem; color: var(--white); }

/* ── SERVICES ── */
#services { background: var(--black); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--card);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ── DEALS ── */
#deals { background: var(--dark); }
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.25rem;
}
.deal-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  aspect-ratio: 3/4;
}
.deal-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.deal-card:hover img { transform: scale(1.06); }
.deal-card .deal-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 1.5rem 1rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.deal-card:hover .deal-overlay { transform: translateY(0); }
.deal-overlay span { color: var(--gold); font-weight: 700; font-size: 1rem; }

/* ── GALLERY ── */
#gallery { background: var(--black); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .g-overlay { opacity: 1; }
.g-overlay svg { width: 40px; height: 40px; fill: var(--white); }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: min(90vw, 900px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 0 60px rgba(201,168,76,0.2);
}
.lb-close {
  position: absolute;
  top: 20px; right: 25px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}
.lb-close:hover { color: var(--gold); }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.lb-prev { left: 15px; }
.lb-next { right: 15px; }
.lb-prev:hover, .lb-next:hover { background: var(--gold); color: var(--black); }

/* ── GROOM PACKAGES ── */
#packages { background: var(--dark); }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.pkg-card {
  background: var(--card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.pkg-card.featured {
  border-color: var(--gold);
  transform: scale(1.03);
}
.pkg-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 14px; right: -28px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 40px;
  transform: rotate(45deg);
}
.pkg-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.pkg-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.pkg-name { font-family: var(--font-accent); font-size: 1.5rem; color: var(--gold); margin-bottom: 0.25rem; }
.pkg-days { font-size: 0.75rem; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.5rem; }
.pkg-price { font-size: 2.5rem; font-weight: 800; color: var(--white); margin-bottom: 1.75rem; }
.pkg-price span { font-size: 1rem; color: var(--gray); font-weight: 400; }
.pkg-features { list-style: none; text-align: left; margin-bottom: 2rem; }
.pkg-features li {
  font-size: 0.85rem;
  color: var(--gray);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pkg-features li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; flex-shrink: 0; }

/* ── BOOK CTA ── */
#book {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1200 50%, #0d0d0d 100%);
  text-align: center;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}
#book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.1) 0%, transparent 65%);
}
.book-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.book-content .section-title { font-size: clamp(2.2rem, 6vw, 4rem); }
.book-number {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(201,168,76,0.08);
  border: 2px solid var(--gold);
  border-radius: 100px;
  padding: 1rem 2.5rem;
  margin: 2rem 0;
  transition: all 0.3s;
}
.book-number:hover { background: rgba(201,168,76,0.18); transform: scale(1.03); }
.book-number svg { width: 28px; height: 28px; fill: var(--gold); flex-shrink: 0; }
.book-number span {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}
.book-or { color: var(--gray); margin: 1rem 0; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  transition: all 0.3s;
  box-shadow: 0 6px 25px rgba(37,211,102,0.3);
}
.whatsapp-btn:hover { background: #1ebe5d; transform: translateY(-3px); box-shadow: 0 10px 35px rgba(37,211,102,0.4); }
.whatsapp-btn svg { width: 24px; height: 24px; fill: var(--white); flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 50px 5% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0,2fr) minmax(0,1fr) minmax(0,1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-brand p { font-size: 0.85rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 18px; height: 18px; fill: var(--gold); }
.footer-social a:hover svg { fill: var(--black); }

.footer-col h4 { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; color: var(--gray); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col .contact-item { display: flex; gap: 0.6rem; margin-bottom: 0.75rem; align-items: flex-start; }
.footer-col .contact-item svg { width: 16px; height: 16px; fill: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-col .contact-item span { font-size: 0.85rem; color: var(--gray); }
.footer-col .contact-item a { font-size: 0.85rem; color: var(--gray); transition: color 0.3s; }
.footer-col .contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--gold); }

/* ── FLOATING WHATSAPP ── */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}
.float-wa:hover { transform: scale(1.12); box-shadow: 0 10px 35px rgba(37,211,102,0.55); }
.float-wa svg { width: 30px; height: 30px; fill: var(--white); }
.float-wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  section { padding: 60px 5%; }

  .navbar-logo img { width: 165px; height: 52px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: minmax(0,1fr); gap: 2rem; }
  .about-imgs { order: -1; }
  .about-imgs img { height: 200px; }
  .about-imgs img:first-child { height: 250px; }

  .footer-grid { grid-template-columns: minmax(0,1fr); gap: 2rem; }

  .pkg-card.featured { transform: scale(1); }
  .pkg-card.featured:hover { transform: translateY(-6px); }

  .lb-prev { left: 5px; }
  .lb-next { right: 5px; }

  .book-number { padding: 0.85rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 300px; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
