/* Alura Beauty — site styles */
:root {
  --primary: #B2BE4D;          /* brand lemon-olive — from official logo */
  --primary-dark: #8E9A2E;     /* darker hover / headings */
  --primary-soft: #F5F6E8;     /* tinted background wash */
  --accent: #6B7A1E;           /* deep olive for strong emphasis */
  --cream: #FDFCF5;            /* warm cream bg */
  --taupe: #B4A08C;            /* warm neutral */
  --text: #2C2C2C;
  --muted: #6B6B6B;
  --bg: #ffffff;
  --bg-alt: #FDFCF5;
  --border: #E5E0D7;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(110, 120, 50, 0.08);
  --font-body: 'Roboto', system-ui, -apple-system, sans-serif;
  --font-head: 'Roboto Slab', Georgia, serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-dark); text-decoration: none; }
a:hover { color: var(--primary); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--text); margin: 0 0 0.6em; font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.3rem; }

/* -------- Header -------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 50px; width: auto; }
.footer-logo { height: 60px; width: auto; margin-bottom: 0.8rem; }
.main-nav { display: flex; gap: 1.5rem; }
.main-nav a { color: var(--text); font-weight: 500; font-size: 0.95rem; }
.main-nav a:hover { color: var(--primary); }
.header-cta { font-size: 0.9rem; padding: 0.55rem 1.1rem; }

/* -------- Buttons -------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--text); }
.btn-ghost:hover { background: var(--text); color: #fff; }

/* -------- Hero -------- */
.hero {
  background: linear-gradient(135deg, var(--primary-soft) 0%, #FFFEF5 100%);
  padding: 5rem 0 6rem;
  text-align: center;
}
.hero-inner { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); color: var(--text); }
.hero .lead { font-size: 1.25rem; color: var(--muted); margin: 1.2rem 0 2rem; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* -------- Sections -------- */
.section { padding: 4rem 0; }
.section.alt { background: var(--bg-alt); }
.section-title { text-align: center; margin-bottom: 2.5rem; }

/* -------- Card grid (services) -------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(84, 89, 95, 0.12); color: var(--text); }
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card-body { padding: 1.25rem; }
.card-body h3 { margin-bottom: 0.4rem; }
.card-body p { color: var(--muted); font-size: 0.92rem; margin: 0 0 0.6rem; }
.link-more { color: var(--primary-dark); font-weight: 500; font-size: 0.9rem; }

/* -------- Testimonials -------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0;
}
.testimonial p { font-style: italic; color: var(--text); margin: 0 0 1rem; }
.testimonial cite { color: var(--primary-dark); font-weight: 600; font-style: normal; }

/* -------- CTA banner -------- */
.cta-banner {
  background: var(--primary);
  color: #fff;
  text-align: center;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { font-size: 1.1rem; margin-bottom: 1.5rem; }
.cta-banner .btn-primary { background: #fff; color: var(--primary-dark); }
.cta-banner .btn-primary:hover { background: var(--bg-alt); }

/* -------- Page header -------- */
.page-header {
  background: var(--bg-alt);
  padding: 3.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header h1 { margin-bottom: 0.5rem; }
.page-header .lead, .page-header p { color: var(--muted); font-size: 1.1rem; margin: 0; }

/* -------- Prose (markdown body) -------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose h1, .prose h2, .prose h3 { margin-top: 2rem; }
.prose h1:first-child { display: none; } /* page header shows title */
.prose p { margin: 0 0 1.2rem; }
.prose img { border-radius: var(--radius); margin: 1.5rem 0; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.prose a { color: var(--primary-dark); text-decoration: underline; }

/* -------- Service detail -------- */
.service-detail { max-width: 820px; margin: 0 auto; }
.service-hero { margin: 0 0 2rem; }
.service-hero img { border-radius: var(--radius); width: 100%; max-height: 420px; object-fit: cover; }
.cta-inline { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* -------- Pricelist -------- */
.pricelist { max-width: 900px; margin: 0 auto; }
.pl-category { margin-bottom: 2.5rem; }
.pl-category h2 { color: var(--primary-dark); border-bottom: 2px solid var(--primary); padding-bottom: 0.5rem; }
.pl-items { list-style: none; padding: 0; margin: 0; }
.pl-items li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 0; border-bottom: 1px dashed var(--border);
}
.pl-name { font-weight: 500; flex: 1; }
.pl-meta { display: flex; gap: 1rem; align-items: center; color: var(--muted); }
.pl-dur { font-size: 0.9rem; }
.pl-price { color: var(--primary-dark); font-weight: 600; font-size: 1.05rem; }

/* -------- Stores -------- */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.store-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.store-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.store-card.is-coming_soon { opacity: 0.92; }
.store-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-soft) 0%, #FFFEF5 100%);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.store-placeholder-icon { font-size: 2.4rem; line-height: 1; opacity: 0.7; }
.store-placeholder-text {
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.store-body { padding: 1.4rem; flex: 1; }
.store-body h3 { margin-bottom: 0.5rem; }
.store-body .badge {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: 0.75rem; padding: 0.2rem 0.6rem; border-radius: 999px;
  margin-bottom: 0.6rem; font-weight: 600; letter-spacing: 0.05em;
}
.store-body .addr { color: var(--muted); margin: 0.3rem 0; }
.store-body .phone a { color: var(--primary-dark); font-weight: 500; }
.store-body .hours { color: var(--muted); font-size: 0.9rem; margin-top: 0.6rem; }

/* -------- Gallery -------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}
.gallery-item { margin: 0; overflow: hidden; border-radius: var(--radius); }
.gallery-item img { aspect-ratio: 1/1; object-fit: cover; transition: transform 0.3s; }
.gallery-item img:hover { transform: scale(1.05); }

/* -------- FAQ -------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  padding: 0;
}
.faq-item summary {
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  color: var(--text);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--primary); font-size: 1.4rem; line-height: 1; }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 1.5rem 1.2rem; color: var(--muted); }

/* -------- Contact -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form iframe { width: 100%; min-height: 520px; border: 0; border-radius: var(--radius); }
.contact-store {
  background: var(--bg-alt);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.contact-store h3 { margin-bottom: 0.4rem; }
.contact-store p { margin: 0.3rem 0; color: var(--muted); font-size: 0.95rem; }

/* -------- Footer -------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.footer-grid h4 { color: var(--text); margin-bottom: 0.8rem; font-size: 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.4rem; }
.footer-grid a { color: var(--muted); font-size: 0.95rem; }
.footer-grid a:hover { color: var(--primary); }
.footer-grid p { color: var(--muted); font-size: 0.95rem; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }

/* -------- Mobile nav (simple) -------- */
@media (max-width: 820px) {
  .main-nav { display: none; }
  .header-cta { padding: 0.5rem 1rem; }
}
