/* ============================================
   Sharyum — Beauty · Makeup · Confidence
   ============================================ */

:root {
  --cream: #f8ecdd;
  --cream-deep: #efd9bb;
  --header-bg: #f0dcc099;
  --rose: #c94f7c;
  --rose-deep: #a83660;
  --rose-light: #f9dce6;
  --gold: #b8860b;
  --gold-light: #d9b45c;
  --ink: #2b2320;
  --ink-soft: #6b5c56;
  --white: #ffffff;
  --border: #ecdcd0;
  --shadow: 0 12px 30px rgba(169, 74, 112, 0.12);
  --shadow-soft: 0 6px 18px rgba(169, 74, 112, 0.08);
  --radius: 18px;
  --radius-sm: 10px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0 0 0.5em;
  line-height: 1.2;
  color: var(--ink);
}

p { margin: 0 0 1em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--tight { padding: 56px 0; }

.section--alt {
  background: var(--white);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.section-head p {
  color: var(--ink-soft);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(120deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(169,74,112,0.22); }

.btn--gold {
  background: linear-gradient(120deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(184,134,11,0.2);
}

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

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--rose);
  color: var(--rose-deep);
}

.btn--outline:hover { background: var(--rose-light); }

.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(90, 60, 40, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rose-deep);
}

.nav__brand img {
  height: 76px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--rose);
  transition: width 0.2s ease;
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  width: 100%;
}

.nav__links a.is-active { color: var(--rose-deep); }

.nav__cta { display: flex; align-items: center; gap: 18px; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 860px) {
  .nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .nav__toggle {
    display: block;
  }
  .nav__brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    transition: max-height 0.25s ease;
  }
  .nav__links.is-open { max-height: 400px; }
  .nav__links li { width: 100%; }
  .nav__links a {
    display: block;
    padding: 16px 24px;
  }
  .nav__links a::after { display: none; }
  .nav__cta .btn {
    padding: 11px 18px;
    font-size: 0.86rem;
  }
}

@media (max-width: 380px) {
  .nav__brand img { height: 56px; }
  .nav__cta .btn { padding: 10px 14px; font-size: 0.8rem; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
}

.hero--full {
  min-height: 460px;
  display: flex;
  align-items: center;
  padding: 36px 0;
}

.hero__overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  padding-left: clamp(24px, 7vw, 110px);
  padding-right: 24px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--cream-deep) 0%, rgba(239, 217, 187, 0.55) 42%, rgba(239, 217, 187, 0.15) 62%, transparent 78%);
}

.hero__content {
  max-width: 540px;
  background: rgba(248, 236, 221, 0.88);
  backdrop-filter: blur(8px);
  padding: 36px 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.hero__content .eyebrow { color: var(--gold); }

.hero__content h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  color: var(--ink);
}

.hero__content h1 em {
  font-style: normal;
  color: var(--rose-deep);
}

.hero__content p {
  font-size: 1.02rem;
  color: var(--ink-soft);
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

@media (max-width: 940px) {
  .hero--full { min-height: 380px; padding: 28px 0; }
  .hero__content { padding: 28px 24px; }
  .hero__bg::after {
    background: linear-gradient(100deg, var(--cream-deep) 0%, rgba(239, 217, 187, 0.7) 55%, rgba(239, 217, 187, 0.35) 75%, rgba(239,217,187,0.1) 100%);
  }
}

@media (max-width: 560px) {
  .hero__content { max-width: none; padding: 22px 18px; border-radius: 18px; }
  .hero__bg::after {
    background: rgba(239, 217, 187, 0.72);
  }
}

/* ---------- Cards: Services / Membership ---------- */

.grid {
  display: grid;
  gap: 24px;
}

.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.contact-grid {
  grid-template-columns: 1.2fr 1fr;
  align-items: flex-start;
  gap: 48px;
}

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

@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card {
  text-align: center;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-deep);
  font-size: 1.4rem;
}

.service-card h3 { font-size: 1.2rem; }

.service-card p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Membership cards ---------- */

.plan-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan-card--featured {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.plan-card__badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.plan-card h3 {
  font-size: 1.35rem;
  color: var(--rose-deep);
}

.plan-card__list {
  list-style: none;
  margin: 18px 0 26px;
  padding: 0;
  flex-grow: 1;
}

.plan-card__list li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.94rem;
  display: flex;
  gap: 10px;
}

.plan-card__list li:last-child { border-bottom: none; }

.plan-card__list li .tick {
  color: var(--gold);
  flex-shrink: 0;
}

.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}

.plan-tab {
  padding: 10px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.plan-tab.is-active {
  border-color: var(--rose);
  background: var(--rose-light);
  color: var(--rose-deep);
}

.plan-group { display: none; }
.plan-group.is-active { display: grid; }

/* ---------- Team ---------- */

.team-grid {
  max-width: 480px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.team-card__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--rose-light);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-card__body { padding: 26px 22px 30px; }

.team-card__body h3 { margin-bottom: 0; }

/* ---------- Services page listing ---------- */

.service-group {
  margin-bottom: 56px;
}

.service-group__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--rose-light);
  padding-bottom: 12px;
}

.service-group__head h2 {
  font-size: 1.5rem;
  color: var(--rose-deep);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 700px) {
  .service-list { grid-template-columns: 1fr; }
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.96rem;
}

.service-item span { font-weight: 500; }

.service-item a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose-deep);
  border: 1px solid var(--rose);
  padding: 6px 14px;
  border-radius: 999px;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.service-item a:hover { background: var(--rose); color: var(--white); }

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(120deg, var(--rose-deep) 0%, var(--rose) 100%);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius);
  padding: 56px 32px;
}

.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.88); }

.cta-band .btn--gold { box-shadow: 0 12px 30px rgba(0,0,0,0.18); }

/* ---------- Enquiry form ---------- */

.enquiry {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; }
}

.field { margin-bottom: 20px; }

.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}

.field .req { color: var(--rose-deep); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose);
}

.field textarea { resize: vertical; min-height: 110px; }

.field-hp { position: absolute; left: -9999px; top: -9999px; }

.form-msg {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
}

.form-msg.is-success {
  display: block;
  background: #e5f4ea;
  color: #256b3c;
  border: 1px solid #bfe3cb;
}

.form-msg.is-error {
  display: block;
  background: #fbe7e7;
  color: #9c2b2b;
  border: 1px solid #f3c2c2;
}

/* ---------- Contact info ---------- */

.contact-info { display: flex; flex-direction: column; gap: 22px; }

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose-deep);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info__item h4 { margin-bottom: 2px; font-size: 1rem; }
.contact-info__item p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; }

.map-embed {
  margin-top: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ---------- Footer ---------- */

.site-footer {
  background: #241a17;
  color: #efe4dd;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 44px;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand img { height: 84px; margin-bottom: 14px; }

.footer-brand p { color: #c9b8b0; font-size: 0.92rem; max-width: 320px; }

.site-footer h4 {
  color: #efe4dd;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #c9b8b0; font-size: 0.92rem; }
.footer-links a:hover { color: var(--rose-light); }

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #4a3b36;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #efe4dd;
  transition: background 0.2s ease, border-color 0.2s ease;
}

/* Only clickable once a real social URL is added (see footer.php) */
a.social-icon:hover { background: var(--rose-deep); border-color: var(--rose-deep); cursor: pointer; }
span.social-icon { opacity: 0.55; cursor: default; }

.footer-bottom {
  border-top: 1px solid #3a2d29;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: #9c8b84;
}

.footer-bottom a { color: #c9b8b0; }
.footer-bottom a:hover { color: var(--rose-light); }

/* ---------- Page header (inner pages) ---------- */

.page-hero {
  background: var(--cream-deep);
  padding: 70px 0 50px;
  text-align: center;
}

.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
.page-hero p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; }

.partners-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.partners-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: block;
}

@media (max-width: 860px) {
  .partners-grid { grid-template-columns: 1fr; }
  .partners-visual { order: -1; }
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--rose-deep); font-weight: 600; }

/* ---------- Terms / legal typography ---------- */

.legal {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}

@media (max-width: 620px) {
  .legal { padding: 28px 22px; }
}

.legal h2 {
  font-size: 1.2rem;
  color: var(--rose-deep);
  margin-top: 34px;
}

.legal h2:first-child { margin-top: 0; }

.legal p, .legal li { color: var(--ink-soft); font-size: 0.95rem; }

.legal ul { padding-left: 22px; }

.legal .legal-meta {
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 10px;
}

.legal .legal-note {
  background: var(--rose-light);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--rose-deep);
}

/* ---------- Misc ---------- */

.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

.badge-soft {
  display: inline-block;
  background: var(--rose-light);
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ---------- Floating WhatsApp button ---------- */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}

@media (max-width: 560px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}
