/*
  Demo website for Glow &amp; Co. Salon
  Built by Website Builder Agent — Phase 3 (safe test mode)
  Last built: 2026-09-19 05:43 UTC
*/

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #1a2a3a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---------- Layout ---------- */
.container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
.section-white { background: #fff; }
.section-gray { background: #f4f7fa; }
.section-dark { background: #13241c; color: #e8f4ec; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e8eef4;
}
.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: #1a2a3a; font-weight: 600; font-size: 1.05rem; }
.brand-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #b0657f 0%, #b0657fdd 100%);
  border-radius: 8px;
  flex-shrink: 0;
}
.brand-text { font-size: 1rem; }
.primary-nav { display: flex; }
.nav-list { display: flex; gap: 1.5rem; }
.primary-nav a {
  color: #3a4a5a;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.primary-nav a:hover { color: #b0657f; border-bottom-color: #b0657f; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.hamburger {
  display: block;
  width: 24px; height: 2px;
  background: #3a4a5a;
  position: relative;
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 24px; height: 2px;
  background: #3a4a5a;
  left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #b0657f;
  color: white;
  border-color: #b0657f;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-large-primary {
  background: white;
  color: #1a2a3a;
  border-color: white;
  padding: 0.9rem 2rem;
  font-size: 1rem;
}
.btn-large-primary:hover { opacity: 0.9; }
.btn-large-secondary {
  background: transparent;
  color: #1a2a3a;
  border-color: #c0c8d0;
  padding: 0.9rem 2rem;
  font-size: 1rem;
}
.btn-large-secondary:hover { border-color: #1a2a3a; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 6rem 1.5rem 5rem;
  text-align: center;
  color: white;
  overflow: hidden;
}
.hero-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.hero-shape { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-pattern { width: 100%; height: 100%; display: block; }
.badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: white;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.92;
  max-width: 520px;
  margin: 0 auto 2rem;
}
.hero-cta { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section-title { font-size: 1.6rem; font-weight: 600; color: #1a2a3a; margin-bottom: 0.6rem; }
.section-title-white { font-size: 1.6rem; font-weight: 600; color: #d8f0e4; margin-bottom: 0.6rem; }
.section-intro { color: #4a5a6a; max-width: 560px; margin-bottom: 1.5rem; }
.section-intro-white { color: #a0c8b4; max-width: 560px; margin-bottom: 1.5rem; }

/* ---------- Service grid ---------- */
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.service-card {
  background: white;
  border: 1px solid #e8eef4;
  border-radius: 12px;
  padding: 1.4rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.service-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #b0657f 0%, #b0657fdd 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.8rem;
  color: white; font-size: 1.3rem;
}
.service-title { font-size: 1rem; font-weight: 600; color: #1a2a3a; margin-bottom: 0.3rem; }
.service-desc { font-size: 0.88rem; color: #5a6a7a; }

/* ---------- About ---------- */
.about-content { max-width: 640px; }
.about-title { font-size: 1.4rem; font-weight: 600; color: #1a2a3a; margin-bottom: 0.8rem; }
.about-text { color: #4a5a6a; margin-bottom: 1rem; }
.about-note { font-size: 0.85rem; color: #8a9aaa; font-style: italic; }

/* ---------- CTA section ---------- */
.cta-section {
  padding: 4rem 1.5rem;
  text-align: center;
  color: white;
}
.cta-inner { max-width: 560px; margin: 0 auto; }
.cta-title { font-size: 1.6rem; font-weight: 600; margin-bottom: 0.6rem; }
.cta-sub { font-size: 1rem; margin-bottom: 1.5rem; }
.cta-btns { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-block { background: #f4f7fa; border-radius: 12px; padding: 1.4rem; margin-bottom: 1.5rem; }
.contact-item { display: flex; flex-direction: column; gap: 0.3rem; }
.contact-label { font-size: 0.8rem; color: #6a7a8a; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-value { font-size: 1rem; color: #1a2a3a; font-weight: 500; }
.contact-cta { margin-bottom: 1rem; }
.contact-note { font-size: 0.85rem; color: #8a9aaa; }

/* ---------- Location ---------- */
.location-block { display: flex; align-items: flex-start; gap: 1rem; background: white; border: 1px solid #e8eef4; border-radius: 12px; padding: 1.2rem 1.4rem; }
.location-icon { font-size: 1.5rem; color: #b0657f; margin-top: 2px; flex-shrink: 0; }
.location-name { font-weight: 600; color: #1a2a3a; margin-bottom: 0.2rem; }
.location-note { font-size: 0.88rem; color: #5a6a7a; }

/* ---------- Footer ---------- */
.site-footer {
  background: #1a2a3a;
  color: #a0b0c0;
  padding: 2.5rem 1.5rem;
  margin-top: 2rem;
}
.footer-inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.footer-brand { font-weight: 600; color: white; font-size: 1rem; margin-bottom: 0.4rem; }
.footer-note { font-size: 0.85rem; opacity: 0.7; margin-bottom: 0.3rem; }
.footer-meta { font-size: 0.8rem; opacity: 0.5; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: #b0657f;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  z-index: 200;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ---------- Mobile ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: white;
    border-bottom: 1px solid #e8eef4;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
  }
  .primary-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-list { flex-direction: column; gap: 0.5rem; }
  .primary-nav a { border-bottom: none; padding: 0.5rem 0; font-size: 1rem; }
  .hero { padding: 4rem 1.2rem 3.5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 260px; }
  .whatsapp-row { flex-direction: column; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .location-block { flex-direction: column; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.3rem; }
}
