/*
Theme Name: Beauty Orbit Modern
Theme URI: https://beauty.orbit.bluzetta.com
Author: BluZetta
Description: Non-Elementor rebuild for header, footer, and homepage.
Version: 1.0.0
Text Domain: beauty-orbit-modern
*/

:root {
  --bg: #f4f8fa;
  --surface: #ffffff;
  --ink: #102027;
  --muted: #4a5b63;
  --brand: #04a7b3;
  --brand-dark: #0b7f88;
  --accent: #0f172a;
  --line: #d6e4ea;
  --shadow: 0 16px 40px rgba(11, 28, 36, 0.12);
  --radius: 18px;
  --wrap: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 0%, #e9f7fa 0%, #f4f8fa 45%, #f4f8fa 100%);
  line-height: 1.6;
}

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

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

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(244, 248, 250, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(214, 228, 234, 0.8);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 138px;
  height: auto;
}

.brand__text {
  display: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.primary-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.primary-nav a {
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--accent);
  opacity: 0.85;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  opacity: 1;
  color: var(--brand-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, #17c5d2 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--accent);
  font-size: 1.1rem;
}

.home-hero {
  padding: 5.2rem 0 3.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.hero-copy {
  padding: 2rem;
  background: linear-gradient(145deg, #ffffff 0%, #eff8fb 100%);
  border: 1px solid #d8ecf1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.hero-copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  color: #0e1a23;
}

.hero-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-list {
  margin: 1.25rem 0 1.55rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
}

.hero-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
}

.btn,
.home-hero .wp-block-button__link,
.home-hero a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, #17c5d2 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 26px rgba(4, 167, 179, 0.3);
}

.btn:hover {
  filter: brightness(0.96);
}

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #d8ecf1;
  box-shadow: var(--shadow);
  min-height: 360px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 3.5rem 0;
}

.section--packages {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 1.6rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 0.75rem;
}

.section-head h2 {
  margin: 0.4rem 0 0.75rem;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.packages-grid {
  margin-top: 1.5rem;
}

.section--services {
  background: linear-gradient(180deg, #f4f8fa 0%, #f7fbfd 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d8ecf1;
  box-shadow: 0 8px 26px rgba(16, 32, 39, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.service-card__body {
  padding: 1rem;
}

.service-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.section--faq {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.faq-card {
  background: #f6fbfd;
  border: 1px solid #d8ecf1;
  border-radius: 16px;
  padding: 1.25rem;
}

.faq-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
}

.section--contact {
  padding-top: 2.8rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(120deg, #0f172a 0%, #16344b 100%);
  color: #f7fcff;
  border-radius: 20px;
  padding: 1.6rem;
}

.contact-card h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.contact-card p {
  margin: 0;
  color: #cfe8f1;
}

.contact-card .btn {
  background: #15c8d4;
  box-shadow: none;
}

.site-footer {
  margin-top: 3rem;
  padding: 2.4rem 0 1.4rem;
  background: #081119;
  color: #d5e3ea;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
}

.footer-brand img {
  width: 128px;
}

.footer-col h4 {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8cced6;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  color: #d5e3ea;
  opacity: 0.9;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(140, 206, 214, 0.2);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.86rem;
}

.entry-wrap {
  width: min(100% - 2rem, 860px);
  margin-inline: auto;
  padding: 2rem 0 3rem;
}

.entry-wrap h1,
.entry-wrap h2,
.entry-wrap h3,
.entry-wrap h4 {
  color: #0f1e29;
}

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

  .hero-media {
    min-height: 260px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    position: fixed;
    inset: 65px 1rem auto 1rem;
    z-index: 999;
    background: #fff;
    border: 1px solid #d8ecf1;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 1rem;
    display: none;
  }

  body.nav-open .primary-nav {
    display: block;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .services-grid,
  .faq-grid,
  .footer-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .hero-copy {
    padding: 1.3rem;
  }
}
