/* Site chrome (top navigation + footer) shared by the static landing page
   and the Blade-rendered content pages, so /privacy-policy and friends open
   with the same header and footer as the home page.

   NOTE: these rules are copied verbatim from the <style> block inside
   public/landing/index.html, which is a standalone static file. If you change
   the nav or footer there, change it here too -- or better, make index.html
   link this file instead of carrying its own copy. */

/* --- design tokens --- */
:root {
  --primary: #0000FF;
  --mauve: #BB85AC;
  --yellow-light: #FFFFC5;
  --pink: #F4C2C2;
  --white:#FFFFFF;
  --darkgray: #374151;
  --black: #333333;
  --lime: #CCFF00;
  --physical: #0000FF;
  --nutrition: #22C55E;
  --wellness: #FB923C;
  --ai: #BB85AC;
  --ecommerce: #CCFF00;
  --bg: #FAFAF8;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
   --orange :rgba(251, 146, 60, 1);
    --green : rgba(34, 197, 94, 1);
    --blue:rgba(0, 0, 255, 1);
}

/* --- reset + layout container --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--darkgray);
  background: #FFFFFF;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; border: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* --- top navigation --- */
.navbar {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
  padding: 10px 0;
}
.navbar.scrolled {
  background: rgba(250, 250, 248, 0.92);
  border-bottom-color: rgba(0,0,0,0.06);
  box-shadow: 0 1px 12px rgba(0,0,0,0.03);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-img {
  /* The mark is now a bare icon, not the old mark-over-wordmark lockup, so it
     needs roughly half the old height to sit comfortably in the 72px bar. */
  height: 42px; width: auto; object-fit: contain;
}
.footer-logo-img {
  height: 52px; width: auto; object-fit: contain;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--nutrition), #0d9488);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; color: #fff; font-size: 20px;
}
.nav-logo-text {
  font-family: var(--font-heading); font-weight: 700; font-size: 22px;
  background: linear-gradient(135deg, var(--nutrition), #0d9488);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--darkgray);/* opacity: 0.65;
  transition: opacity 0.25s;*/
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--lime); color: var(--darkgray);
  padding: 10px 24px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 14px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204,255,0,0.45);
}

/* --- footer --- */
.footer {
  background: #333; border-top: 1px solid #E0E0E0;
  padding: 60px 0 20px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 48px; flex-wrap: wrap; gap: 40px;
}
.footer-tagline {
  font-size: 14px; color: var(--white); max-width: 260px;font-weight: 600;
  line-height: 1.6; margin-top: 14px;
}
.footer-col-title {
  font-size: 14px; font-weight: 800; color: var(--white);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--white);
  margin-bottom: 12px; transition: color 0.2s; text-decoration: none;font-weight: 600;
}
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid #D0D0D0;
  padding-top: 20px; display: flex; align-items: center; justify-content: center;
}
.footer-copy { font-size: 13px;font-weight: 600; color: var(--white); text-align: center;}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: #E0E0E0; color: #555;
  transition: background 0.3s, color 0.3s;
}
.footer-socials a:hover { background: var(--primary); color: #fff; }
.footer-socials a svg { width: 18px; height: 18px; }

/* --- responsive (only the chrome rules from the landing breakpoint) --- */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav-links a { display: none; }
}
