
body {
    margin: 0;
    background: none;
}

body::before {
    content: "";
    position: fixed;

    top: 0;
    left: 0;

    width: 100vw;
    height: 100dvh; /* 100dvh accounts for the mobile browser address bar expanding/collapsing. */

    background-image: url("/assets/images//DSC07089.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: -1;
}

/* body {
  min-height: 100vh;
  width: 100%;
  background-position: 55% center;
  background-attachment: fixed;
  overflow-y:auto;
} */

@font-face{
  font-family:proxima-nova;
  src:url(https://use.typekit.net/af/4b22bb/00000000000000007735e601/31/l?subset_id=2&fvd=n1&v=3)
  format("woff2")
}

h1 {
  font-family:proxima-nova;
  color: black;
  font-size: 50px;
  margin-top: 24px;
  margin-bottom: 0.3em;
  padding: 0px 10px; /* creates that airy spacing */
}

/*--------------------------------------------------*/

.nav {
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* smoother on iOS */

}

.nav a {
  display: inline-block;
  flex-direction: column;
  padding: 0px 10px; /* creates that airy spacing */
  margin: 0;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: black;
  opacity: 1.0;
  margin: 6px 0;          /* vertical spacing between links */
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 1.0;
  transform: scale(1.1);
}

/*--------------------------------------------------*/

/* hamburger button */
.hamburger {
  color: white;
  position: fixed;
  top: 24px;
  left: 18px;
  font-size: 36px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  opacity: 0.7;
}

.hamburger:hover {
  opacity: 1;
}

.side-menu {
  position: fixed;
  align-items: center;
  box-sizing: border-box;
  top: 0;
  left: -140%;   /* hidden by default */
  width: 100%;
  min-height: 100vh;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;

  /* translucent glass effect */
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  padding: 80px 30px;

  display: flex;
  flex-direction: column;
  gap: 10px;

  transition: left 0.3s ease;
  z-index: 1000;
  border-right: 1px solid rgba(0,0,0,0.08);

}

.side-menu a {
  text-decoration: none;
  color: black;
  letter-spacing: 0.02em;
  opacity: 1.0;
  transition: opacity 0.2s ease;
}

.side-menu a:hover {
  opacity: 1;
}

.side-menu.open {
  left: 0;
}

/*--------------------------------------------------*/

/* Page container to ensure footer is at the bottom of the page */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/*--------------------------------------------------*/

.social-icons {
  justify-self: center;
  display: flex;
  gap: 24px;
  padding: 0;
}

.social-icons a {
  color: rgba(255,255,255,0.85);
  font-size: 1.4rem;
  transition: color .2s ease, transform .2s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/*--------------------------------------------------*/

.site-footer {
  /* position: fixed;
  bottom: 0; */
  margin-top: auto;
  left: 0;
  gap: 16px;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  flex-direction: column;    /* stack vertically */
  align-items: center;
  box-sizing: border-box;
  z-index: 100;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.70);
}

.site-footer p {
    margin: 0;
    letter-spacing: .05em;
}

/*--------------------------------------------------*/

.copyright {
  justify-self: start;
  margin-left: 30px;
  margin: 0;
  /* position: absolute; */
  left: 30px;
  bottom: 20px;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,.7);
}

/*--------------------------------------------------*/

.logos {

  margin: auto;
  padding: 10px 100px;
  box-sizing: border-box;
  height: auto;
  width: 80vw;
  max-width: 820px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/*--------------------------------------------------*/

@media (max-width: 700px) {

    .site-footer {
      flex-direction: column;
      gap: 10px;
      padding: 16px;
    }

    .social-icons {
      flex-wrap: wrap;
      justify-content: center;
    }

}

/*--------------------------------------------------*/


.make-white {
  filter: brightness(0) invert(1);
  opacity: 0.4;
  transition: color .2s ease, transform .2s ease;
}

.make-white:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

/*--------------------------------------------------*/
/* Product Grid */

.product-grid {
  display: grid;
  font:14px/1.7 system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  width: 100%;
  max-width: 1000px;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  padding: 0 86px;
  box-sizing: border-box; /* this helped fit everything in mobile view */
  gap: 30px;
  color: rgba(255,255,255,1.0);
  filter: drop-shadow(30px 30px 30px rgba(0,0,0,0.6));
}

.product-card {
  text-align: center;

}

.product-card img {
  width: 100%;
  height: auto;
  max-height: 200px;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  background-color: rgba(255,255,255,0.3);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);

}

.product-card img:hover {
  opacity: 1.0;
  transform: scale(1.1);
}

.product-card h3 {
  margin: 8px 0 2px;
  font-size: 0.95rem;
  font-weight: 600;
}

.product-card h4 {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

/*--------------------------------------------------*/

/* click to enlarge image */

.image-container img {
    cursor: pointer;
}

/* Popup background */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;

    left: 0;
    top: 0;

    width: 100vw;
    height: 100vh;

    background: rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);

    justify-content: center;
    align-items: center;
}

/* Enlarged image */
.modal-image {
    max-width: 90vw;
    max-height: 90vh;

    object-fit: contain;

    border-radius: 12px;
}

/* X button */
.close-button {
    position: absolute;

    top: 20px;
    right: 30px;

    color: white;
    font-size: 40px;
    font-weight: 300;

    cursor: pointer;
}

/*--------------------------------------------------*/
