/* ═══════════════════════════════════════
   VINAYAK GARMENTS — SHARED STYLESHEET
   Deep Navy & Gold · Premium & Authoritative
═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --navy:       #0D1B3E;
  --navy-deep:  #070F24;
  --navy-light: #122150;
  --navy-mid:   #0f1e45;
  --gold:       #C4A050;
  --gold-light: #DFC07A;
  --gold-pale:  #F0E0B0;
  --gold-dark:  #9A7A30;
  --white:      #FAFAF8;
  --off-white:  #F2EFE8;
  --navy-muted: rgba(200,210,240,0.6);
  --border:     rgba(196,160,80,0.15);
  --border-mid: rgba(196,160,80,0.25);
  --shadow:     0 8px 40px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: var(--navy-deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }
em { font-style: italic; color: var(--gold); }
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-dark { background: var(--navy-deep); }
.section-mid  { background: var(--navy); }
.section-light { background: var(--navy-light); }

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  display: block;
}
.section-title {
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid rgba(196,160,80,0.5);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(196,160,80,0.08);
  transform: translateY(-1px);
}

/* ── GOLD DIVIDER ── */
.gold-rule {
  width: 50px; height: 2px;
  background: var(--gold);
  margin: 20px 0;
  opacity: 0.6;
}
.gold-rule.center { margin: 20px auto; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(196,160,80,0.06) 0%, transparent 70%);
}
.page-hero-bg-text {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 700;
  color: rgba(196,160,80,0.04);
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-tag { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.page-hero-tag span {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-hero-tag::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}
.page-hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 16px;
  color: var(--navy-muted);
  max-width: 520px;
  line-height: 1.8;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--navy-muted);
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb span { opacity: 0.4; }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s, border-color 0.4s;
}
#nav.scrolled {
  background: rgba(7,15,36,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.logo-sub {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(200,210,240,0.75);
  text-decoration: none;
  padding: 8px 14px;
  transition: color 0.3s;
  font-weight: 400;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta { padding: 10px 26px; font-size: 10px; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: rgba(7,15,36,0.98);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.nav-mobile a {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(200,210,240,0.8);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(196,160,80,0.08);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile.open { display: flex; }

/* ── FOOTER ── */
#footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-desc { font-size: 13.5px; color: var(--navy-muted); line-height: 1.8; max-width: 280px; }
.footer-contact-item { display: flex; gap: 10px; margin-top: 16px; align-items: flex-start; }
.footer-contact-icon { color: var(--gold); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-text { font-size: 13px; color: var(--navy-muted); line-height: 1.6; }
.footer-heading {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-list a {
  font-size: 13px;
  color: var(--navy-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links-list a:hover { color: var(--gold); }
.footer-certs { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--navy-muted);
}
.cert-badge span { color: var(--gold); font-size: 14px; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  margin-top: 56px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(200,210,240,0.4); }
.footer-inhouse {
  font-size: 11px;
  color: var(--navy-muted);
  letter-spacing: 0.1em;
}
.footer-inhouse strong { color: var(--gold); font-weight: 400; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ── UTILITY ── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--navy-muted); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.gap-divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .section { padding: 70px 0; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-inner { padding: 0 16px; }
  .container { padding: 0 16px; }
}
