/* ===========================
   Christina's Beauty Salon
   Shared Stylesheet
   =========================== */

:root {
  --gold: #b8935a;
  --gold-light: #d4ad7a;
  --dark: #1a1410;
  --cream: #faf7f2;
  --white: #ffffff;
  --text: #2e2620;
  --text-muted: #7a6e66;
  --border: #e8e0d6;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

em { font-style: italic; color: var(--gold); }

p { margin-bottom: 1rem; color: var(--text-muted); }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.center { text-align: center; }

.section-label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-primary:hover { background: #a07a45; border-color: #a07a45; text-decoration: none; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); text-decoration: none; }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #fff; text-decoration: none; }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,20,16,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184,147,90,0.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold-light);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links .nav-cta {
  background: var(--gold);
  color: #fff;
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
}
.nav-links .nav-cta:hover { background: var(--gold-light); }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(26,20,16,0.98);
  padding: 1rem 2rem;
  gap: 0.75rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600948836101-f9ffda59d250?w=1600&q=80');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,20,16,0.5) 0%, rgba(26,20,16,0.3) 50%, rgba(26,20,16,0.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 780px;
  animation: fadeUp 1s ease both;
}
.hero-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.hero-content h1 { color: #fff; margin-bottom: 1.2rem; }
.hero-sub { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-stars {
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.hero-stars span { color: rgba(255,255,255,0.6); margin-left: 0.4rem; font-size: 0.8rem; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

/* INTRO BAND */
.intro-band {
  background: var(--dark);
  border-top: 1px solid rgba(184,147,90,0.2);
  border-bottom: 1px solid rgba(184,147,90,0.2);
}
.intro-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.band-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.band-icon { color: var(--gold); font-size: 1rem; }
.band-sep { width: 1px; height: 2rem; background: rgba(184,147,90,0.25); }

/* ABOUT */
.about {
  padding: 6rem 0;
  background: var(--white);
}
.about-img-wrap { position: relative; }
.about-img-frame {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: #fff;
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 8px 24px rgba(184,147,90,0.4);
}
.about-badge strong { font-size: 1.5rem; display: block; }
.about-text { padding-left: 1rem; }
.about-text p { font-size: 1rem; }

/* SERVICES */
.services {
  padding: 6rem 0;
  background: var(--cream);
}
.services h2 { margin-bottom: 2.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.service-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }

/* REVIEWS */
.reviews {
  padding: 6rem 0;
  background: var(--dark);
}
.reviews .section-label { color: var(--gold-light); }
.reviews h2 { color: #fff; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,147,90,0.2);
  border-radius: 10px;
  padding: 2rem;
}
.review-card.featured {
  background: rgba(184,147,90,0.12);
  border-color: var(--gold);
}
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-card p { color: rgba(255,255,255,0.7); font-style: italic; font-size: 0.93rem; }
.reviewer { color: var(--gold-light); font-size: 0.78rem; letter-spacing: 0.08em; margin-top: 1rem; }
.reviews-cta {
  text-align: center;
  margin-top: 2.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-bottom: 0;
}
.reviews-cta a { color: var(--gold-light); }

/* CONTACT */
.contact {
  padding: 6rem 0;
  background: var(--cream);
}
.contact-cols { align-items: start; gap: 4rem; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
}
.contact-detail strong { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-family: 'Jost', sans-serif; font-weight: 500; }
.contact-detail span, .contact-detail a { color: var(--text); font-size: 0.95rem; }
.hours-list { display: flex; flex-direction: column; gap: 0.3rem; }
.hours-list div { display: flex; justify-content: space-between; gap: 2rem; font-size: 0.88rem; color: var(--text-muted); }
.hours-list div.closed span:last-child { color: #b0a09a; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; border-radius: 12px; }

/* FOOTER */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(184,147,90,0.15);
}
.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}
.footer-logo span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-family: 'Jost', sans-serif;
}
.footer p { color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-bottom: 0.5rem; }
.footer a { color: rgba(255,255,255,0.6); }
.footer-nav { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-copy { margin-top: 1.5rem; color: rgba(255,255,255,0.25) !important; font-size: 0.75rem !important; }

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.social-links a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.social-links a:hover { color: var(--gold-light); text-decoration: none; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 480px; margin: 0 auto; }
  .about-badge { bottom: -1rem; right: -0.5rem; }
  .contact-cols { grid-template-columns: 1fr; }
  .map-wrap { order: -1; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .band-sep { display: none; }
  .intro-band-inner { gap: 1rem; justify-content: flex-start; }
  h2 { font-size: 1.8rem; }
}
