/* Base */
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #0e0f11;
  color: #fff;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background: #0e0f11;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  color: #facc15;
}

.logo-icon {
  width: 24px;
  height: 24px;
  background: #facc15;
  border-radius: 4px;
  margin-right: 8px;
}

.nav-desktop a {
  margin: 0 15px;
  font-size: 16px;
  color: #ccc;
}

.nav-desktop a:hover {
  color: #facc15;
}

.nav-actions .link {
  color: #ccc;
  margin-right: 10px;
}

/* --- BUTTON FIX: BLACK TEXT ONLY --- */
.btn-yellow {
  background: #facc15;
  color: #000; /* Black text */
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.3s, box-shadow 0.3s;
}

.btn-yellow:hover {
  background: #eab308;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5);
}

/* Mobile nav */
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #111;
  position: absolute;
  top: 60px;
  width: 100%;
  padding: 20px 0;
}

.mobile-menu a {
  color: #ccc;
  padding: 10px 0;
}

/* --- MOBILE BUTTON FIX: BLACK TEXT --- */
.mobile-menu .btn-yellow {
  background: #facc15;
  color: #000; /* Black text */
  margin-top: 10px;
  width: 80%;
  align-self: center;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.mobile-menu.open { display: flex; }

body {
  font-family: Arial, sans-serif;
  background: url('barber.png') center/cover no-repeat fixed;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}


.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.highlight {
  color: #facc15;
}

.hero p {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.metrics {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  font-size: 16px;
  color: #facc15;
}

.metrics strong {
  font-size: 28px;
  display: block;
  color: #fff;
}

/* Features */
.features {
  padding: 100px 0 60px;
  background: #111;
  color: #fff;
  text-align: center;
}

.features h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #facc15;
}

.features p {
  color: #bbb;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

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

.card h3 {
  color: #facc15;hover
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  color: #ccc;
}

.cta-center {
  margin-top: 50px;
}

/* Footer */
.footer {
  background: #0e0f11;
  color: #888;
  text-align: center;
  padding: 25px 0;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .hamburger { display: block; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .metrics { flex-direction: column; gap: 15px; }
}/* Force black text on all Get Started buttons */
.btn-yellow,
.btn-yellow:link,
.btn-yellow:visited,
.btn-yellow:hover,
.nav-actions .btn-yellow,
.mobile-menu .btn-yellow,
.cta-buttons .btn-yellow,
.cta-center .btn-yellow {
  color: #000 !important;
}
@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .hamburger { display: block; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .metrics { flex-direction: column; gap: 15px; }

  /* Mobile fix: higher contrast button text */
  .mobile-menu .btn-yellow {
    color: #fff !important;
    background: #facc15;
  }
}