/* ==========================================
   PARVATI JEWELLERS - Main Stylesheet
   Theme: Traditional Saffron & Gold
   ========================================== */



:root {
  /* === SAFFRON THEME COLOURS === */
  --saffron:        #E8650A;
  --saffron-light:  #F5893A;
  --saffron-dark:   #B84D05;
  --saffron-pale:   #FFF3E8;
  --saffron-dim:    rgba(232,101,10,0.15);

  /* Gold accents kept for jewellery feel */
  --gold:           #C9A84C;
  --gold-light:     #E8C97A;
  --gold-dark:      #9A7A2E;
  --gold-pale:      #FFF8E8;
  --gold-dim:       rgba(201,168,76,0.15);

  /* Backgrounds - warm cream/saffron */
  --cream:          #FFF8F0;
  --cream-dark:     #FFF0DC;
  --white:          #FFFFFF;
  --black:          #1A0800;
  --dark:           #2A1200;
  --dark2:          #3D1A00;
  --dark3:          #4A2000;

  /* Text */
  --text:           #3D1A00;
  --text-muted:     #8B5E3C;

  /* Borders */
  --border:         rgba(232,101,10,0.25);
  --border-light:   rgba(232,101,10,0.12);

  /* Fonts */
  --font-display:   'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-body:      'Jost', 'Segoe UI', sans-serif;
  --transition:     all 0.38s cubic-bezier(0.4,0,0.2,1);
  --shadow:         0 16px 56px rgba(232,101,10,0.12);
  --shadow-saffron: 0 8px 32px rgba(232,101,10,0.35);
  --shadow-sm:      0 4px 16px rgba(0,0,0,0.08);
  --radius:         4px;
  --radius-md:      8px;
  --radius-lg:      16px;
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:var(--font-body); background:var(--cream); color:var(--text); line-height:1.75; overflow-x:hidden; }
img  { max-width:100%; display:block; }
a    { text-decoration:none; color:inherit; }
ul   { list-style:none; }

/* ---- UTILITY ---- */
.container   { max-width:1240px; margin:0 auto; padding:0 32px; }
.section     { padding:100px 0; }
.text-center { text-align:center; }

.section-badge {
  display:inline-flex; align-items:center; gap:8px;
  font-size:0.65rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--saffron-dark); background:var(--saffron-dim);
  padding:8px 22px; border-radius:50px; margin-bottom:20px;
  border:1px solid rgba(232,101,10,0.3);
}
.section-title {
  font-family:var(--font-display);
  font-size:clamp(2rem,4vw,3.4rem);
  font-weight:400; letter-spacing:0.03em;
  margin-bottom:16px; color:var(--dark);
  line-height:1.15;
}
.section-sub   { font-size:0.9rem; color:var(--text-muted); max-width:520px; line-height:1.85; }
.section-sub.center { margin:0 auto; }

.gold-line {
  width:52px; height:2px;
  background:linear-gradient(90deg, var(--saffron) 0%, var(--saffron-light) 50%, transparent 100%);
  margin:16px 0 40px; border-radius:2px;
}
.gold-line.center { margin:16px auto 40px; }

/* ---- BUTTONS ---- */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  padding:14px 36px; font-family:var(--font-body);
  font-size:0.75rem; font-weight:600; letter-spacing:0.16em; text-transform:uppercase;
  border-radius:50px; cursor:pointer; border:none;
  transition:var(--transition); position:relative; overflow:hidden;
  white-space:nowrap;
}
.btn::before {
  content:''; position:absolute; inset:0;
  background:rgba(255,255,255,0); transition:background 0.3s;
}
.btn:hover::before { background:rgba(255,255,255,0.1); }

.btn-gold   { background:var(--saffron); color:var(--white); }
.btn-gold:hover { background:var(--saffron-light); transform:translateY(-2px); box-shadow:var(--shadow-saffron); }
.btn-outline { background:transparent; color:var(--saffron); border:2px solid var(--saffron); }
.btn-outline:hover { background:var(--saffron); color:var(--white); }
.btn-dark   { background:var(--dark); color:var(--white); }
.btn-dark:hover { background:var(--dark2); transform:translateY(-2px); }
.btn-wa     { background:#25D366; color:#fff; }
.btn-wa:hover { background:#1ebe57; transform:translateY(-2px); box-shadow:0 6px 20px rgba(37,211,102,0.3); }
.btn-sm     { padding:10px 22px; font-size:0.7rem; }

/* ---- NAVBAR (UNCHANGED - Dark Black Gold) ---- */
/* ===== TOP BAR ===== */
.navbar-topbar {
  background: #ff993a;
  padding: 5px 0;
  width: 100%;
  overflow: hidden;
  max-height: 28px;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
  opacity: 1;
}
.navbar-topbar .container {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: auto !important;
  padding: 0 16px;
  flex-wrap: nowrap;
}
.topbar-item {
  font-size: 0.52rem;
  font-weight: 700;
  color: #0D0B05;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.topbar-dot {
  width: 3px; height: 3px;
  background: #0D0B05;
  border-radius: 50%;
  opacity: 0.35;
  flex-shrink: 0;
}
.topbar-hide-mobile { display: inline; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6,5,1,0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(4,3,0,0.99);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
  border-bottom-color: rgba(201,168,76,0.25);
}
.navbar.scrolled .navbar-main .container { height: 62px; }
.navbar.scrolled .nav-logo img { height: 42px; }
.navbar.scrolled .nav-logo-text .brand { font-size: 1.4rem; }
.navbar.scrolled .nav-logo-text .tagline { display: none; }

.navbar-main { width: 100%; }
.navbar .container { display:flex; align-items:center; justify-content:space-between; height:72px; }

/* LOGO */
.nav-logo { display:flex; align-items:center; gap:14px; text-decoration:none; }
.nav-logo img {
  height:62px; width:auto;
  filter:drop-shadow(0 2px 8px rgba(201,168,76,0.3));
  transition:var(--transition);
}
.nav-logo:hover img { filter:drop-shadow(0 4px 16px rgba(201,168,76,0.5)); transform:scale(1.04); }
.nav-logo-text { display:flex; flex-direction:column; gap:2px; }
.nav-logo-text .brand {
  font-family:var(--font-display); font-size:2.1rem; font-weight:700;
  color:var(--gold-light); letter-spacing:0.04em; line-height:1;
  font-style:italic;
}
.nav-logo-text .jewellers-row {
  display:flex; align-items:center; gap:6px;
}
.nav-logo-text .jewellers-dot {
  width:5px; height:5px; border-radius:50%;
  background:#ff993a; flex-shrink:0;
}
.nav-logo-text .jewellers {
  font-family:var(--font-display); font-size:0.62rem; font-weight:400;
  color:var(--gold); letter-spacing:0.28em; text-transform:uppercase;
  line-height:1;
}
.nav-logo-text .tagline {
  font-size:0.42rem; letter-spacing:0.18em; text-transform:uppercase;
  color:rgba(201,168,76,0.42);
  white-space:nowrap; margin-top:1px;
}

/* NAV LINKS */
.nav-links { display:flex; align-items:center; gap:32px; }
.nav-links a {
  font-size:0.7rem; letter-spacing:0.16em; text-transform:uppercase;
  color:rgba(255,255,255,0.55); transition:var(--transition);
  position:relative; padding-bottom:3px;
  font-weight:400;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-2px; left:0; right:0;
  height:1px; background:linear-gradient(90deg, var(--gold), var(--gold-light));
  transform:scaleX(0); transform-origin:center; transition:var(--transition);
}
.nav-links a:hover { color:var(--gold-light); }
.nav-links a.active { color:var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { transform:scaleX(1); }

/* ACTIONS */
.nav-actions { display:flex; align-items:center; gap:10px; }

/* Hide mobile-only menu items on desktop */
.nav-menu-wa,
.nav-menu-lang { display:none; }

/* Lang Switch */
.lang-switch {
  display:flex; align-items:center; gap:5px;
}
.lang-switch-label {
  font-size:0.62rem; font-weight:700; letter-spacing:0.08em;
  text-transform:uppercase; transition:color 0.2s;
  font-family:var(--font-body);
}
.lang-switch-label.en { color:rgba(201,168,76,0.4); }
.lang-switch-label.hi { color:#ff993a; }
.lang-switch-track {
  width:36px; height:19px; border-radius:20px;
  background:rgba(255,153,58,0.15);
  border:1.5px solid rgba(255,153,58,0.45);
  position:relative; cursor:pointer; flex-shrink:0;
  transition:background 0.2s;
}
.lang-switch-track:hover { background:rgba(255,153,58,0.22); }
.lang-switch-thumb {
  width:13px; height:13px; border-radius:50%;
  background:#ff993a;
  position:absolute; top:2px; right:2px;
  transition:transform 0.25s cubic-bezier(0.4,0,0.2,1), background 0.2s;
  box-shadow:0 1px 4px rgba(255,153,58,0.4);
}
.lang-switch-track.en-active .lang-switch-thumb {
  transform:translateX(-17px);
}
#lang-toggle { display:none; }
.nav-wa-btn {
  display:flex; align-items:center; gap:7px; background:#25D366; color:#fff;
  padding:10px 22px; border-radius:50px;
  font-size:0.68rem; font-weight:500; letter-spacing:0.12em; text-transform:uppercase;
  transition:var(--transition);
  box-shadow:0 2px 12px rgba(37,211,102,0.25);
}
.nav-wa-btn:hover { background:#1ebe57; transform:translateY(-1px); box-shadow:0 6px 20px rgba(37,211,102,0.35); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.08);
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1100;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s;
}
.hamburger:hover {
  background: rgba(201,168,76,0.18);
  border-color: rgba(201,168,76,0.55);
  box-shadow: 0 0 16px rgba(201,168,76,0.15);
}
.hamburger span {
  display: block;
  background: var(--gold-light);
  border-radius: 3px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              opacity 0.25s ease,
              width 0.3s ease,
              background 0.2s ease;
}
.hamburger span:nth-child(1) { width: 22px; height: 2px; }
.hamburger span:nth-child(2) { width: 14px; height: 2px; align-self: flex-start; margin-left: 11px; }
.hamburger span:nth-child(3) { width: 22px; height: 2px; }
.hamburger:hover span { background: var(--gold); }

.hamburger.active {
  background: rgba(201,168,76,0.18);
  border-color: rgba(201,168,76,0.5);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: linear-gradient(160deg, var(--saffron-pale) 0%, #FFF0DC 100%);
  padding: 60px 0 48px;
  text-align: center;
  border-bottom: 1px solid rgba(232,101,10,0.12);
  margin-top: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero::before { display: none; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.page-hero h1 span { color: var(--dark); font-style: normal; }
.page-hero p { font-size: 0.88rem; color: var(--text-muted); max-width: 380px; margin: 0 auto; line-height: 1.6; margin-top: 10px; }

/* ---- FOOTER ---- */
.footer { background:#000000; color:rgba(255,255,255,0.65); padding:64px 0 0; border-top:2px solid var(--saffron); }
.footer-grid { display:grid; grid-template-columns:1.4fr 0.8fr 1fr 1.2fr; gap:36px; padding-bottom:48px; }
.footer-brand .logo-wrap { display:flex; align-items:center; gap:13px; margin-bottom:14px; }
.footer-brand .logo-wrap img { height:48px; }
.footer-brand .brand-name { font-family:var(--font-display); font-size:1.45rem; color:var(--saffron-light); letter-spacing:0.08em; }
.footer-brand p { font-size:0.84rem; color:rgba(255,255,255,0.5); line-height:1.8; margin-bottom:14px; }
.footer-insta-btn { display:inline-flex; align-items:center; gap:7px; background:linear-gradient(45deg,#833ab4,#fd1d1d,#fcb045); border-radius:7px; padding:7px 14px; font-size:0.82rem; color:#fff; text-decoration:none; font-weight:500; transition:opacity 0.2s; }
.footer-insta-btn:hover { opacity:0.85; }
.footer h4 { font-size:0.68rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--saffron-light); margin-bottom:20px; }
.footer ul li { margin-bottom:10px; }
.footer ul li a { font-size:0.85rem; color:rgba(255,255,255,0.5); transition:var(--transition); display:inline-block; }
.footer ul li a:hover { color:var(--saffron-light); transform:translateX(4px); }
.footer-contact-item { display:flex; gap:12px; margin-bottom:13px; font-size:0.85rem; align-items:flex-start; color:rgba(255,255,255,0.55); }
.footer-contact-item .icon { color:var(--saffron-light); flex-shrink:0; margin-top:2px; }
.footer-addr { text-decoration:none; transition:color 0.2s; cursor:pointer; }
.footer-addr:hover { color:var(--saffron-light) !important; }
.footer-addr:hover .icon { color:var(--saffron-light); }
.footer-bottom { border-top:1px solid rgba(232,101,10,0.2); padding:20px 0; text-align:center; }
.footer-bottom p { font-size:0.74rem; color:rgba(255,255,255,0.35); }
.footer-owner-card { display:flex; align-items:center; gap:10px; padding:10px 0; border-bottom:1px solid rgba(232,101,10,0.15); }
.footer-owner-card:last-child { border-bottom:none; padding-bottom:0; }
.footer-owner-avatar { width:38px; height:38px; border-radius:50%; background:rgba(232,101,10,0.15); border:1.5px solid var(--saffron); display:flex; align-items:center; justify-content:center; font-size:12px; color:var(--saffron-light); font-weight:600; flex-shrink:0; }
.footer-owner-info { flex:1; min-width:0; }
.footer-owner-name { font-size:0.82rem; font-weight:500; color:rgba(255,255,255,0.85); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.footer-owner-phone { font-size:0.75rem; color:rgba(255,255,255,0.4); margin-top:2px; }
.footer-owner-actions { display:flex; gap:6px; flex-shrink:0; }
.footer-action-btn { width:32px; height:32px; border-radius:7px; display:flex; align-items:center; justify-content:center; text-decoration:none; background:rgba(255,255,255,0.05); transition:background 0.2s; }
.footer-call-btn:hover { background:rgba(76,175,80,0.2); }
.footer-wa-btn:hover { background:rgba(37,211,102,0.2); }

@media (max-width:600px) {
  .footer-grid { grid-template-columns:1fr !important; gap:32px; padding-bottom:32px; }
  .footer { padding:40px 0 0; }
  .footer-brand { text-align:center; }
  .footer-brand .logo-wrap { justify-content:center; }
  .footer-insta-btn { margin:0 auto; }
  .footer-owner-card { padding:12px 0; }
  #float-wa { bottom:80px; right:18px; width:50px; height:50px; }
  #float-wa svg { width:22px; height:22px; }
}

/* ---- FLOATING WA ---- */
#float-wa { position:fixed; bottom:28px; right:28px; z-index:999; width:58px; height:58px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 24px rgba(37,211,102,0.4); cursor:pointer; transition:var(--transition); border:none; }
#float-wa:hover { transform:scale(1.1); background:#1ebe57; }
#float-wa svg { width:26px; height:26px; fill:#fff; }
.float-wa-pulse { position:absolute; width:100%; height:100%; border-radius:50%; background:rgba(37,211,102,0.25); animation:pulse 2.4s infinite; }
@keyframes pulse { 0%{transform:scale(1);opacity:1} 100%{transform:scale(2);opacity:0} }

/* ---- BOTTOM NAV ---- */
.bottom-nav {
  display: none;
  position:fixed; bottom:0; left:0; right:0;
  z-index:900;
  background:rgba(61,16,0,0.97);
  backdrop-filter:blur(20px);
  border-top:1px solid rgba(232,101,10,0.25);
  padding:8px 0;
}
.bottom-nav a { display:flex; flex-direction:column; align-items:center; gap:3px; flex:1; font-size:0.6rem; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.45); transition:var(--transition); padding:4px 0; }
.bottom-nav a .nav-icon { font-size:1.3rem; }
.bottom-nav a.active, .bottom-nav a:hover { color:var(--saffron-light); }
.bottom-nav a.nav-wa { color:#25D366; }

/* ---- CARD ---- */
.card { background:var(--white); border-radius:var(--radius-md); border:1px solid rgba(232,101,10,0.1); transition:var(--transition); overflow:hidden; }
.card:hover { box-shadow:var(--shadow-sm); }

/* ---- LOADING RING ---- */
.loading-ring { width:36px; height:36px; border:2px solid rgba(232,101,10,0.2); border-top-color:var(--saffron); border-radius:50%; animation:spin-ring 0.8s linear infinite; margin:0 auto; }
@keyframes spin-ring { to { transform:rotate(360deg); } }

/* ---- REVEAL ANIMATION ---- */
.reveal { opacity:0; transform:translateY(24px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ---- RESPONSIVE NAVBAR ---- */
@media (max-width:900px) {
  .nav-links, .nav-wa-btn { display:none; }
  .hamburger { display:flex; }
  .nav-links {
    display:flex; flex-direction:column; position:fixed;
    top:0; left:0;
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    background:rgba(10,5,0,0.98);
    backdrop-filter:blur(28px);
    -webkit-backdrop-filter:blur(28px);
    padding:0; gap:0;
    transform:translateX(-100%);
    transition:transform 0.38s cubic-bezier(0.4,0,0.2,1);
    box-shadow:0 12px 40px rgba(0,0,0,0.6);
    z-index: 1001;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .nav-links.open { transform:translateX(0); }

  /* Menu header strip */
  .nav-links::before {
    content: 'Parvati Jewellers';
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    padding: 100px 28px 20px;
    border-bottom: 1px solid rgba(201,168,76,0.12);
    margin-bottom: 8px;
  }

  .nav-links a {
    font-size:0.95rem; color:rgba(255,255,255,0.6);
    padding:18px 28px; letter-spacing:0.16em;
    border-bottom:1px solid rgba(232,101,10,0.08);
    display:flex; align-items:center; gap:12px;
    transition: color 0.2s, padding-left 0.2s, background 0.2s;
  }
  .nav-links a:last-child { border-bottom:none; }
  .nav-links a.active, .nav-links a:hover {
    color:var(--gold-light);
    padding-left:36px;
    background:rgba(201,168,76,0.04);
  }

  /* WhatsApp button inside menu */
  .nav-menu-wa {
    display:flex !important;
    align-items:center; gap:10px;
    margin: 20px 28px 8px;
    background:#25D366; color:#fff;
    padding:14px 20px; border-radius:12px;
    font-size:0.8rem; font-weight:600; letter-spacing:0.1em;
    text-transform:uppercase; text-decoration:none;
    box-shadow:0 4px 16px rgba(37,211,102,0.25);
  }
  .nav-menu-wa:hover { background:#1ebe57; color:#fff; padding-left:20px; }

  /* Lang switch inside menu */
  .nav-menu-lang {
    display:flex !important;
    align-items:center; justify-content:space-between;
    margin: 0 28px 28px;
    padding:14px 18px;
    border:1px solid rgba(201,168,76,0.18);
    border-radius:12px;
    background:rgba(201,168,76,0.05);
  }
  .nav-menu-lang-text {
    font-size:0.72rem; color:rgba(255,255,255,0.5);
    letter-spacing:0.1em; text-transform:uppercase;
  }

  .footer-grid { grid-template-columns:1fr 1fr; gap:24px; }
  .footer-bottom { text-align:center; }
  .section { padding:68px 0; }
}

@media (max-width:600px) {
  .navbar .container { height:auto; padding-top:10px; padding-bottom:10px; overflow:visible; }
  .nav-logo img { height:50px; }
  .nav-logo-text .brand { font-size:1.6rem; }
  .nav-logo-text .jewellers { font-size:0.56rem; }
  .navbar-topbar { padding: 4px 0; }
  .topbar-item { font-size: 0.55rem; letter-spacing:0.12em; }
  .topbar-hide-mobile { display: inline !important; }
  .topbar-dot:last-of-type { display: none !important; }
  .container { padding:0 16px; }
  .footer-grid { grid-template-columns:1fr !important; gap:28px; }
  .footer { padding:40px 0 0; }
  .nav-actions { gap:8px; flex-shrink:0; overflow:visible; }
  .hamburger { flex-shrink:0; min-width:44px; min-height:44px; }
  .nav-logo { flex:1; min-width:0; }
  .nav-logo-text { overflow:hidden; }
}
