:root {
    --max: 1600px;
    --pad: 1.2rem;
    --gradient: linear-gradient(90deg, #e6d56f, #b3962d, #e5d57b, #ebdb7f, #4e3814);
    --radius: 10px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    line-height: 1.6;
    background-color: #faf3e0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: auto 75%;
    background-position: left bottom;
    background-blend-mode: screen;
    height: 100%;
}

body.home {
  background-image: url('../uploads/backgroundB.svg');;
}

body.nav-open {
    overflow: hidden;
    height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--pad);
}

.site-header {
    position: relative;
    padding: 5px 20px;
}

@media screen and (max-width: 600px) {
    .site-header {
      padding: 5px 20px;
    }
}

.site-header::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #e6d56f, #b3962d, #e5d57b, #ebdb7f, #4e3814);    
}

.site-header {
    background-color: #faf3e0;
    border-bottom: 1px solid #eee;
}

.site-wrapper {
  min-height: calc(100vh - 100px); /* 100px ≈ footer height, adjust as needed */
}

.site-footer {
  height: 100px;     /* match the value above */
  text-align: center;
  padding-top: 2rem;
}

.site-title a {
    text-decoration: none;
    color: inherit;
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}

.site-nav a {
    text-decoration: none;
    color: #000000;
    font-weight: 300;
    font-size: 1.3em;
    font-family: "Roboto", sans-serif;
    position: relative;
}

.site-nav a:hover::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    top: calc(100% + 2px);
    left: 0;
    background-color: #aaa55b;
}

main {
    padding: 2rem 0;
}

h1,
h2,
h3 {
    line-height: 1.25;
    font-family: "Libre Bodoni", serif;
    font-optical-sizing: auto;
    font-style: normal;
  
}

p, li, a {
        font-family: "Roboto", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
} 

p {
    font-weight: 300;
    font-size: 1.3em;
}

a {
  font-weight: 300;
}

.posts {
    display: grid;
    gap: 1rem;
    padding-left: 1rem;
}

.post .content {
  margin: 0 10%;
}

.posts li {
    margin-bottom: 0.5rem;
}

.site-title img {
    height: 60px;
}

@media screen and (max-width: 600px) {
    .site-title img {
      height: 40px;
    }
  
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.home .main-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

#super {
    font-size: 140px;
    background: -webkit-linear-gradient(301deg, #a28834, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
    cursor: pointer;
    user-select: none;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    #super {
        font-size: 75px;
    }
  
}

.tilt {
  transform-style: preserve-3d;
  transform: perspective(1000px);
  mix-blend-mode: multiply;
  cursor: pointer;
}

.tilt > * {
  transform: translateZ(20px)
}

.dark-btn {
  background: #b2a283;
    border-radius: 0;
    color: #fff;
    font-size: 1.25rem;
    padding: 10px 40px;
}

.dark-btn:hover {
    background: #898772;
    color: #fff;
    text-decoration: none;
}

.btn-lg {
    background-color: transparent;
    color: #aaa55b;
    font-size: 1.25rem;
    padding: 1.75rem 4.5rem;
    border: none;
    border-radius: var(--radius);
    text-decoration: none;
    position: relative;
    background-color: #FAF3E0;
}

.btn-lg::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: var(--radius);
  box-shadow: 0 0 0 0 rgba(191, 161, 48, 0.7);
  transition: 
      background-position 0.4s ease,
      box-shadow 0.3s ease-in-out;
  background-image: linear-gradient(90deg, #e6d56f, #b3962d, #e5d57b, #ebdb7f, #4e3814);
  background-size: 200% 200%;
  background-position: 0% 50%;
  z-index: -1;
}

.btn-lg:hover, .btn-lg:active {
    color: #aaa55b;
    background-color: #FAF3E0!important;
    text-decoration: none;
}

.btn-lg:hover::after {
  background-position: 100% 50%;
  /* box-shadow: 0 0 12px 2px rgba(191, 161, 48, 0.6); */
}

h2 {
    color: #aaa55b;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tan {
    background-color: #89805809;
}




/* MARQUEE STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.marquee-wrapper {
    position: relative;
  }

  @media screen and (max-width: 767px) {
    .marquee-wrapper {
      width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    } 
  }
  
  .marquee {
    display: flex;
    gap: 30px;
    overflow: hidden;
  }
  
  .marquee-item {
    position: relative;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
  }

  .marquee-item:hover {
    cursor: grab;
  }

  .marquee-item img {
    display: block;
    width: 100%;
    max-width: 100px; 
    margin-bottom: 10px;   
  }

  .marquee-item .fact {
    width: 100%;
    min-height: 410px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 50px;
    border-radius: var(--radius);
    text-align: center;
  }

  .marquee-item .fact:hover {
    transform: scale(1.05);
    transition-duration: 0.7s;
  }

  .marquee-item .fact h3 {
    color: #aaa55b
  }

  .marquee-item .fact p {
    text-align: center;
  }
  
  .member {
    width: 100%;
  }
  
  .member-link {
    display: block;
  }
  
  .member-img-wrapper {
    margin: 0;
  }
  
  .member-img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s;
  }
  
  .member-details {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.35);
    transform: translateY(100%);
    transition: transform 0.3s;
  }
  
  .member-title {
    margin: 0 0 5px;
  }
  
  .member-subtitle {
    margin: 0;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
  }
  
  .member-link:hover .member-details {
    transform: none;
  }
  
  .member-link:hover .member-img {
    filter: grayscale(0);
  }
  

  
  @media (min-width: 850px) {
    .marquee-item {
      width: 500px;
    }
  
    .member-img {
      height: 500px;
    }
  
    .member-title {
      font-size: 1.6em;
    }
  
    .marquee-arrow {
      top: 50%;
      transform: translateY(-50%);
      width: 70px;
      height: 70px;
    }
  
    .marquee-arrow.arrow-prev {
      left: 40px;
    }
  
    .marquee-arrow.arrow-next {
      right: 40px;
    }
  }
  
#quote {
    margin: 120px 10%;
    text-align: left;
}

#quote h1 {
    color: #aaa55b;
    position: relative;
}

#quote h1::before {
    content: "“";
    font-size: 14rem;
    position: absolute;
    left: -90px;
    top: -80px;
    color: #000000;
    opacity: 10%;
    z-index: -1;
}

#quote h1::after {
    content: "“";
    font-size: 14rem;
    position: absolute;
    right: -90px;
    top: -80px;
    color: #000000;
    opacity: 10%;
    z-index: -1;
    transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
  #quote {
    text-align: center;
    margin: 100px 10% 0 10%
  }

  #quote h1::before {
    left: -60px;
    top: -60px;
    font-size: 10rem;
  }

  #quote h1::after {
    right: -40px;
    bottom: -20px;
    font-size: 10rem;
  }
  
}

#about-bella {
    margin: 10px auto 100px;
}

#about-bella .inner {
  padding: 0 50px 20px;
}

@media screen and (max-width: 768px) {
  #about-bella {
    margin: 10px auto 50px;
  }

  #about-bella .inner {
    padding: 30px 20px;
  }
}

#about-bella .col-md-6 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.align-left {
  text-align: left!important;
}

.inner {
  padding: 50px 100px;
  text-align: left;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 30px 20px;
  }
  
}

.inner form input, .inner form textarea {
  background: #faf3e0;
    border: 2px solid #b2a283;
    border-radius: 5px;
    min-height: 40px;
}

.inner form input {
  padding: 0 20px;
}

.inner form textarea {
  padding: 7px 20px;
}

.inner form > div {
  width: 100%;
  padding: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.inner form > div label {
  color: #aaa55b;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.inner form .form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

@media screen and (max-width: 767px) {
  .inner form .form-footer {
    flex-direction: column;
    gap: 10px;
  }
  
}

.inner form .form-footer label {
  display: flex;
  align-items: center;
  gap: 10px;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  cursor: pointer;
  position: relative;
  padding: 0!important;
    width: 30px;
    height: 30px;
    min-height: unset!important;
}

input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    margin: 3px;
    background: #b5a47c;
    border-radius: inherit;
    border: 2px solid #b5a47c;

}

.inner .btn-outer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

 .full-width {
  position: relative;
  padding: 50px;
  margin-top: 50px;
  ;
}

 .full-width::before {
  content: "";
  position: absolute;
  background-image: var(--gradient);
  border-radius: var(--radius);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

 .full-width::after {
  content: "";
  position: absolute;
  background: #FAF3E0;
  border-radius: 6px;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  z-index: -1;
}

#journey .full-width .img-outer {
  display: flex;
  align-items: center;
  justify-content: center;
}

#journey .full-width .cover img {
  margin-bottom: -160px;
  margin-top: -70px;
  width: 100%;
  transform: rotate3d(2, -1, 1, 45deg);
  box-shadow: 7px 9px 0px 0px #ffffff;
}

#coming-soon {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  
  #journey .full-width .cover img {
    margin-bottom: 0px;
    margin-top: 0px;
  }

  #journey .row {
    gap: 20px;
  }

  #coming-soon {
    padding: 0;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  #coming-soon .text {
    padding: 30px 30px 0;
  }
  
}

#journey .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
}

#journey .full-width .text {
  display: flex;
    flex-direction: column;
    justify-content: center;
}

#journey #logo {
  margin: 0 -5%;
    width: 300px;
}

.book {
  padding: 0;
  border-radius: var(--radius);
    overflow: hidden;
}

.book img {
  width: 100%;
  height: auto;
}

.book .col-md-3 {
  padding: 0;
}

.book .text {
  display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 30px;
}

@media (max-width: 768px) {
  #books  {
    padding: 0 10px;
  }

  #books .text  {
    padding: 30px;
  }

  #books img {
    width: calc(100% - 10px);
  }
}

.imgHolder {
    position: relative;
}

.imgHolder img {
  z-index: 2;
}

.imgHolder::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background-image: var(--gradient);
    border-radius: var(--radius);
    z-index: -2;
}

.imgHolder::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(80% - 10px);
  background-color: #FAF3E0;
  border-radius: calc(var(--radius) - 2px);
  z-index: -1;
}

body.nutriverse {
  background-image: url(../uploads/nutriBg.png), linear-gradient(180deg, #fdf3e3, #faf3e0, #ffc39c, #ffc39c);
  background-blend-mode: multiply;
  background-size: 50%;
  background-attachment: scroll;
  background-repeat: repeat-x;
  min-height: 100vh;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.charOuter img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.25s ease,
              filter 0.25s ease,
              box-shadow 0.25s ease;
}

/* Wiggle animation on the wrapper */
@keyframes wiggle {
  0%   { transform: rotate(0deg); }
  15%  { transform: rotate(-6deg); }
  30%  { transform: rotate(6deg); }
  45%  { transform: rotate(-4deg); }
  60%  { transform: rotate(4deg); }
  75%  { transform: rotate(-2deg); }
  100% { transform: rotate(0deg); }
}

/* Wrapper wiggles */
.charOuter:hover {
  animation: wiggle 0.5s ease-in-out;
  transform-origin: 50% 70%;
  cursor: pointer;
}

/* Image scales + glows smoothly */
.charOuter:hover img {
  transform: scale(1.07);
  filter: brightness(1.08) drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

.book .col-md-3 {
  border-radius: 23px 0 0 23px;
    overflow: hidden;
}

.book img {
  margin: 5px;
}

.character-page .hero {
  display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .character-page .hero {
    flex-direction: column;
  }
}

.character-page .facts {
  padding: 40px;
    padding-left: 130px;
    margin-left: -100px;
    border-radius: 30px;
    flex-grow: 1;
    position: relative;
    overflow: hidden;
  }

  .hero .facts::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg-illustration);
    background-repeat: no-repeat;
    background-position: 100% 10%;
    background-size: 40%;
    mix-blend-mode: multiply;
    opacity: 0.05;          /* 👈 tweak this per your taste */
    pointer-events: none;
    z-index: 0;
  }
  
  /* keep the content above the SVG */
  .hero .facts > * {
    position: relative;
    z-index: 1;
  }

@media screen and (max-width: 768px) {
  .character-page .facts {
    padding: 40px!importants;
    padding-left: 40px;
    margin-left: unset;
  }
}

.character-page .facts .tagline {
  font-weight: 700;
    font-size: 22px;
}

.nutriverse h1, .nutriverse h3 {
  font-family: 'Roboto';
    font-weight: 700;
    margin-bottom: 0;
}

.character-page .back-link {
  text-decoration: none;
    color: #000;
    font-weight: 500;
    opacity: 0.5;
}

.character-page .back-link:hover {
  opacity: 1;
}

.character-image {
  z-index: 1;
}

.character-meta {
  margin-top: 20px;
}

.hero .character-image {
  z-index: 1;
    max-width: 300px;
    max-height: 300px;
}

.nutriverse .posts {
  display: none;
}

.charOuter {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.charOuter img {
  pointer-events: none; /* ensures whole card is clickable */
}

.nutriverse .copy {
  max-width: 650px;
    margin: 40px 0px;
    text-align: center;
    font-size: 21px;
    line-height: 1.4;
}

.nutriverse .charOuter h4 {
  margin-bottom: 0;
}

.nutriverse .charOuter p {
  padding: 0 50px;
  text-align: center;
  line-height: 1.2;
}

.nutriverse #nutriverse .row {
  margin-bottom: 20px;
}

.nutriverse .character {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.nutriverse .character.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nutriverse .character:nth-child(1) { transition-delay: 0.1s; }
.nutriverse .character:nth-child(2) { transition-delay: 0.2s; }
.nutriverse .character:nth-child(3) { transition-delay: 0.3s; }
.nutriverse .character:nth-child(4) { transition-delay: 0.4s; }
.nutriverse .character:nth-child(5) { transition-delay: 0.5s; }
.nutriverse .character:nth-child(6) { transition-delay: 0.6s; }
.nutriverse .character:nth-child(7) { transition-delay: 0.7s; }
.nutriverse .character:nth-child(8) { transition-delay: 0.8s; }
.nutriverse .character:nth-child(9) { transition-delay: 0.9s; }

.nutriverse .has-arrow {
  position: relative;
}

.nutriverse .has-arrow::after {
    content: "";
    position: absolute;
    background-image: url("../uploads/arrow.svg");
    width: 20%;
    height: 8%;
    background-repeat: no-repeat;
    animation: inherit;
}

.nutriverse .has-arrow#carbo::after {
  top: 65%;
  right: 15%;
  transform: rotate(270deg);
}

.nutriverse .has-arrow#mina::after {
  top: 65%;
  left: 10%;
  transform: rotateX(360deg) rotateY(180deg) rotateZ(280deg);
}

.nutriverse .has-arrow#pro::after {
  top: 65%;
  right: 10%;
  transform: rotate(270deg);
}

.nutriverse .has-arrow#omega::after {
  top: 65%;
  right: 10%;
  transform: rotate(270deg);
}

.nutriverse .has-arrow#aqua::after {
  top: 65%;
  right: 10%;
  transform: rotate(270deg);
}

.nutriverse .has-arrow#vita::after {
  top: 69%;
  right: 6%;
  transform: rotate(270deg);
}

.nutriverse .has-arrow#nutri::after {
  height: 70px;
    width: 80px;
    transform: rotate(178deg);
    top: -70px;
    left: -80px;
}

@media screen and (max-width: 768px) {
  .nutriverse .has-arrow#nutri::after {
    transform: rotate(254deg);
    top: -70px;
    right: -160px;
    left: unset;
  }
}

.nutriverse .has-arrow#micro-biota::after {
  height: 70px;
    width: 80px;
    transform: rotate(332deg);
    top: 60%;
    left: 110%;
}

@media screen and (max-width: 768px) {
  .nutriverse .has-arrow#micro-biota::after {
    transform: rotate(88deg);
    top: 90%;
    left: -30%;
  }
}

.textHolder span#nutri, .textHolder #micro-biota span {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.nutriverse .container-small .character-image,
.nutriverse .container-small .facts,
.nutriverse .container-small .character-body p {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

/* when page is "active" */
.nutriverse .container-small.is-visible .character-image,
.nutriverse .container-small.is-visible .facts,
.nutriverse .container-small.is-visible .character-body p {
  opacity: 1;
  transform: translateY(0);
}

/* stagger the pieces */
.nutriverse .container-small.is-visible .character-image {
  transition-delay: 0.1s;
}

.nutriverse .container-small.is-visible .facts {
  transition-delay: 0.25s;
}

/* paragraphs: gentle cascade */
.nutriverse .container-small.is-visible .character-body p:nth-child(1) {
  transition-delay: 0.4s;
}
.nutriverse .container-small.is-visible .character-body p:nth-child(2) {
  transition-delay: 0.5s;
}
.nutriverse .container-small.is-visible .character-body p:nth-child(3) {
  transition-delay: 0.6s;
}
.nutriverse .container-small.is-visible .character-body p:nth-child(4) {
  transition-delay: 0.7s;
}
.nutriverse .container-small.is-visible .character-body p:nth-child(5) {
  transition-delay: 0.8s;
}
.nutriverse .container-small.is-visible .character-body p:nth-child(6) {
  transition-delay: 0.9s;
}
.nutriverse .container-small.is-visible .character-body p:nth-child(7) {
  transition-delay: 1s;
}
.nutriverse .container-small.is-visible .character-body p:nth-child(8) {
  transition-delay: 1.1s;
}





/* hamburger hidden on desktop */
.nav-toggle {
  display: none;
}

/* --- MOBILE STYLES --- */
@media (max-width: 768px) {

  /* show hamburger */
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1100; /* above nav */
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #b5a47c; /* match your text colour */
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  /* turn into "X" when open */
  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* full-screen overlay nav */
  .site-nav {
    position: fixed;
    inset: 0;
    background: rgba(0 0 0 / 80%); /* tinted overlay */
    display: flex;                    /* always flex; we'll hide via opacity */
    align-items: center;
    justify-content: center;
    z-index: 1000;

    /* animation bits */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0s linear 0.25s; /* hide visibility AFTER fade-out */
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0s; /* visible immediately when opening */  }

  .site-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .site-nav li {
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open li {
    transform: translateY(0);
    opacity: 1;
  }

  .site-nav.is-open li:nth-child(1) { transition-delay: 0.05s; }
.site-nav.is-open li:nth-child(2) { transition-delay: 0.10s; }
.site-nav.is-open li:nth-child(3) { transition-delay: 0.15s; }
.site-nav.is-open li:nth-child(4) { transition-delay: 0.20s; }
.site-nav.is-open li:nth-child(5) { transition-delay: 0.25s; }

  .site-nav a {
    color: #000000;
    font-family: "Libre Bodoni", serif;
    font-size: 2rem;                     
    text-decoration: none;
    font-weight: 300;
    font-size: 1.3em;
  }

  .site-nav a:hover {
    text-decoration: underline;
  }


  /* prevent body scroll when menu open */
  body.nav-open {
    overflow: hidden;
  }
}

#where-to-buy {
  text-align: center;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-thanks {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;

}

.hidden {
  display: none;
}

.home-page img.tilt {
  max-width: 600px;
  margin-bottom: 20px;
}