
/* FONTS */

@font-face {
  font-family: "Gilmer-Regular";
  src: url("Gilmer-Regular.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilmer-Bold";
  src: url("Gilmer-Bold.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rockets-Regular";
  src: url("ROCKETS-2.woff") format("woff");
  font-style: normal;
  font-display: swap;
}

html {
  background: #000;
  scroll-behavior: smooth;
}

body {
  background: black;
}

.page {
  background: white;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}


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


header, nav, section, .whatever-above-para {
  margin-bottom: 0;
  margin-top: 0;
}


header {
    background: #000;
    background: #000;
}

#menu {
  scroll-margin-top: 100px;
}
.logo-span {
    width: 100%;
    display: flex;
    background-color: black;
    height: 104px;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 4px;
}

nav {
  margin-top: 0px;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  justify-content: center;   /* center the row of buttons */
  align-items: center;
  gap: 38px;                 /* space between links */
}

.nav-row a {
  color: white;
  text-decoration: none;
  padding-top: 0;
  padding-bottom:12px;
  border-radius: 8px;
  font-size: 28px;
  font-family: "Rockets-Regular";
  letter-spacing: 2px;
}

.nav-row button {
  color: white;
  text-decoration: none;
  padding-top: 0;
  padding-bottom:12px;
  border-radius: 8px;
  font-size: 28px;
  font-family: "Rockets-Regular";
  letter-spacing: 2px;
  background: transparent;
  border: none;
}

.logo-span img {
    max-height: 50px;
}

dialog.modal-container {
  border: none;
  padding: 0;
  margin: auto;
  width: min(520px, 92vw);
  background: #fff;
  color: #111;
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
  overflow: hidden;
}

dialog.modal-container::backdrop {
  background: rgba(0,0,0,.55);
}

.xContainer {
  padding: 16px 18px 0 18px;
  display: flex;
  justify-content: flex-end;
}

.xButton {
  border: 1px solid rgba(0,0,0,.15);
  background: #fff;
  border-radius: 10px;
  width: 38px;
  height: 38px;
  font-size: 20px;
  cursor: pointer;
  color: rgba(0,0,0,.5);
}

.form-title-div {
  display: flex;
  justify-content: center;
}

h1#contactTitle {
  margin: 0;
  padding: 6px 18px 12px 18px;
  font-size: 26px;
  font-family: 'Gilmer-Bold', sans-serif;
}

.form-container {
  padding: 0 18px 18px 18px;
}

.form-container form {
  display: grid;
  gap: 14px;
}

.form-container p {
  font-family: "Gilmer-Regular", sans-serif;
  margin: 0;
}

.form-container label {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.form-container input,
.form-container textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 12px;
  padding: 12px;
  font-size: 15px;
}

.form-container textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-button {
  border: none;
  background: #000;
  color: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

.cancel-button {
  background: white;
  color: black;
  border-radius: 12px;
  border: 1px solid #000;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

.honeypot {
  display: none;
}


.para {
  margin-top: 0;
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  background: #000; /* or remove; but DON'T leave white if you parallax */
}

.para-img {
  position: absolute;
  left: 0;
  top: -70px;                 /* half of the extra height */
  width: 100%;
  height: calc(100% + 140px); /* extra room for translate */
  object-fit: cover;
  will-change: transform;
}

/* optional dark overlay (tweak opacity or remove) */
.para-overlay {
  position: absolute;
  inset: 0;
}

/* the big white panel */
.para-card {
  position: absolute;
  z-index: 2;

  /* right side placement like your screenshot */
  right: clamp(16px, 4vw, 72px);
  top: 50%;
  transform: translateY(-50%);

  background: #fff;
  color: #111;

  width: fit-content;
  max-width: min(520px, calc(100vw - 32px));
  padding: clamp(22px, 3vw, 36px);

  /* optional styling */
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
}

/* typography */
.para-card .kicker {
  font-family: 'Gilmer-Regular', sans-serif;
  letter-spacing: 0.25em;
  font-size: 14px;
  margin-bottom: 14px;
  opacity: 0.8;
}

.para-card h1 {
  font-family: 'Gilmer-Bold', sans-serif;
  margin: 0 0 18px 0;
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.05;
}

.para-card p {
  font-family: 'Gilmer-Regular', sans-serif;
  margin: 10px 0;
  font-size: 20px;
  line-height: 1.35;
}

.para-card a {
  color: inherit;
  text-decoration: none;
}

.spacer {
  height: 18px;
}

/* button like the screenshot */
.nav-link-btn {
  font-family: 'Gilmer-Regular', sans-serif;
  display: inline-block;
  margin-top: 22px;
  padding: 14px 22px;
  background: #111;
  color: #fff !important;
  font-weight: 600;
  border: none;
}

/* mobile: move card to bottom (more usable) */
@media (max-width: 700px) {
  .para-card {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .para-card p { font-size: 18px; }
}

/* --- MENU INTRO SECTION STYLES --- */
  .menu-intro-section {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
    padding: 20px;
    
  }

  .menu-intro-section h1 {
    text-align: center;
    font-family: "Rockets-Regular", sans-serif;
    font-size: 70px;
    color: #000;
    text-shadow: none;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 3px;
    word-wrap: break-word; /* Prevents overflow */
  }

  .menu-intro-section h2 {
    font-family: "Rockets-Regular", sans-serif;
    font-size: 32px;
    color: #000;
    text-shadow: none;
    letter-spacing: 3px;
    margin: 15px 0 25px 0;
    text-transform: uppercase;
    font-weight: normal;
  }

  .menu-intro-section p {
    font-family: "Gilmer-Regular", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
  }

  .menu-container {
    max-width: 1200px;
    margin: 20px auto; 
    padding: 0 20px;
    text-align: center;
  }

  /* Section Title with Full Width Thin Lines */
  .section-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 0;
    width: 100%;
  }

  .section-title-container::before,
  .section-title-container::after {
    content: "";
    height: 1px;
    background-color: #000;
    flex: 1;
  }

  .menu-section-h1 {
    font-family: "Rockets-Regular", sans-serif;
    font-size: 70px;
    color: #000; /* Black */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1; 
    display: inline-block;
  }

  /* Subheading */
  .menu-subheading {
    font-family: "Gilmer-Bold", sans-serif;
    font-size: 18px;
    color: #000; /* Changed to Black */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    padding-top: 5px;
  }

  /* Three Column Grid */
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
  }

  .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .menu-item-name {
    font-family: "Rockets-Regular", sans-serif;
    font-size: 32px;
    color: #000; /* Black */
    margin: 0 0 2px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .menu-item-ingredients {
    font-family: "Gilmer-Regular", sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color: #000; /* Changed to Black */
    margin: 0 0 5px 0;
    max-width: 280px;
  }

  .menu-item-price {
    font-family: "Gilmer-Bold", sans-serif;
    font-size: 22px;
    color: #000; /* Changed to Black */
    letter-spacing: 1px;
    margin: 0;
  }

  .menu-container-toast {
    max-width: 1200px;
    margin: 20px auto; 
    padding: 0 20px;
    text-align: center;
  }

  /* Section Title with Full Width Thin Lines */
  .section-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 0;
    width: 100%;
  }

  .section-title-container::before,
  .section-title-container::after {
    content: "";
    height: 1px;
    background-color: #000;
    flex: 1;
  }

  .menu-section-h1 {
    font-family: "Rockets-Regular", sans-serif;
    font-size: 70px;
    color: #000; /* Pure Black */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1; 
    display: inline-block;
  }

  /* Subheading - Touching the H1 above */
  .menu-subheading {
    font-family: "Gilmer-Bold", sans-serif;
    font-size: 18px;
    color: #000; /* Changed to Black */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    padding-top: 5px;
  }

  /* Three Column Grid */
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
  }

  .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .menu-item-name {
    font-family: "Rockets-Regular", sans-serif;
    font-size: 32px;
    color: #000; /* Pure Black */
    margin: 0 0 2px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .menu-item-ingredients {
    font-family: "Gilmer-Regular", sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color: #000; /* Changed to Black */
    margin: 0 0 5px 0;
    max-width: 280px;
  }

  .menu-item-price {
    font-family: "Gilmer-Bold", sans-serif;
    font-size: 22px;
    color: #000; /* Changed to Black */
    letter-spacing: 1px;
    margin: 0;
  }

  .menu-container-bowls {
    max-width: 1200px;
    margin: 20px auto; 
    padding: 0 20px;
    text-align: center;
  }

  /* Section Title with Full Width Thin Lines */
  .section-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 0;
    width: 100%;
  }

  .section-title-container::before,
  .section-title-container::after {
    content: "";
    height: 1px;
    background-color: #000;
    flex: 1;
  }

  .menu-section-h1 {
    font-family: "Rockets-Regular", sans-serif;
    font-size: 70px;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1; 
    display: inline-block;
  }

  /* Subheading */
  .menu-subheading {
    font-family: "Gilmer-Bold", sans-serif;
    font-size: 16px;
    color: #333;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    padding-top: 5px;
    line-height: 1.4;
  }

  /* 3-Column Grid for Bowls */
  .menu-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
  }

  .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  /* Centers the 4th item under the 2nd column on desktop */
  .centered-item {
    grid-column: 2;
    margin-top: 10px;
  }

  .menu-item-name {
    font-family: "Rockets-Regular", sans-serif;
    font-size: 28px;
    color: #000;
    margin: 0 0 2px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
  }

  .menu-item-ingredients {
    font-family: "Gilmer-Regular", sans-serif;
    font-size: 15px;
    line-height: 1.3;
    color: #444;
    margin: 0 0 5px 0;
    max-width: 240px;
  }

  .menu-item-price {
    font-family: "Gilmer-Bold", sans-serif;
    font-size: 22px;
    color: #e31e24;
    letter-spacing: 1px;
    margin: 0;
  }

    .menu-container-fruit {
    max-width: 1200px;
    margin: 20px auto; 
    padding: 0 20px;
    text-align: center;
  }

  /* Section Title with Full Width Thin Lines */
  .section-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 0;
    width: 100%;
  }

  .section-title-container::before,
  .section-title-container::after {
    content: "";
    height: 1px;
    background-color: #000;
    flex: 1;
  }

  .menu-section-h1 {
    font-family: "Rockets-Regular", sans-serif;
    font-size: 70px;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1; 
    display: inline-block;
  }

  /* Subheading - Touching the H1 above */
  .menu-subheading {
    font-family: "Gilmer-Bold", sans-serif;
    font-size: 18px;
    color: #333;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    padding-top: 5px;
  }

  /* Three Column Grid */
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
  }

  .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .menu-item-name {
    font-family: "Rockets-Regular", sans-serif;
    font-size: 32px;
    color: #000;
    margin: 0 0 2px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
  }

  .menu-item-ingredients {
    font-family: "Gilmer-Regular", sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color: #444;
    margin: 0 0 5px 0;
    max-width: 280px;
  }

  .menu-item-price {
    font-family: "Gilmer-Bold", sans-serif;
    font-size: 22px;
    color: #e31e24;
    letter-spacing: 1px;
    margin: 0;
  }

  .menu-container-smoothies {
    max-width: 1200px;
    margin: 20px auto; 
    padding: 0 20px;
    text-align: center;
  }

  /* Section Title with Full Width Thin Lines */
  .section-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 0;
    width: 100%;
  }

  .section-title-container::before,
  .section-title-container::after {
    content: "";
    height: 1px;
    background-color: #000;
    flex: 1;
  }

  .menu-section-h1 {
    font-family: "Rockets-Regular", sans-serif;
    font-size: 50px;
    color: #000; /* Black */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1; 
    display: inline-block;
  }

  /* Subheading */
  .menu-subheading {
    font-family: "Gilmer-Bold", sans-serif;
    font-size: 16px;
    color: #000; /* Changed to Black */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 40px 0;
    padding-top: 5px;
    line-height: 1.5;
  }

  .accent-black {
    color: #000; /* Changed from Red to Black */
  }

  /* Flex Layout to allow centering of the second row */
  .menu-flex-smoothies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 20px;
    text-align: center;
  }

  .menu-item {
    flex: 0 1 30%; 
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .menu-item-name {
    font-family: "Rockets-Regular", sans-serif;
    font-size: 28px;
    color: #000; /* Black */
    margin: 0 0 2px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
  }

  .menu-item-ingredients {
    font-family: "Gilmer-Regular", sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color: #000; /* Changed to Black */
    margin: 0 0 5px 0;
    max-width: 280px;
  }

  .menu-item-price {
    font-family: "Gilmer-Bold", sans-serif;
    font-size: 22px;
    color: #000; /* Changed to Black */
    letter-spacing: 1px;
    margin: 0;
  }

  .retail-inspo-section {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
    padding: 40px 20px;
    background-color: transparent;
    /* Only the top border remains */
    border-top: 2px solid #000;
    border-bottom: none;
  }

  .retail-inspo-section h1 {
    font-family: "Rockets-Regular", sans-serif;
    font-size: 60px;
    color: #000;
    text-shadow: none;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 3px;
  }

  .retail-inspo-section h2 {
    font-family: "Rockets-Regular", sans-serif;
    font-size: 28px;
    color: #000;
    text-shadow: none;
    letter-spacing: 2px;
    margin: 10px 0 25px 0;
    text-transform: uppercase;
    font-weight: normal;
  }

  .retail-inspo-section p {
    font-family: "Gilmer-Regular", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    max-width: 750px;
    margin: 0 auto 30px auto;
  }

  .btn-shop {
    display: inline-block;
    font-family: "Rockets-Regular", sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: #ffffff !important;
    background-color: #000000;
    padding: 15px 40px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }

  .btn-shop:hover {
    transform: scale(1.05);
    background-color: #e31e24; /* Changes to your Signature Red on hover */
  }

  footer {
    justify-content: center;
    background-color: black;
  }

  footer a {
    color: white;
  }

  .footer-info {
    padding-left: 48px;
    background-color: black;
    padding-bottom: 32px;

  }

  .footer-info H3 {
    font-family: 'Gilmer-Bold', sans-serif;
    color: white;
  }

  .footer-info p {
    font-family: 'Gilmer-Regular', sans-serif;
    color: white;
  }

  .company-info-footer {
    display: flex;
    justify-content: center;
    font-family: 'Gilmer-Regular', sans-serif;
    color: white;
    background-color: black;
    padding-bottom: 8px;
  }

  footer nav {
    padding-top: 12px;
  }


  @media (max-width: 640px) {

  /* --- NAV: make menu links a single vertical column --- */
  .nav-row {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }

  .nav-row a {
    display: block;
    text-align: center;
    padding: 12px 0;
    font-size: 22px; /* optional: slightly smaller for mobile */
  }

  .nav-row button {
    display: block;
    text-align: center;
    padding: 12px 0;
    font-size: 22px; /* optional: slightly smaller for mobile */
  }

  /* --- MENU SECTIONS: force all menu layouts into 1 vertical column --- */

  /* Any grid menus -> 1 column */
  .menu-grid,
  .menu-grid-three {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  /* Smoothies flex layout -> 1 column */
  .menu-flex-smoothies {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 22px !important;
  }

  /* Make items full width but readable */
  .menu-item {
    width: 100% !important;
    max-width: 520px;
    margin: 0 auto !important;
    padding: 12px 10px !important;
    align-items: center;
  }

  /* Disable the desktop “center the 4th item” behavior */
  .centered-item {
    grid-column: auto !important;
    margin-top: 0 !important;
  }

  /* Readability */
  .menu-item-ingredients {
    max-width: 36ch !important;
  }

  /* Optional: scale down big headings a bit */
  .menu-section-h1 { font-size: 42px; }
  .menu-intro-section h1 { font-size: 10vw; letter-spacing: 1px; }
  .menu-intro-section h2 { font-size: 22px; }
  .menu-intro-section p { font-size: 16px; }

  .footer-info {
    padding-left: 8px;
  }
}



@media (max-width: 700px) {
  .para {
    min-height: 70vh; /* keep or adjust */
  }

  .para-img {
    top: 0 !important;
    height: 100% !important;
    transform: none !important;     /* important if you parallax with JS */
    will-change: auto !important;   /* optional */
    object-fit: cover;
    object-position: center;
  }
}

