/* Chopz Men's Salon – Static site styles */
:root {
  --color-bg: #0a0a0a;
  --color-surface: #141414;
  --color-card: #1a1a1a;
  --color-foreground: #fafafa;
  --color-muted: #a1a1a1;
  --color-primary: #c9a962;
  --color-primary-hover: #d4b872;
  --max-width: 80rem;
  --nav-height: 5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--color-bg);
  color: var(--color-foreground);
  line-height: 1.6;
}

h1, h2, h3, .font-serif {
  font-family: "Playfair Display", Georgia, serif;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background 0.3s, border-color 0.3s;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-foreground);
  text-decoration: none;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--color-foreground);
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

.nav-cta .phone {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 0.875rem;
}

.nav-cta .phone:hover {
  color: var(--color-foreground);
}

/* Google rating in header */
.nav-google-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.6rem;
  border-radius: 0.375rem;
  background: rgba(201, 169, 98, 0.12);
  border: 1px solid rgba(201, 169, 98, 0.3);
  color: var(--color-foreground);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}
.nav-google-rating:hover {
  background: rgba(201, 169, 98, 0.2);
  border-color: var(--color-primary);
}
.nav-rating-stars {
  color: var(--color-primary);
  letter-spacing: 0.05em;
}
.nav-rating-score {
  font-weight: 700;
  color: var(--color-foreground);
}
.nav-rating-label {
  color: var(--color-muted);
  font-size: 0.75rem;
}
.nav-google-rating--mobile {
  display: inline-flex;
  gap: 0.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--color-primary);
  color: #0a0a0a;
  border: none;
  border-radius: 0.375rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--color-primary-hover);
}

/* Mobile menu */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  color: var(--color-foreground);
  cursor: pointer;
  padding: 0;
}

.nav-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.nav-mobile {
  display: none;
  background: var(--color-surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1rem 1.5rem;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 0.5rem 0;
  color: var(--color-muted);
  text-decoration: none;
  font-weight: 500;
}

.nav-mobile a:hover {
  color: var(--color-foreground);
}

.nav-mobile .btn {
  width: 100%;
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .nav-links,
  .nav-cta {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

/* Main content – offset for fixed nav */
main {
  padding-top: var(--nav-height);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: #0a0a0a linear-gradient(135deg, #1a1510 0%, #0a0a0a 50%, #0d0d0d 100%);
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}

.hero .tagline {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin: 0 0 1.5rem;
}

.hero .sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.hero .desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

/* Sections */
.section {
  padding: 5rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section.section-card {
  background: var(--color-card);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem;
  text-align: center;
}

.section-subtitle {
  color: var(--color-muted);
  font-size: 1.125rem;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

/* Gallery / Meet the team */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0.5rem;
  background: var(--color-surface);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-2px);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.375rem;
  background: rgba(201, 169, 98, 0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.card p {
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

/* About layout */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.5rem;
}

.about-badge {
  background: var(--color-primary);
  color: #0a0a0a;
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
  text-align: center;
  display: inline-block;
  margin-top: 1rem;
}

.about-badge .big {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.about-badge .small {
  font-size: 0.875rem;
  font-weight: 500;
}

.highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}

.highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-foreground);
  font-weight: 500;
}

.highlights li::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: 700;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.5rem;
}

.contact-card a {
  color: var(--color-muted);
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--color-primary);
}

/* Footer */
.footer {
  background: var(--color-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 1rem 1.5rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.footer h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--color-foreground);
}

.footer p,
.footer a {
  color: var(--color-muted);
  font-size: 0.875rem;
  margin: 0 0 0.5rem;
}

.footer a {
  text-decoration: none;
  display: inline-block;
}

.footer a:hover {
  color: var(--color-primary);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.review-cta {
  display: flex;
  justify-content: center;
  padding: 1rem 1rem 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
  color: var(--color-muted);
}

.footer-bottom p + p {
  margin-top: 0.5rem;
}

.footer-bottom a {
  color: var(--color-muted);
}

.footer-bottom a:hover {
  color: var(--color-primary);
}

/* Page header (for inner pages) */
.page-header {
  padding: 6rem 1rem 4rem;
  text-align: center;
  background: var(--color-card);
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.5rem;
}

.page-header p {
  color: var(--color-muted);
  margin: 0;
  font-size: 1.125rem;
}
