@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v18/JTURjIg1_i6t8kCHKm45_cJD3gnD_g.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v18/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
:root {
  --color-card-bg-dark: rgba(0, 0, 0, 0.5);
  --color-card-bg-light: #fff;
  --color-text-dark: #1a1a1a;
  --color-text-light: #e6e6e6;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
h1 {
  font-size: 3em;
  font-weight: 300;
}
a {
  color: var(--color-text-dark);
}
a:hover {
  text-decoration: none;
}
body {
  color: var(--color-text-dark);
  font-family: "Montserrat", sans-serif;
  background-attachment: fixed;
  /* background-image: url(/images/wheat.jpg);
  background-position: center;
  background-size: cover;*/
}
@media (hover: none) {
  body {
    background-attachment: initial;
    background-repeat: no-repeat;
  }
}
.card {
  display: flex;
  padding: 1rem;
  min-height: 100vh;
  background-color: var(--color-card-bg-dark);
}
.card > .content {
  margin: auto;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.content {
  max-width: 800px;
}
.title-card {
  color: var(--color-text-light);
}
.title-card h1 {
  text-align: center;
}
.product-card {
  color: var(--color-text-dark);
  background-color: var(--color-card-bg-light);
  border-bottom: 1px solid;
}
.product-card h1 {
  text-align: center;
}
.content h2 {
  text-align: center;
}
.contact-card {
  background-color: var(--color-card-bg-light);
}
.info-card {
  color: var(--color-text-light);
}
.contact,
.info {
  margin: 0;
  margin-top: auto;
  padding: 0;
}
.contact li,
.info li {
  margin: 1rem 0;
  list-style: none;
}
footer {
  padding: 2rem 1rem;
  background-color: var(--color-card-bg-light);
  text-align: center;
}
.two-column {
  grid-gap: 6vmax;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

  nav {
    width: 100%;
    position: fixed; /* Fix the nav to the top of the page */
    top: 0; /* Position it at the top */
    right: 0;
    background-color: #fff; /* Optional: set a background color for contrast */
    padding: 10px 0; /* Add vertical padding for spacing */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: shadow for separation */
    z-index: 1000; /* Ensure the nav is above other elements */
  }
  .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end; /* Align items to the right */
    padding-right: 20px; /* Optional: space between menu and right edge */
  }
  .menu li {
    margin-left: 20px; /* Add some space between menu items */
  }
  .menu a {
    text-decoration: none; /* Remove underline from links */
    color: #000; /* Set link color */
/*    font-family: Arial, sans-serif; /* Define font style */
    font-size: 16px; /* Define font size */
  }


  /* Media Query for Mobile Devices */
  @media (max-width: 768px) {
    .menu {
      justify-content: center; /* Center the nav on smaller screens */
      padding-right: 0; /* Remove right padding for center alignment */
    }
  }

  
    /* Styles for Skip Button */
  .skip-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent; /* Fully transparent background */
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
  /*  font-family: Arial, sans-serif;
    cursor: pointer;
    text-decoration: none; /* Make it look like a button but with the link's behavior */
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Adds depth to the text */
    transition: font-weight 0.2s, box-shadow 0.2s; /* Smooth Transition */
    text-decoration: none;
  }

  .skip-button:hover {
    font-weight: bold; /* Make the text bold on hover */
    /*box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Add a shadow effect */	  
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3), inset 0 0 5px rgba(0, 0, 0, 0.2);
  }

  .arrow {
    margin-left: 8px; /* Add space between text and arrow */
  }

  /* Hide Skip Button on Mobile */
  @media (max-width: 768px) {
    .skip-button {
      display: none;
    }
  }
