/* ==========================================================
   BELLE NAILS — MAIN STYLESHEET
   Sections:
     1. Design tokens (colors, fonts, spacing)
     2. Base / typography
     3. Buttons & utilities
     4. Navbar
     5. Hero
     6. Section heading helpers
     7. Services
     8. About
     9. Prices
    10. Gallery
    11. Reviews
    12. Contact / form
    13. Footer
    14. Responsive overrides
   ========================================================== */

/* ----------------------------------------------------------
   1. DESIGN TOKENS
   Tweak these values to re-brand the whole site quickly.
   ---------------------------------------------------------- */
:root {
  --color-bg:        #fdf8f5;   /* main cream background */
  --color-bg-alt:    #faf1ec;   /* alternating section bg */
  --color-pink:      #e9a4ae;   /* primary accent */
  --color-pink-soft: #f6d4d8;   /* light accent / blob */
  --color-pink-dark: #d18891;   /* hover / pressed */
  --color-text:      #2c2024;   /* heading dark */
  --color-muted:     #6b5a5e;   /* body / muted text */
  --color-border:    #ecdcd9;   /* dividers */
  --color-white:     #ffffff;

  /* Armenian-first font stacks with Latin fallbacks.
     Noto Serif/Sans Armenian render Armenian script cleanly,
     while Playfair/Poppins handle any remaining Latin characters. */
  --font-heading: 'Noto Serif Armenian', 'Playfair Display', Georgia, serif;
  --font-body:    'Noto Sans Armenian', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-soft: 0 20px 50px -20px rgba(180, 120, 130, 0.25);
  --shadow-card: 0 10px 30px -12px rgba(180, 120, 130, 0.18);

  --section-py: 6rem;
}

/* ----------------------------------------------------------
   2. BASE / TYPOGRAPHY
   ---------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-muted);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  font-weight: 600;
  letter-spacing: -0.5px;
}

h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); line-height: 1.1; }
h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); line-height: 1.2; }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.1rem; font-weight: 600; }

a { color: var(--color-pink-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--color-text); }

img { max-width: 100%; }

/* Cream surface helper */
.bg-cream-soft { background: rgba(253, 248, 245, 0.92); backdrop-filter: blur(10px); }

/* Pink text helper */
.text-pink { color: var(--color-pink); }

/* ----------------------------------------------------------
   3. BUTTONS & UTILITIES
   ---------------------------------------------------------- */
.btn {
  font-weight: 500;
  letter-spacing: .3px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-pink {
  background: var(--color-pink);
  color: #fff;
  border: 1px solid var(--color-pink);
}
.btn-pink:hover,
.btn-pink:focus {
  background: var(--color-pink-dark);
  border-color: var(--color-pink-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(209, 136, 145, 0.6);
}

.btn-outline-dark {
  border-color: var(--color-text);
  color: var(--color-text);
}
.btn-outline-dark:hover {
  background: var(--color-text);
  color: #fff;
  transform: translateY(-2px);
}

.shadow-soft { box-shadow: var(--shadow-soft); }

/* Generic section spacing */
.section {
  padding: var(--section-py) 0;
}

.section-cream {
  background: var(--color-bg-alt);
}

/* ----------------------------------------------------------
   4. NAVBAR
   ---------------------------------------------------------- */
.navbar {
  padding: .9rem 0;
  border-bottom: 1px solid transparent;
  transition: padding .25s ease, box-shadow .25s ease, background .25s ease;
}

/* Class added by JS when scrolled */
.navbar.scrolled {
  padding: .55rem 0;
  box-shadow: 0 8px 30px -20px rgba(0,0,0,0.15);
  border-bottom-color: var(--color-border);
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -.5px;
}
.brand-logo:hover { color: var(--color-text); }

.navbar .nav-link {
  color: var(--color-text);
  font-weight: 500;
  margin: 0 .65rem;
  position: relative;
  font-size: .95rem;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--color-pink);
  transition: all .3s ease;
  transform: translateX(-50%);
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 22px;
}
.navbar .nav-link:hover { color: var(--color-pink-dark); }

/* ----------------------------------------------------------
   5. HERO
   ---------------------------------------------------------- */
.hero {
  position: relative;
  padding: 9rem 0 5rem;
  background:
    radial-gradient(circle at 80% 20%, var(--color-pink-soft) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, #f7e2dd 0%, transparent 40%),
    var(--color-bg);
  overflow: hidden;
}

.hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: .75rem;
  color: var(--color-pink-dark);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-title em {
  font-style: italic;
  color: var(--color-pink-dark);
  font-weight: 500;
}

.hero-lead {
  max-width: 480px;
  font-size: 1.05rem;
  margin: 1.25rem 0 2rem;
}

.hero-actions { margin-bottom: 2.5rem; }

.hero-stats {
  display: flex;
  gap: 2rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  max-width: 480px;
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats .stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-text);
  font-weight: 600;
}
.hero-stats small { color: var(--color-muted); font-size: .8rem; }

/* Hero image + decorative blob */
.hero-image-wrap { position: relative; }
.hero-image {
  position: relative;
  z-index: 2;
  border-radius: 50% 50% 45% 55% / 60% 55% 45% 40%;
  box-shadow: var(--shadow-soft);
  max-height: 540px;
  object-fit: cover;
}
.hero-blob {
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  background: var(--color-pink-soft);
  border-radius: 50% 50% 45% 55% / 60% 55% 45% 40%;
  filter: blur(2px);
  opacity: .55;
  animation: blobFloat 8s ease-in-out infinite;
  z-index: 1;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50%      { transform: translate(8px, -10px) rotate(4deg); }
}

/* ----------------------------------------------------------
   6. SECTION HEADING HELPERS
   ---------------------------------------------------------- */
.section-heading {
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: .75rem;
  color: var(--color-pink-dark);
  font-weight: 500;
  margin-bottom: .75rem;
}

.section-sub {
  color: var(--color-muted);
  margin-top: .75rem;
}

.section-title { margin-bottom: 1rem; }

/* ----------------------------------------------------------
   7. SERVICES
   ---------------------------------------------------------- */
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--color-pink-soft);
  color: var(--color-pink-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: background .3s ease, color .3s ease;
}
.service-card:hover .service-icon {
  background: var(--color-pink);
  color: #fff;
}
.service-image {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-pink-soft);
}
.service-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-card h5 { margin-bottom: .65rem; }
.service-card p { font-size: .92rem; margin-bottom: 1.1rem; }
.service-link {
  font-weight: 500;
  font-size: .9rem;
  color: var(--color-pink-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link i { transition: transform .25s ease; }
.service-link:hover i { transform: translateX(4px); }

/* ----------------------------------------------------------
   8. ABOUT
   ---------------------------------------------------------- */
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; }

.about-badge {
  position: absolute;
  bottom: -22px;
  right: -10px;
  background: #fff;
  padding: .9rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: .8rem;
}
.about-badge i {
  font-size: 1.6rem;
  color: var(--color-pink-dark);
}
.about-badge strong { display: block; color: var(--color-text); font-size: .95rem; }
.about-badge small { color: var(--color-muted); font-size: .78rem; }

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-bottom: .65rem;
}
.about-list i {
  color: var(--color-pink);
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ----------------------------------------------------------
   9. PRICES
   ---------------------------------------------------------- */
.price-group-title {
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
.price-group-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 50px;
  height: 2px;
  background: var(--color-pink);
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-list li {
  display: flex;
  align-items: baseline;
  padding: .85rem 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 1rem;
}
.price-list li:last-child { border-bottom: none; }

.price-name { color: var(--color-text); font-weight: 500; }
.price-dots {
  flex: 1;
  border-bottom: 2px dotted var(--color-border);
  margin: 0 .8rem 4px;
}
.price-value {
  color: var(--color-pink-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  white-space: nowrap;
  text-align: right;
}

/* ----------------------------------------------------------
   10. GALLERY
   ---------------------------------------------------------- */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .4s ease;
}
.gallery-item::after {
  content: "\F52A"; /* Bootstrap Icons "zoom-in" glyph fallback */
  font-family: 'bootstrap-icons';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  background: rgba(44, 32, 36, 0.45);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

/* ----------------------------------------------------------
   11. REVIEWS
   ---------------------------------------------------------- */
.review-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  border: 1px solid var(--color-border);
  transition: transform .3s ease, box-shadow .3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.review-stars {
  color: #e8b65a;
  margin-bottom: 1rem;
  font-size: .95rem;
}
.review-text {
  font-style: italic;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  font-size: .95rem;
}
.review-person {
  display: flex;
  align-items: center;
  gap: .9rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-pink-soft);
  color: var(--color-pink-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: .9rem;
  font-family: var(--font-heading);
}
.review-person strong { display: block; color: var(--color-text); font-size: .95rem; }
.review-person small { color: var(--color-muted); font-size: .8rem; }

/* ----------------------------------------------------------
   12. CONTACT / FORM
   ---------------------------------------------------------- */
.contact-info { padding-right: 1rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-item i {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #fff;
  color: var(--color-pink-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.05rem;
  box-shadow: var(--shadow-card);
}
.contact-item strong { display: block; color: var(--color-text); margin-bottom: .15rem; }
.contact-item p { margin: 0; color: var(--color-muted); font-size: .92rem; }
.contact-item a { color: var(--color-muted); }
.contact-item a:hover { color: var(--color-pink-dark); }

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1rem;
  background: #fff;
  border-radius: 999px;
  color: var(--color-text);
  font-size: .85rem;
  font-weight: 500;
  border: 1px solid var(--color-border);
  transition: all .25s ease;
}
.social-btn:hover {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
}
.social-btn-pink { background: var(--color-pink); color: #fff; border-color: var(--color-pink); }
.social-btn-pink:hover { background: var(--color-pink-dark); border-color: var(--color-pink-dark); }
.social-btn-green { background: #25d366; color: #fff; border-color: #25d366; }
.social-btn-green:hover { background: #1fb557; border-color: #1fb557; }

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.contact-map iframe,
.contact-map embed,
.contact-map object {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.booking-form {
  background: #fff;
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.booking-form .form-label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: .35rem;
}
.booking-form .form-control,
.booking-form .form-select {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: .7rem .9rem;
  font-size: .95rem;
}
.booking-form .form-control:focus,
.booking-form .form-select:focus {
  border-color: var(--color-pink);
  box-shadow: 0 0 0 3px rgba(233, 164, 174, 0.18);
}
.form-success-msg {
  background: #ecf8ec;
  color: #2f7a36;
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.service-prefilled {
  animation: prefill-flash .9s ease;
}
@keyframes prefill-flash {
  0%   { box-shadow: 0 0 0 0    rgba(233, 164, 174, 0.6); }
  40%  { box-shadow: 0 0 0 8px  rgba(233, 164, 174, 0.0); }
  100% { box-shadow: 0 0 0 0    rgba(233, 164, 174, 0.0); }
}

/* ----------------------------------------------------------
   13. FOOTER
   ---------------------------------------------------------- */
.site-footer {
  background: #2c2024;
  color: #cbb9bc;
  padding: 4rem 0 2rem;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-logo:hover { color: #fff; }
.footer-text { font-size: .92rem; line-height: 1.7; color: #cbb9bc; }
.site-footer h6 {
  color: #fff;
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: #cbb9bc; font-size: .92rem; }
.footer-links a:hover { color: var(--color-pink); }

.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: .95rem;
  transition: all .25s ease;
}
.footer-social a:hover {
  background: var(--color-pink);
  transform: translateY(-2px);
}

.footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 2.5rem 0 1.5rem;
}
.site-footer small { color: #8c787c; font-size: .82rem; }
.site-footer small a:hover { color: var(--color-pink); }

/* ----------------------------------------------------------
   13b. LIGHTBOX (gallery carousel)
   Activated by JS when a gallery item is clicked.
   ---------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(20, 14, 16, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: lightboxIn .25s ease;
}
.lightbox[hidden] { display: none !important; }

@keyframes lightboxIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-content {
  margin: 0;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox-img {
  max-width: 92vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  background: #2c2024;
  animation: lightboxImgIn .3s ease;
}
@keyframes lightboxImgIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: .9rem;
  text-align: center;
  max-width: 600px;
}

/* Buttons (close + prev + next) */
.lightbox-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.lightbox-btn:hover,
.lightbox-btn:focus-visible {
  background: var(--color-pink);
  border-color: var(--color-pink);
  outline: none;
}
.lightbox-close { top: 1.25rem; right: 1.25rem; }
.lightbox-prev  { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.06); }

.lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: .85rem;
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

/* Lock body scroll while lightbox is open */
body.lightbox-open { overflow: hidden; }

/* Mobile: smaller buttons, tighter spacing */
@media (max-width: 575.98px) {
  .lightbox { padding: 1rem; }
  .lightbox-btn { width: 40px; height: 40px; font-size: 1rem; }
  .lightbox-close { top: 1rem; right: 1rem; }
  .lightbox-prev  { left: .75rem; }
  .lightbox-next  { right: .75rem; }
  .lightbox-img   { max-height: 70vh; }
  .lightbox-caption { font-size: .8rem; }
}

/* ----------------------------------------------------------
   14. RESPONSIVE OVERRIDES
   ---------------------------------------------------------- */
@media (max-width: 991.98px) {
  :root { --section-py: 4.5rem; }

  .hero { padding: 7rem 0 3rem; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-stats { margin-left: auto; margin-right: auto; justify-content: center; }
  .hero-image-wrap { margin-top: 2.5rem; }

  .navbar-collapse {
    background: #fff;
    margin-top: .75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
  }
  .navbar .nav-link { margin: .25rem 0; }
  .navbar .btn-pink { margin-top: .75rem; align-self: flex-start; }

  .about-badge { right: 50%; transform: translateX(50%); }
}

@media (max-width: 575.98px) {
  :root { --section-py: 3.5rem; }
  .hero-stats { gap: 1.25rem; }
  .booking-form { padding: 1.5rem; }
  .social-buttons .social-btn { font-size: .8rem; padding: .5rem .8rem; }
}
