/* Rena Massage CSS */
:root {
  color-scheme: dark light;
  --bg: #f6f3ed;
  --surface: #ffffff;
  --surface-muted: #f4efe5;
  --text: #1f2c2a;
  --text-muted: #5a605b;
  --accent: #0d6470;
  --accent-strong: #196d6f;
  --accent-soft: #6aa297;
  --highlight: #d97a2d;
  --border: rgba(31,44,42,0.1);
  --shadow: 0 18px 60px rgba(23, 33, 30, 0.08);
  --surface-soft: #a7a7a7;
}

:root[data-theme="dark"] {
  --bg: #0f1412;
  --surface: #161f1a;
  --surface-muted: #192621;
  --text: #eef4ef;
  --text-muted: #b6c4bb;
  --accent: #6dc9b8;
  --accent-strong: #9ee2cf;
  --accent-soft: #57b29b;
  --highlight: #f6ad5f;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  --surface-soft: #16221c;
}

:root[data-theme="dark"] .card-soft {
  background: #393939c2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  flex-wrap: wrap;
  justify-content: space-between;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  margin-right: 0.5rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-left: auto;
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 11;
}

.hamburger-menu span {
  width: 100%;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.icon-button {
  border: none;
  background: var(--surface);
  color: var(--text);
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background 0.2s ease, transform 0.2s ease;
}

.icon-button:hover {
  transform: translateY(-1px);
  background: var(--surface-muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
}

.button-primary {
  background: #d97a2d;
  color: #fff;
}

.button-secondary {
  background: var(--surface);
  color: var(--accent-strong);
  border-color: var(--border);
}

.hero {
  padding: 4rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: 2rem;
  margin: 0.5rem 0 1rem;
}

.eyebrow {
  color: var(--highlight);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.hero-text {
  color: #fff;
}

.card p,
.faq-item p,
.info-list li,
.blog-copy p {
  color: var(--text-muted);
}

.section-intro p {
  color: #d97a2d;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-panel .panel-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.panel-card h2 {
  margin-top: 0;
}

.feature-list,
.info-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.feature-list li,
.info-list li {
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before,
.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--highlight);
}

.section {
  padding: 3rem 0;
}

.section-light {
  background: var(--surface-muted);
}

.hero,
.section-hero {
  background: var(--surface);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero::after,
.section-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 20, 18, 0.5), rgba(15, 20, 18, 0.85));
  pointer-events: none;
}

.hero .section-intro,
.section-hero .section-intro {
  position: relative;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.section-hero .section-intro p {
  color: #fff;
}

.hero-visual {
  margin-top: 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.page-index .hero,
.page-index .section-hero {
  background-image: url("assets/rena massage.webp");
}

.page-services .section-hero {
  background-image: url("assets/rena massage pria.webp");
}

.page-testimonials .section-hero {
  background-image: url("assets/refleksi massage.webp");
}

.page-blog .section-hero {
  background-image: url("assets/rena massage.webp");
}

.page-contact .section-hero {
  background-image: url("assets/refleksi massage.webp");
}

.page-faq .section-hero {
  background-image: url("assets/rena massage pria.webp");
}

.page-booking .section-hero {
  background-image: url("assets/refleksi massage.webp");
}

.section-intro {
  max-width: 680px;
}

.section-intro h2,
.section-intro h1 {
  margin: 0.75rem 0 1rem;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-media {
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.card-media img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card,
.service-card,
.quote-card,
.quote-card-large,
.blog-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.5rem;
}

.card-soft {
  background: #ffffffc2;
  color: var(--text);
}

.card-soft h3 {
  color: var(--text);
}

.card-soft p {
  color: var(--text-muted);
}

.service-card h2,
.blog-copy h3,
.faq-item h2 {
  margin-top: 0;
}

.price {
  margin: 1rem 0 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.price p {
  margin: 0.25rem 0;
  font-size: 1rem;
}

.quote-card,
.quote-card-large {
  font-style: italic;
}

.quote-card span,
.quote-card-large span {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  color: var(--text-muted);
}

.quote-card-large {
  min-height: 220px;
}

.section-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.booking-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.booking-form label {
  display: block;
  font-weight: 600;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background: var(--surface);
  color: var(--text);
}

.note {
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-card h2 {
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--accent-strong);
  text-decoration: none;
}

.faq-list {
  display: grid;
  gap: 1.2rem;
}

.faq-item h2 {
  margin-bottom: 0.5rem;
}

.blog-search {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.blog-search input {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background: var(--surface);
  color: var(--text);
}

.blog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-image {
  min-height: 180px;
  overflow: hidden;
  border-radius: 1rem;
}

.blog-image img {
  width: 100%;
  height: auto;
  display: block;
}

.empty-message {
  margin-top: 1.5rem;
  color: var(--text-muted);
}

.site-footer {
  padding: 2rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

footer {
  padding: 2rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}

footer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand-footer {
  font-weight: 700;
}
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 4.5rem;
  height: 4.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  z-index: 20;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.whatsapp-float img {
  width: 3rem;
  height: 3rem;
  display: block;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 4rem;
    height: 4rem;
  }
  .whatsapp-float img {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 900px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hamburger-menu {
    display: flex;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    width: 100%;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    margin: 0;
    z-index: 10;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    padding: 0.75rem;
    display: block;
  }

  .header-inner {
    flex-wrap: nowrap;
  }

  .header-actions {
    width: auto;
    justify-content: flex-end;
  }

  .header-actions .button-primary {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}


@media (max-width: 640px) {
  .container {
    width: min(100%, calc(100% - 1.5rem));
  }

  .brand-mark {
    width: 1.75rem;
    height: 1.75rem;
  }

  .main-nav {
    gap: 0.5rem;
  }
}
