/* ============================================
   Sensational Hair — Public Landing Page
   Brand: Hot pink #D6196E + Lime green #8CB401
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
  min-height: 48px;
  min-width: 48px;
}

.btn:active {
  transform: scale(0.97);
}

.btn-pink {
  background: #D6196E;
  color: #FFFFFF;
  border-color: #D6196E;
}

.btn-pink:hover {
  background: #b8155e;
  border-color: #b8155e;
}

.btn-green {
  background: transparent;
  color: #8CB401;
  border-color: #8CB401;
}

.btn-green:hover {
  background: #8CB401;
  color: #FFFFFF;
}

.btn-pink-large {
  background: #D6196E;
  color: #FFFFFF;
  border-color: #D6196E;
  padding: 1rem 3rem;
  font-size: 1.125rem;
}

.btn-pink-large:hover {
  background: #b8155e;
  border-color: #b8155e;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1A1A1A;
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
  padding: 2rem 1.5rem 6rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  margin: 0 auto 1.5rem;
}

.hero h1 {
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.hero h1 span {
  display: block;
  color: #D6196E;
}

.hero-tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25rem;
  color: #ccc;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hero-badge {
  display: inline-block;
  background: #8CB401;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* Hero wave (bottom of hero) */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services {
  padding: 4rem 0;
  background: #FFFFFF;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: #FAFAFA;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: #D6196E;
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #666;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.services-note {
  text-align: center;
  margin-top: 2.5rem;
  color: #888;
  font-size: 0.9375rem;
  font-style: italic;
}

/* ===========================
   HOURS & LOCATION SECTION
   =========================== */
.info {
  padding: 4rem 0;
  background: #FDF2F7;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.info-block h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.info-block h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #D6196E;
  border-radius: 3px;
}

/* Hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid #f0d6e4;
}

.hours-table td {
  padding: 0.625rem 0;
  font-size: 1rem;
}

.hours-table td:first-child {
  font-weight: 600;
  width: 50%;
}

.hours-table .closed {
  color: #999;
}

/* Location details */
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.location-detail svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #D6196E;
  margin-top: 0.2rem;
}

.location-detail a {
  color: #D6196E;
  font-weight: 600;
}

.location-detail a:hover {
  text-decoration: underline;
}

.walkins-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #8CB401;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-top: 0.5rem;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta {
  padding: 4rem 0;
  background: #1A1A1A;
  color: #FFFFFF;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.cta p {
  color: #ccc;
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #111;
  color: #999;
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer a {
  color: #D6196E;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-divider {
  width: 50px;
  height: 2px;
  background: #333;
  margin: 1rem auto;
  border: none;
}

/* ===========================
   PRIVACY PAGE
   =========================== */
.privacy-header {
  background: #1A1A1A;
  padding: 1rem 1.5rem;
}

.privacy-header-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.privacy-header-link img {
  border-radius: 8px;
}

.privacy-header-link:hover {
  color: #D6196E;
}

.privacy {
  padding: 3rem 0 4rem;
  background: #FFFFFF;
}

.privacy-content {
  max-width: 720px;
  margin: 0 auto;
}

.privacy-content h3 {
  font-size: 1.125rem;
  margin: 2rem 0 0.5rem;
  color: #1A1A1A;
}

.privacy-content h3:first-child {
  margin-top: 0;
}

.privacy-content p {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
}

.privacy-content a {
  color: #D6196E;
  font-weight: 600;
}

.privacy-content a:hover {
  text-decoration: underline;
}

/* ===========================
   RESPONSIVE — TABLET (768px+)
   =========================== */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-tagline {
    font-size: 1.5rem;
  }

  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .info-block h2::after {
    /* keep left-aligned */
  }
}

/* ===========================
   RESPONSIVE — DESKTOP (1024px+)
   =========================== */
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4rem;
  }

  .hero-logo {
    width: 120px;
    height: 120px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title {
    font-size: 2.5rem;
  }

  .cta h2 {
    font-size: 2.5rem;
  }
}

/* ===========================
   LARGE DESKTOP (1400px+)
   =========================== */
@media (min-width: 1400px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
