/* Tiara MUA — style.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #880e4f;
  --primary-dark: #560027;
  --accent: #f8bbd0;
  --accent-light: #fce4ec;
  --bg: #fff5f9;
  --text: #2d1a24;
  --text-muted: #7a5a68;
  --white: #ffffff;
  --radius: 12px;
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ===== DEMO BAR ===== */
.demo-bar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.demo-bar a {
  color: var(--accent);
  font-weight: 700;
  margin: 0 4px;
}
.demo-bar a:hover { color: #fff; }

/* ===== HEADER / NAV ===== */
header {
  background: var(--white);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.logo span { color: var(--text-muted); font-weight: 400; font-size: 0.85rem; display: block; line-height: 1; }

/* checkbox-hack mobile menu */
#nav-toggle { display: none; }
.nav-icon {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: .3s;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
}
nav ul li a {
  display: block;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  transition: background .2s, color .2s;
}
nav ul li a:hover, nav ul li a.active {
  background: var(--accent-light);
  color: var(--primary);
  text-decoration: none;
}

@media (max-width: 720px) {
  .nav-icon { display: flex; }
  nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--accent);
    padding: 12px 20px 20px;
  }
  #nav-toggle:checked ~ nav { display: block; }
  nav ul { flex-direction: column; gap: 0; }
  nav ul li a { padding: 12px 8px; border-bottom: 1px solid var(--accent-light); border-radius: 0; }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #c2185b 60%, #e91e8c 100%);
  color: var(--white);
  padding: 72px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(248,187,208,.25) 0%, transparent 60%);
}
.hero-inner { max-width: 700px; margin: 0 auto; position: relative; }

.avatar-wrap {
  margin: 0 auto 28px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid var(--accent);
  overflow: hidden;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-wrap svg { width: 90px; height: 90px; }

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 10px;
}
.hero .subtitle {
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero p {
  font-size: 1.08rem;
  color: rgba(255,255,255,.88);
  max-width: 540px;
  margin: 0 auto 32px;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.18); text-decoration: none; }
.btn-white { background: var(--white); color: var(--primary); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--primary); }

.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--accent);
  padding: 28px 20px;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* ===== SECTION ===== */
section { padding: 56px 20px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.section-sub { color: var(--text-muted); margin-bottom: 36px; font-size: 0.97rem; }

/* ===== GRID CARDS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(136,14,79,.07);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(136,14,79,.14); }

.card-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.card-body { padding: 18px; }
.card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; color: var(--primary); }
.card-body p { font-size: 0.9rem; color: var(--text-muted); }
.card-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 2px 12px rgba(136,14,79,.07);
  border-left: 4px solid var(--primary);
  transition: transform .2s;
}
.service-card:hover { transform: translateY(-3px); }
.service-card .icon { font-size: 2rem; margin-bottom: 12px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.service-card .price { font-size: 1.3rem; font-weight: 900; color: var(--primary); margin: 12px 0 8px; }
.service-card .price span { font-size: 0.82rem; font-weight: 400; color: var(--text-muted); }
.service-card ul { list-style: none; margin: 10px 0; }
.service-card ul li { font-size: 0.88rem; color: var(--text-muted); padding: 4px 0; padding-left: 20px; position: relative; }
.service-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* ===== TIMELINE / BIO ===== */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--accent); }
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-year { font-size: 0.8rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; }
.timeline-item h3 { font-size: 1rem; font-weight: 700; margin: 4px 0; }
.timeline-item p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== SKILL PILLS ===== */
.skills { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.skill-pill {
  background: var(--accent-light);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== AWARDS ===== */
.award-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-top: 20px; }
.award-item {
  background: linear-gradient(135deg, var(--primary) 0%, #c2185b 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.award-item .aw-icon { font-size: 1.8rem; margin-bottom: 8px; }
.award-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.award-item p { font-size: 0.82rem; color: var(--accent); }

/* ===== BOOKING FORM ===== */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 2px 20px rgba(136,14,79,.09);
  max-width: 680px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.contact-icon {
  width: 42px; height: 42px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item-text p { font-size: 0.82rem; color: var(--text-muted); }
.contact-item-text strong { font-size: 0.95rem; color: var(--text); }

.social-links { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform .18s;
}
.social-btn:hover { transform: translateY(-2px); text-decoration: none; }
.social-wa { background: #25d366; color: #fff; }
.social-ig { background: linear-gradient(135deg,#e1306c,#833ab4); color: #fff; }
.social-tt { background: #010101; color: #fff; }

/* ===== HIGHLIGHT SECTION ===== */
.highlight-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin-top: 40px;
}
.highlight-section h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; }
.highlight-section p { color: var(--accent); margin-bottom: 24px; }

/* ===== TESTIMONIALS ===== */
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(136,14,79,.07);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 18px;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  font-family: Georgia, serif;
}
.testi-text { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 16px; padding-top: 28px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.testi-role { font-size: 0.78rem; color: var(--text-muted); }

.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 4px; letter-spacing: 2px; }

/* ===== PORTFOLIO FILTER ===== */
.porto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}
.porto-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(136,14,79,.07);
  transition: transform .2s, box-shadow .2s;
}
.porto-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(136,14,79,.16); }
.porto-thumb {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.porto-thumb .overlay {
  position: absolute;
  inset: 0;
  background: rgba(136,14,79,.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s;
}
.porto-card:hover .overlay { background: rgba(136,14,79,.45); }
.overlay-text {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity .25s;
  text-align: center;
}
.porto-card:hover .overlay-text { opacity: 1; }
.porto-info { padding: 16px; }
.porto-info h3 { font-size: 0.97rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.porto-info p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== ABOUT HERO ===== */
.about-hero {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg) 100%);
  padding: 60px 20px;
}
.about-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 640px) { .about-inner { grid-template-columns: 1fr; text-align: center; } }
.about-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #c2185b 100%);
  display: flex; align-items: center; justify-content: center;
  border: 5px solid var(--white);
  box-shadow: 0 4px 24px rgba(136,14,79,.2);
  flex-shrink: 0;
}
.about-avatar svg { width: 100px; height: 100px; }
.about-text h1 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 900; color: var(--primary); margin-bottom: 6px; }
.about-text .tagline { font-size: 1rem; color: var(--text-muted); margin-bottom: 16px; font-style: italic; }
.about-text p { color: var(--text-muted); font-size: 0.97rem; }

/* ===== NOTICE BOX ===== */
.notice {
  background: var(--accent-light);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 0.92rem;
  color: var(--text);
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.7);
  padding: 40px 20px 24px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
@media (max-width: 640px) { .footer-top { grid-template-columns: 1fr; gap: 24px; } }
.footer-brand .logo { color: var(--accent); font-size: 1.1rem; }
.footer-brand p { font-size: 0.88rem; margin-top: 10px; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 0.88rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .05em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: 0.88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; text-align: center; font-size: 0.82rem; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.divider { height: 1px; background: var(--accent); margin: 48px 0; }
.badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.section-alt { background: var(--white); }
