/* ================================================
   GLOBAL CSS — Priya's Spize Works
   ================================================ */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; zoom: 1.5; }
body { font-family: 'Montserrat', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; }

/* CSS VARIABLES */
:root {
  --black: #0a0a0a;
  --gold: #c8a24e;
  --gold-light: #dbb968;
  --cream: #f5f0e8;
  --olive: #6b6b2a;
  --forest: #3d4a2a;
  --sage: #7a8c6e;
  --terracotta: #c4725a;
  --white: #ffffff;
  --gray: #888;
}

/* ---- NAV ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled,
.navbar.always-dark {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 110px;
  transition: height 0.4s;
}
.navbar.scrolled .nav-container,
.navbar.always-dark .nav-container { height: 80px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 100px; width: auto; transition: height 0.4s; }
.navbar.scrolled .nav-logo-img,
.navbar.always-dark .nav-logo-img { height: 60px; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-quote-btn {
  background: var(--gold); color: var(--black) !important;
  padding: 0.6rem 1.4rem; font-weight: 700 !important;
  transition: background 0.3s !important;
}
.nav-quote-btn:hover { background: var(--gold-light) !important; color: var(--black) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--white); transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 80px; left: 0; right: 0;
  background: rgba(10,10,10,0.98); padding: 2rem; z-index: 999;
  flex-direction: column; gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); border-bottom: 1px solid rgba(200,169,81,0.2); padding-bottom: 1rem;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .nav-quote-btn { background: var(--gold); color: var(--black) !important; text-align: center; padding: 0.8rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.3s; cursor: pointer; border: none;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,169,81,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ---- SECTION UTILITIES ---- */
.section { padding: 6rem 2rem; }
.section-light { background: var(--cream); color: var(--black); }
.section-dark { background: var(--black); color: var(--white); }
.section-charcoal { background: #111; color: var(--white); }
.container { max-width: 1300px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.section-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; }
.section-subtitle { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.65); max-width: 580px; }
.section-light .section-subtitle { color: rgba(10,10,10,0.6); }
.divider { width: 60px; height: 3px; background: var(--gold); margin: 1.5rem 0; }

/* ---- PAGE HERO (non-home pages) ---- */
.page-hero {
  position: relative; height: 50vh; min-height: 350px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; margin-top: 80px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.5), rgba(10,10,10,0.8));
}
.page-hero-content { position: relative; z-index: 2; padding: 0 1.5rem; }
.page-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 1rem;
}
.page-hero-content h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 900; line-height: 1.05; margin-bottom: 1rem; }
.page-hero-content p { font-size: 1rem; color: rgba(255,255,255,0.75); max-width: 550px; margin: 0 auto; line-height: 1.8; }

/* ---- FORM GROUP (shared: contact + quote) ---- */
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.3s; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.07); }
.form-group select option { background: var(--black); }

/* ---- SCROLL REVEAL ---- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- FOOTER ---- */
footer { background: #0d0d0d; color: rgba(255,255,255,0.6); padding: 4rem 2rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1300px; margin: 0 auto 3rem; }
.footer-logo { margin-bottom: 1rem; }
.footer-logo-img { height: 100px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(200,169,81,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all 0.3s; }
.footer-social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.footer-col h4 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1rem; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1300px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem;
}
.footer-bottom a { color: var(--gold); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
