/* ═══════════════════════════════════════════
   SHARED.CSS — Shatabdi Pavers
   Loaded on EVERY page. Contains: colour theme,
   nav bar, footer, buttons, section titles, the
   scrolling marquee strip, and the dark page-hero
   banner used at the top of every non-home page.

   🔴 THIS IS THE ONLY FILE WHERE YOU SHOULD CHANGE
      SITE-WIDE COLOURS. Change a value once here and
      it updates everywhere (nav, buttons, footer, etc)
      because every page references these same variables.
   ═══════════════════════════════════════════ */

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

/* ────────────────────────────────────────────────────────────
   🎨 COLOUR THEME — edit hex codes here to re-theme the WHOLE site
   ────────────────────────────────────────────────────────────
   --cream    : page background colour (the warm off-white behind everything)
   --dark     : near-black used for nav text, dark sections, headings
   --terra    : the main ORANGE/terracotta brand accent colour
                (buttons, links on hover, highlights, the marquee strip)
   --terra-d  : a darker shade of terra, used for button hover states
   --sand     : light tan/gold accent, used on dark backgrounds (footer, hero)
   --taupe    : muted brown-grey, used for body/paragraph text
   --concrete : light grey, used for small labels & secondary text
   --border   : very light tan, used for card borders & dividers
   --white    : near-white, used for card backgrounds (slightly warmer than pure #fff)

   ⚠️ Do not rename these variables (--cream, --terra, etc) — they are
      used by name throughout this file and the other page CSS files.
      Only change the hex value AFTER the colon.
   ──────────────────────────────────────────────────────────── */
:root{
  --cream:#F4EDE1;
  --dark:#1B1713;
  --terra:#B85C2C;
  --terra-d:#8C4220;
  --sand:#C8A97E;
  --taupe:#7A6B5D;
  --concrete:#9C948C;
  --border:#DDD3C3;
  --white:#FAFAF5;

  /* 🔒 layout/behaviour variables — safe to leave alone */
  --nav-h:68px;          /* height of the fixed navigation bar */
  --max-w:1200px;        /* max width of page content before it stops growing */
  --radius:6px;          /* default corner-rounding used by buttons */
  --shadow:0 8px 32px rgba(27,23,19,0.12); /* default card hover shadow */
  --t:0.3s ease;         /* default transition speed for hover effects */
}
html{scroll-behavior:smooth}
body{font-family:'Outfit',sans-serif;background:var(--cream);color:var(--dark);overflow-x:hidden;line-height:1.6}
::-webkit-scrollbar{width:5px}
::-webkit-scrollbar-track{background:var(--cream)}
::-webkit-scrollbar-thumb{background:var(--terra);border-radius:3px}

/* ────────────────────────────────────────────────────────────
   UTILITY  🔒 base helper classes used everywhere — leave as-is
   ──────────────────────────────────────────────────────────── */
.container{max-width:var(--max-w);margin:0 auto;padding:0 28px}
.serif{font-family:'Playfair Display',Georgia,serif}
a{text-decoration:none}
.btn{display:inline-flex;align-items:center;gap:8px;padding:13px 28px;border-radius:var(--radius);font-family:'Outfit',sans-serif;font-size:14px;font-weight:600;cursor:pointer;transition:all var(--t);border:none;letter-spacing:0.3px}
.btn-primary{background:var(--terra);color:var(--white)}
.btn-primary:hover{background:var(--terra-d);transform:translateY(-2px);box-shadow:0 8px 24px rgba(184,92,44,0.35)}
.btn-outline{background:transparent;color:var(--dark);border:1.5px solid var(--dark)}
.btn-outline:hover{background:var(--dark);color:var(--white)}
.btn-light{background:transparent;color:var(--white);border:1.5px solid rgba(255,255,255,0.45)}
.btn-light:hover{background:var(--white);color:var(--dark)}
/* used for the homepage "Download Brochure" button — subtle, no border, for a 3rd action on a dark background */
.btn-outline-light{background:rgba(255,255,255,0.06);color:rgba(255,255,255,0.85);border:1.5px solid rgba(255,255,255,0.18)}
.btn-outline-light:hover{background:rgba(255,255,255,0.12);border-color:rgba(255,255,255,0.35)}

/* PAGE ENTRY ANIMATION */
.page-enter{animation:pgIn 0.4s ease}
@keyframes pgIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}

/* ────────────────────────────────────────────────────────────
   NAVIGATION BAR (the fixed bar at the top of every page)
   ✏️ Want a taller/shorter nav? change --nav-h in :root above.
   ✏️ Want the logo bigger/smaller? change .logo-img width/height below.
   ──────────────────────────────────────────────────────────── */
nav{position:fixed;top:0;left:0;right:0;z-index:200;height:var(--nav-h);background:rgba(244,237,225,0.94);backdrop-filter:blur(16px);border-bottom:1px solid var(--border)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:100%;max-width:var(--max-w);margin:0 auto;padding:0 28px}
.logo{cursor:pointer;display:flex;flex-direction:row;align-items:center;gap:12px;text-decoration:none}
.logo-name{font-family:'Playfair Display',serif;font-size:21px;font-weight:700;color:var(--dark);letter-spacing:-0.5px;line-height:1}
.logo-tag{font-size:9px;font-weight:600;letter-spacing:2.5px;text-transform:uppercase;color:var(--terra);margin-top:3px}
.logo-img{width:65px;height:65px;flex-shrink:0;border-radius:6px;object-fit:contain}
.logo-text{display:flex;flex-direction:column}
.nav-links{display:flex;align-items:center;gap:2px}
.nl{padding:7px 11px;font-size:13px;font-weight:500;color:var(--taupe);cursor:pointer;border-radius:5px;background:none;border:none;font-family:'Outfit',sans-serif;transition:all var(--t);text-decoration:none;display:inline-block}
.nl:hover,.nl.on{color:var(--terra);background:rgba(184,92,44,0.09)}
.nav-cta{margin-left:10px}
.ham{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:6px;background:none;border:none}
.ham span{display:block;width:22px;height:2px;background:var(--dark);border-radius:2px;transition:all .3s}
/* Hide gallery/certificates links for now without removing the pages themselves. */
a[href="gallery.html"],a[href="certificates.html"]{display:none!important}
@media(max-width:980px){
  .nav-links{display:none;position:fixed;top:var(--nav-h);left:0;right:0;background:var(--cream);flex-direction:column;padding:16px;gap:4px;border-bottom:1px solid var(--border);z-index:200;max-height:calc(100vh - var(--nav-h));overflow-y:auto}
  .nav-links.open{display:flex}
  .ham{display:flex}
  .nav-cta{display:none}
}

/* ────────────────────────────────────────────────────────────
   SECTION HEADINGS — the small orange label + big title + grey
   subtext pattern used at the top of most sections on every page
   (e.g. ".sec-label" = "OUR PRODUCTS", ".sec-title" = the big heading)
   ✏️ Changing font sizes here affects ALL section headings sitewide.
   ──────────────────────────────────────────────────────────── */
section{padding:96px 0}
.sec-label{display:inline-flex;align-items:center;gap:8px;font-size:10.5px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:var(--terra);margin-bottom:14px}
.sec-label::before{content:'';display:block;width:24px;height:1.5px;background:var(--terra)}
.sec-title{font-family:'Playfair Display',serif;font-size:clamp(30px,4vw,46px);font-weight:700;line-height:1.12;letter-spacing:-1px;margin-bottom:14px}
.sec-sub{color:var(--taupe);font-size:15.5px;line-height:1.75;max-width:540px}

/* ────────────────────────────────────────────────────────────
   SCROLLING MARQUEE STRIP (orange band under the homepage hero)
   ✏️ The TEXT inside is edited in js/shared.js, not here.
   ✏️ Scroll speed: change "28s" below (smaller = faster scroll).
   ──────────────────────────────────────────────────────────── */
.marquee-wrap{background:var(--terra);padding:16px 0;overflow:hidden}
.marquee-track{display:flex;gap:0;white-space:nowrap;animation:mq 28s linear infinite}
.mq-item{display:inline-flex;align-items:center;gap:20px;font-size:11.5px;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:rgba(255,255,255,.88);padding:0 24px}
.mq-item::after{content:'◆';opacity:.35;margin-left:20px}
@keyframes mq{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ────────────────────────────────────────────────────────────
   PAGE HERO (the dark banner with breadcrumb + title at the top
   of Products / Studio / About / Contact pages — NOT the homepage,
   which has its own bigger hero in css/home.css)
   ──────────────────────────────────────────────────────────── */
.page-hero{background:var(--dark);padding:130px 0 64px;position:relative;overflow:hidden}
.page-hero::before{content:'';position:absolute;inset:0;background-image:linear-gradient(rgba(200,169,126,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(200,169,126,.05) 1px,transparent 1px);background-size:44px 22px}
.page-hero-inner{position:relative;z-index:1}
.breadcrumb{display:flex;align-items:center;gap:8px;font-size:12.5px;color:rgba(250,250,245,.35);margin-bottom:18px}
.breadcrumb a{color:rgba(250,250,245,.35);transition:color var(--t)}
.breadcrumb a:hover{color:var(--sand)}
.breadcrumb .cur{color:var(--sand)}
.breadcrumb .sep{opacity:.4}
.ph-title{font-family:'Playfair Display',serif;font-size:clamp(34px,6vw,66px);font-weight:700;color:var(--white);letter-spacing:-1.5px;margin-bottom:12px;line-height:1.08}
.ph-sub{color:rgba(250,250,245,.5);font-size:15px;max-width:460px;line-height:1.7}

/* ────────────────────────────────────────────────────────────
   DARK CTA BAND — the "Ready to Start Your Project?" style
   sections that appear near the bottom of every page, just
   before the footer.
   ──────────────────────────────────────────────────────────── */
.dark-cta{background:var(--dark);padding:80px 0;text-align:center;position:relative;overflow:hidden}
.dark-cta::before{content:'';position:absolute;inset:0;background-image:linear-gradient(rgba(200,169,126,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(200,169,126,.04) 1px,transparent 1px);background-size:44px 22px}
.dark-cta .sec-title{color:var(--white);position:relative}
.dark-cta .sec-sub{color:rgba(250,250,245,.5);margin:0 auto 36px;position:relative}
.dark-cta .sec-label{color:var(--sand);position:relative}
.dark-cta .sec-label::before{background:var(--sand)}
.cta-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;position:relative}

/* ────────────────────────────────────────────────────────────
   FOOTER — styles for the dark footer block at the bottom of
   every page. The actual footer TEXT/links are edited in each
   page's HTML file (search for "FOOTER" in any .html file) —
   this only controls how it looks (spacing, colours, columns).
   ✏️ Want more/fewer footer columns? change "grid-template-columns"
      below (currently 2fr 1fr 1fr 1fr = 4 columns).
   ──────────────────────────────────────────────────────────── */
footer{background:var(--dark);color:rgba(250,250,245,.65);padding:64px 0 32px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:44px;margin-bottom:48px}
@media(max-width:800px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:480px){.footer-grid{grid-template-columns:1fr}}
.fb-name{font-family:'Playfair Display',serif;font-size:22px;font-weight:700;color:var(--white);margin-bottom:7px}
.fb-tag{font-size:13px;line-height:1.65;margin-bottom:18px}
.fb-contacts{display:flex;flex-direction:column;gap:7px;font-size:12.5px}
.fb-contacts a{color:rgba(250,250,245,.55);transition:color var(--t)}
.fb-contacts a:hover{color:var(--sand)}
.fs-title{font-size:10px;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:var(--sand);margin-bottom:18px}
.fl{display:flex;flex-direction:column;gap:9px}
.flink{font-size:13px;color:rgba(250,250,245,.55);cursor:pointer;transition:color var(--t);text-decoration:none;display:block}
.flink:hover{color:var(--sand)}
.footer-bot{border-top:1px solid rgba(250,250,245,.07);padding-top:28px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px;font-size:11.5px}
.footer-copy{color:rgba(250,250,245,.3)}

/* ────────────────────────────────────────────────────────────
   LIGHTBOX (full-screen photo viewer)
   🔒 Used by gallery.html and the "More Photos" grid on the
      product detail page. Built/controlled by js/shared.js
      (openLightbox / closeLightbox functions) — nothing to
      edit here unless you want to restyle it.
   ──────────────────────────────────────────────────────────── */
.lightbox{position:fixed;inset:0;background:rgba(15,12,9,.94);z-index:500;display:none;align-items:center;justify-content:center;padding:40px 20px}
.lightbox.open{display:flex}
.lightbox-img{max-width:min(900px,92vw);max-height:80vh;border-radius:8px;box-shadow:0 20px 60px rgba(0,0,0,.5)}
.lightbox-cap{color:rgba(250,250,245,.8);font-size:14px;text-align:center;margin-top:16px;max-width:600px}
.lightbox-close{position:absolute;top:22px;right:28px;width:42px;height:42px;border-radius:50%;background:rgba(255,255,255,.08);border:1.5px solid rgba(255,255,255,.2);color:var(--white);font-size:20px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all var(--t)}
.lightbox-close:hover{background:var(--terra);border-color:var(--terra)}
.lightbox-nav{position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;border-radius:50%;background:rgba(255,255,255,.08);border:1.5px solid rgba(255,255,255,.2);color:var(--white);font-size:20px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all var(--t)}
.lightbox-nav:hover{background:var(--terra);border-color:var(--terra)}
.lightbox-prev{left:24px}
.lightbox-next{right:24px}
@media(max-width:600px){.lightbox-nav{width:38px;height:38px;font-size:16px}.lightbox-prev{left:8px}.lightbox-next{right:8px}}

/* RESPONSIVE */
@media(max-width:768px){
  section{padding:64px 0}
}
