/* ============================================================
   Kitchen Corner - Base / shared styles
   Independent rebuild. All classes prefixed with ga-
   ============================================================ */

/* Fonts live in ga-fonts.css (self-hosted DM Sans). */

/* ---------- Tokens ---------- */
:root {
  --ga-font: "GA DM Sans", "DM Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ga-green: #72b539;
  --ga-green-dark: #4d8c3b;
  --ga-green-deep: #215836;
  --ga-accent: #6dbc47;
  --ga-ink: #262626;
  --ga-body-text: #4b4a4a;
  --ga-white: #ffffff;
  --ga-page-bg: rgba(137, 186, 95, 0.1882);
  --ga-footer-bg: #d1eac5;
  --ga-max: 1500px;
  /* one page gutter for every section, header and footer */
  --ga-gutter: 50px;
}
@media (max-width: 1024px) {
  :root {
    --ga-gutter: 30px;
  }
}
@media (max-width: 767px) {
  :root {
    --ga-gutter: 15px;
  }
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
  font-size: 100%;
}
@media (max-width: 921px) {
  html {
    font-size: 91.2%;
  }
}
body {
  margin: 0;
  position: relative;
  overflow-x: hidden;
  font-family: var(--ga-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ga-body-text);
  background-color: var(--ga-page-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
ul,
ol {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: 1.3;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 1.875rem;
}
h3 {
  font-size: 1.5rem;
}
@media (max-width: 921px) {
  h1 {
    font-size: 1.875rem;
  }
  h2 {
    font-size: 1.5625rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}
h1 {
  line-height: 1.4;
}
h4,
h5 {
  line-height: 1.2;
}
h6 {
  line-height: 1.25;
}
/* headings rendered as plain blocks sit on a 1.0 line box */
.ga-heading {
  line-height: 1;
}
ul,
ol {
  list-style: none;
}
img,
svg,
video {
  display: block;
  border: 0;
}
img,
video {
  max-width: 100%;
}
img {
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
i {
  font-style: italic;
}

/* film-grain overlay across the whole document */
body::after {
  content: "";
  pointer-events: none;
  opacity: 0.03;
  mix-blend-mode: overlay;
  z-index: 50;
  background-image: url("../media/2025/11/grain-slow.gif");
  background-repeat: repeat;
  background-size: auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.ga-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  background: #fff;
  color: #000;
  padding: 12px 20px;
}
.ga-skip-link:focus {
  left: 6px;
  top: 6px;
}
.ga-sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Layout helpers ---------- */
/* Flex/grid containers may shrink past their content (mirrors the
   original layout engine); widgets clamp with max-width instead. */
.ga-con,
.ga-sec,
.ga-sec-inner,
.ga-header-bar,
.ga-header-left,
.ga-header-right,
.ga-nav,
.ga-nav-inner,
.ga-footer-main,
.ga-footer-inner,
.ga-footer-cols,
.ga-footer-col,
.ga-footer-logo,
.ga-footer-copy {
  min-width: 0;
}

.ga-page {
  position: relative;
  display: flow-root;
}
.ga-main {
  position: relative;
  width: 100%;
  overflow-wrap: break-word;
}

/* visibility utilities (breakpoints: 1025+ / 768-1024 / <=767) */
@media (min-width: 1025px) {
  .ga-hide-desktop {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .ga-hide-tablet {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .ga-hide-mobile {
    display: none !important;
  }
}
.ga-hide-all {
  display: none !important;
}

/* ============================================================
   HEADER
   ============================================================ */
.ga-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  box-shadow: none;
  z-index: 999;
}
.ga-header-bar {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  padding: 10px var(--ga-gutter);
  position: relative;
  z-index: 999;
}
.ga-header-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  flex: 0 1 auto;
  min-width: 0;
  padding: 10px 0;
  position: relative;
  z-index: 9999;
}
@media (min-width: 768px) {
  .ga-header-left {
    width: 50%;
  }
}
.ga-logo {
  z-index: 999;
  text-align: start;
}
.ga-logo img {
  width: 260px;
  height: auto;
}
.ga-header-right {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex: 0 1 auto;
  justify-content: flex-end;
  align-items: center;
  align-self: center;
  gap: 20px;
  padding: 10px 0;
}

/* --- desktop pill nav --- */
.ga-nav {
  border: 1px solid #fcfcfc;
  border-radius: 100px;
  padding: 0 15px;
  align-self: center;
  position: relative;
}
.ga-nav-inner {
  display: flex;
}
.ga-nav-list {
  display: flex;
  flex-wrap: wrap;
}
.ga-nav-list > li {
  flex-grow: 1;
}
.ga-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ga-font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  padding: 15px 14px;
  transition: color 0.2s ease;
}
.ga-nav-link:hover,
.ga-nav-link:focus,
.ga-nav-item.ga-is-current > .ga-nav-link {
  color: var(--ga-accent);
}

/* toggle shown from 1024px down */
.ga-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40.375px;
  height: 44.375px;
  margin: 0 auto;
  line-height: 1;
  color: #fff;
  padding: 0;
}
.ga-nav-toggle svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}
@media (max-width: 1024px) {
  .ga-nav-inner {
    flex-direction: column;
  }
  .ga-nav-toggle {
    display: flex;
  }
  .ga-nav-list {
    width: 100%;
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: opacity 0.3s ease;
  }
  .ga-nav-list > li {
    width: 100%;
  }
  .ga-nav.ga-is-open .ga-nav-list {
    visibility: visible;
    opacity: 1;
    height: auto;
    background: #fff;
    border-radius: 6px;
  }
  .ga-nav.ga-is-open .ga-nav-list > li:not(:last-child) {
    border-bottom: 1px solid #c4c4c4;
  }
  .ga-nav.ga-is-open .ga-nav-link {
    color: #1e293b;
    justify-content: flex-start;
  }
}

/* --- dark header (inner pages sit on a light background) --- */
.ga-header--dark .ga-nav {
  border-color: #222222;
}
.ga-header--dark .ga-nav-link {
  font-weight: 500;
  color: #222222;
}
.ga-header--dark .ga-nav-link:hover,
.ga-header--dark .ga-nav-link:focus,
.ga-header--dark .ga-nav-item.ga-is-current > .ga-nav-link {
  color: var(--ga-accent);
}
.ga-header--dark .ga-nav-toggle {
  color: #070707;
}
.ga-header--dark .ga-nav-toggle svg {
  fill: #070707;
}
.ga-header--dark .ga-burger {
  border-color: #222222;
}
.ga-header--dark .ga-burger-btn {
  color: #070707;
}
.ga-header--dark .ga-burger-btn svg {
  fill: #070707;
}

/* --- Instagram round button in the header --- */
.ga-ig-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ga-accent);
  border-radius: 100px;
  padding: 12px;
  font-size: 24px;
  line-height: 1;
  color: #fff;
  fill: #fff;
  transition: background-color 0.3s, transform 0.3s;
}
.ga-ig-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.ga-ig-btn:hover {
  background-color: var(--ga-green);
}

/* --- mobile flyout (<=767) --- */
.ga-burger {
  display: none;
  border: 1px solid #fcfcfc;
  border-radius: 100px;
  align-self: center;
}
.ga-burger-btn {
  display: flex;
  justify-content: flex-start;
  margin-right: auto;
  margin-left: 0;
  font-size: 25px;
  padding: 0.35em;
  color: #fff;
  line-height: 1.1;
}
.ga-burger-btn svg {
  width: 1em;
  height: 1em;
  fill: #fff;
}
.ga-flyout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
.ga-flyout {
  position: fixed;
  top: 0;
  bottom: 0;
  left: -300px;
  width: 300px;
  max-width: 85vw;
  background: #ffffff;
  z-index: 1001;
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 0;
}
body.ga-flyout-open .ga-flyout {
  transform: translateX(300px);
}
body.ga-flyout-open .ga-flyout-overlay {
  opacity: 1;
  visibility: visible;
}
.ga-flyout-close {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #7a7a7a;
  line-height: 1;
}
.ga-flyout-close svg {
  width: 17px;
  height: 17px;
  fill: #7a7a7a;
}
.ga-flyout-list {
  margin-top: 45px;
}
.ga-flyout-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ga-font);
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
  color: #1e293b;
  padding: 7px 16px;
}
.ga-flyout-list a:hover,
.ga-flyout-list li.ga-is-current a {
  color: var(--ga-accent);
}

@media (max-width: 767px) {
  .ga-header-bar {
    flex-wrap: nowrap;
    padding: 10px var(--ga-gutter);
  }
  .ga-header-left {
    padding: 5px 0;
  }
  .ga-logo img {
    width: 181px;
  }
  .ga-header-right {
    flex-wrap: nowrap;
    gap: 20px;
    padding: 10px 0;
  }
  .ga-nav {
    display: none;
  }
  .ga-burger {
    display: block;
  }
  .ga-ig-btn {
    font-size: 20px;
    padding: 12px;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.ga-btn {
  display: inline-block;
  text-align: center;
  font-family: var(--ga-font);
  background-color: var(--ga-accent);
  color: #fff;
  fill: #fff;
  border-radius: 3px;
  padding: 12px 24px;
  line-height: 1;
  transition: filter 0.2s ease, background-color 0.2s ease;
}
.ga-btn:hover {
  filter: brightness(1.06);
}

/* ============================================================
   FOOTER
   ============================================================ */
.ga-footer {
  position: relative;
  width: 100%;
}
.ga-footer-main {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  background-color: var(--ga-footer-bg);
  padding: 40px 0;
  z-index: 999;
}
.ga-footer-inner {
  width: 100%;
  max-width: var(--ga-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 var(--ga-gutter);
}
.ga-footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: row;
  gap: 20px;
  padding: 10px 0;
}
.ga-footer-col {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}
.ga-footer-links li:not(:last-child) {
  padding-block-end: 6px;
}
.ga-footer-links li:not(:first-child) {
  margin-block-start: 6px;
}
.ga-footer-links a {
  display: flex;
  align-items: center;
  width: 100%;
  font-family: var(--ga-font);
  font-size: 21px;
  font-weight: 400;
  color: #000000;
  transition: color 0.3s;
}
.ga-footer-links a:hover {
  color: var(--ga-green);
}
.ga-social {
  display: inline-grid;
  grid-auto-flow: column;
  column-gap: 23px;
  row-gap: 0;
  justify-content: center;
  justify-items: center;
  margin-inline: auto;
}
.ga-social-icon {
  --ga-icon-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ga-accent);
  color: #fff;
  border-radius: 50%;
  font-size: var(--ga-icon-size);
  width: calc(var(--ga-icon-size) + 2 * 0.3em);
  height: calc(var(--ga-icon-size) + 2 * 0.3em);
  line-height: var(--ga-icon-size);
  cursor: pointer;
}
.ga-social-icon svg {
  width: 1em;
  height: 1em;
  fill: #fff;
}
.ga-social-icon:hover {
  opacity: 0.9;
}
.ga-footer-logo {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  align-items: center;
}
.ga-footer-logo img {
  width: 40%;
  height: auto;
}
.ga-footer-copy {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}
.ga-footer-copy :is(h2, p) {
  text-align: center;
  font-family: var(--ga-font);
  font-size: 20px;
  font-weight: 300;
  color: #646464;
}
.ga-footer-pattern {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  margin-top: -150px;
  background-image: url("../media/2025/09/svgviewer-png-output.png");
  background-position: center left;
  background-repeat: repeat;
  background-size: auto;
}
@media (min-width: 1025px) {
  .ga-footer-pattern {
    background-attachment: fixed;
  }
}
@media (max-width: 767px) {
  .ga-footer-cols {
    grid-template-columns: repeat(1, 1fr);
  }
  .ga-footer-pattern {
    min-height: 400px;
    margin-top: 0;
    background-size: contain;
  }
}

/* ============================================================
   FLOATING INSTAGRAM BUTTON (drops in after scrolling)
   ============================================================ */
#ga-ig-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-140vh) scale(0.9) rotate(-4deg);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.22, 1.15, 0.55, 1),
    opacity 0.5s ease;
}
#ga-ig-fab svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
#ga-ig-fab.ga-is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}
#ga-ig-fab.ga-is-hidden {
  transform: translateY(-140vh) scale(0.9) rotate(-4deg);
  opacity: 0;
}
#ga-ig-fab:hover {
  background: #1aac47;
  transform: translateY(0) scale(1.05);
}
@media (max-width: 767px) {
  #ga-ig-fab {
    right: 14px;
    bottom: 18px;
    width: 50px;
    height: 50px;
  }
  #ga-ig-fab svg {
    width: 22px;
    height: 22px;
  }
}

/* ============================================================
   Image carousel
   ============================================================ */
.ga-carousel {
  position: relative;
  width: 100%;
  min-width: 0;
}
.ga-carousel-viewport {
  overflow: hidden;
  width: 100%;
  padding-bottom: 30px;
}
.ga-carousel-track {
  display: flex;
  will-change: transform;
}
.ga-carousel-slide {
  flex: 0 0 auto;
  box-sizing: border-box;
}
.ga-carousel-slide figure {
  margin: 0;
  line-height: 0;
}
.ga-carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}
.ga-carousel-arrow {
  position: absolute;
  top: calc(50% - 30px / 2);
  transform: translateY(-50%);
  display: inline-flex;
  color: hsl(0 0% 93% / 0.9);
  font-size: 25px;
  z-index: 1;
  cursor: pointer;
  background: none;
  border: 0;
}
.ga-carousel-arrow svg {
  width: 1em;
  height: 1em;
  fill: hsl(0 0% 93% / 0.9);
}
.ga-carousel-prev {
  left: 10px;
}
.ga-carousel-next {
  right: 10px;
}
.ga-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 0;
}
.ga-carousel-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 7px;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
  cursor: pointer;
  border: 0;
  padding: 0;
}
.ga-carousel-dot.ga-is-active {
  opacity: 1;
  background: var(--ga-green);
}
@media (max-width: 767px) {
  .ga-carousel-slide img {
    border-radius: 10px;
  }
}
