/*
 * Beauty Strokes by Diksha Chugh - Main Theme Stylesheet
 */

:root {
  --ink: #4A2C22;
  --bg: #FBF0EC;
  --rose: #C97A73;
  --rose-dark: #8C4A3D;
  --rose-light: #F3D6CF;
  --topbar-bg: #E8B7AE;
  --line: rgba(35, 29, 26, 0.13);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container-max: 1120px;
  --transition-speed: 0.25s;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  color-scheme: light only;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg) !important;
  color: var(--ink);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-speed) ease, background-color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

a:hover, a:focus {
  color: var(--rose);
}

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

/* Accessibility */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: var(--ink);
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Layout Utilities */
.wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

h1 { font-size: 2.9rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }

/* Buttons */
.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  padding: 14px 28px;
  border-radius: 2px;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-speed) ease;
}

.btn-primary {
  background: var(--rose);
  color: #ffffff !important;
  border-color: var(--rose);
}

.btn-primary:hover, .btn-primary:focus {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  color: #ffffff !important;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover, .btn-outline:focus {
  background: var(--rose);
  color: #ffffff !important;
  border-color: var(--rose);
}

/* Top Announcement Bar */
.topbar {
  background: var(--topbar-bg);
  color: var(--ink);
  font-size: 0.82rem;
  text-align: center;
  padding: 8px 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Main Navigation */
nav.site-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 998;
}

nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

nav .logo img {
  height: 52px;
  width: auto;
}

nav .logo .site-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
}

nav .nav-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 26px;
}

nav ul.nav-menu {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
}

nav ul.nav-menu li {
  position: relative;
}

nav ul.nav-menu li a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
}

nav ul.nav-menu li a:hover,
nav ul.nav-menu li.current-menu-item > a {
  color: var(--rose);
}

.nav-cta {
  background: var(--rose);
  color: #ffffff !important;
  padding: 10px 18px;
  border-radius: 2px;
  font-size: 0.92rem;
  font-weight: 500;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--rose-dark);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
  padding: 70px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero h1 {
  font-size: 2.9rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.05rem;
  color: #4d4238;
  margin-bottom: 30px;
  max-width: 44ch;
}

.hero-img {
/*   aspect-ratio: 4 / 5; */
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(74, 44, 34, 0.08);
}

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

/* The Experience Section */
.experience {
  padding: 60px 24px;
  background: #ffffff;
  text-align: center;
}

.experience h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.experience > .wrap > p {
  max-width: 540px;
  margin: 0 auto 40px;
  color: #4d4238;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: left;
  padding-top: 18px;
  border-top: 2px solid var(--ink);
}

.step .n {
  color: var(--rose);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.4rem;
  display: block;
}

.step p {
  font-size: 0.92rem;
  margin-top: 6px;
  color: var(--ink);
}

/* Services Section */
.services {
  padding: 70px 24px;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.services > .wrap > p {
  max-width: 580px;
  margin: 0 auto 40px;
  color: #4d4238;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}

.service-group {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 24px;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.service-group:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(74, 44, 34, 0.05);
}

.service-group h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--rose-dark);
}

.service-group ul {
  list-style: none;
  font-size: 0.9rem;
}

.service-group li {
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
  color: #4d4238;
}

.service-group li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 1.1rem;
  line-height: 1;
}

/* About Section */
.about {
  padding: 70px 24px;
  background: #ffffff;
}

.about-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about p {
  color: #4d4238;
  margin-bottom: 16px;
}

.about ul {
  list-style: none;
  margin: 20px 0 28px;
}

.about li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #4d4238;
}

.about li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--rose);
  font-weight: bold;
}

.about-img {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(74, 44, 34, 0.08);
}

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

/* Artist Profile */
.artist {
  padding: 70px 24px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.artist-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.artist-img {
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  max-width: 360px;
  box-shadow: 0 10px 30px rgba(74, 44, 34, 0.08);
}

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

.artist h2 {
  font-size: 2.1rem;
  margin-bottom: 6px;
}

.artist .role {
  font-size: 0.92rem;
  color: var(--rose-dark);
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.artist p {
  color: #4d4238;
  margin-bottom: 14px;
}

/* How It Works Section */
.how {
  padding: 70px 24px;
  text-align: center;
}

.how h2 {
  font-size: 2rem;
  margin-bottom: 44px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}

.how-card .n {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--rose);
  font-weight: 700;
  display: block;
}

.how-card h3 {
  font-size: 1.2rem;
  margin: 8px 0;
}

.how-card p {
  font-size: 0.9rem;
  color: #4d4238;
}

/* Portfolio Section */
.portfolio {
  padding: 70px 24px;
  background: #ffffff;
  text-align: center;
}

.portfolio h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.portfolio > p {
  max-width: 520px;
  margin: 0 auto 36px;
  color: #4d4238;
  font-size: 0.95rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: #f0eae6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Testimonials Section */
.testimonials {
  padding: 70px 24px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.t-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--rose);
  margin-bottom: 12px;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.t-card p {
  font-size: 0.92rem;
  font-style: italic;
  margin-bottom: 16px;
  color: #3a3025;
  line-height: 1.6;
}

.t-card .who {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

/* FAQ Section */
.faq {
  padding: 70px 24px;
  background: #ffffff;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq-q {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  user-select: none;
}

.faq-q .faq-icon {
  font-size: 1.25rem;
  color: var(--rose);
  font-weight: 600;
  transition: transform 0.2s ease;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease, opacity 0.3s ease;
  font-size: 0.94rem;
  color: #4d4238;
  opacity: 0;
}

.faq-item.open .faq-a {
  max-height: 300px;
  margin-top: 12px;
  opacity: 1;
}

/* Call to Action Section */
.cta {
  background: var(--rose-light);
  color: var(--ink);
  text-align: center;
  padding: 70px 24px;
}

.cta .eyebrow {
  color: var(--rose-dark);
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 26px;
}

.cta .btn-primary {
  border-color: var(--rose);
}

/* Footer */
footer.site-footer {
  background: #ffffff;
  padding: 60px 24px 24px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

footer h4 {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 9px;
  font-size: 0.9rem;
  color: #4d4238;
}

footer li a:hover {
  color: var(--rose);
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: #8a7a63;
  text-align: center;
}

/* Floating Action Icons */
.floating-icons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-icons a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.floating-icons a svg {
  width: 26px;
  height: 26px;
}

.fab-call {
  background: var(--rose-dark);
}

.fab-whatsapp {
  background: #25D366;
}

.fab-instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* Standard Page & Blog Layout */
.site-main {
  padding: 60px 0;
}

.entry-header {
  margin-bottom: 30px;
}

.entry-title {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.entry-meta {
  font-size: 0.88rem;
  color: #8a7a63;
}

.entry-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
}

.entry-content p {
  margin-bottom: 20px;
}

.entry-content ul, .entry-content ol {
  margin: 0 0 20px 24px;
}

.entry-content li {
  margin-bottom: 8px;
}

.entry-content h2, .entry-content h3 {
  margin: 34px 0 16px;
}

/* Elementor Full Width Compatibility */
.elementor-template-full-width .site-main,
.page-template-template-full-width .site-main {
  padding: 0;
  max-width: 100% !important;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-inner, .artist-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .artist-img {
    margin: 0 auto;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .t-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 850px) {
  .menu-toggle {
    display: flex;
  }

  nav .nav-menu-wrapper {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 30px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 997;
  }

  nav .nav-menu-wrapper.is-open {
    transform: translateY(0);
  }

  nav ul.nav-menu {
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 18px;
  }

  nav .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .steps-row,
  .how-grid,
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .services-grid,
  .t-grid,
  .steps-row,
  .how-grid,
  .gallery,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
  .floating-icons {
    bottom: 16px;
    right: 16px;
  }
  .floating-icons a {
    width: 46px;
    height: 46px;
  }
  .floating-icons a svg {
    width: 22px;
    height: 22px;
  }
}
