@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:ital,wdth,wght@0,75..125,100..900;1,75..125,100..900&display=swap');

:root {
  --color-primary:    #E87722;
  --color-primary-dk: #C4601A;
  --color-dark:       #2D2D2D;
  --color-gray:       #525252;
  --color-gray-light: #F5F5F5;
  --color-white:      #FFFFFF;
  --color-border:     #E2E2E2;
}

* { box-sizing: border-box; }

body {
  font-family: 'Google Sans Flex', sans-serif;
  color: var(--color-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Google Sans Flex', sans-serif;
  line-height: 1.2;
}

/* Accordion */
[data-accordion-content] {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
}
[data-accordion-content].open {
  max-height: 1000px;
  opacity: 1;
}

/* Lightbox */
#lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#lightbox-overlay.active {
  display: flex;
}
#lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

/* Subnav brand (sticky pod headerem) */
.brand-subnav {
  position: sticky;
  top: 64px;
  z-index: 40;
}

/* Mobile menu */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: white;
  overflow-y: auto;
  padding: 1.5rem;
}
#mobile-menu.open {
  display: block;
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Focus ring orange */
*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Custom scrollbar hidden for subnav */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
