@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@350;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amarante&display=swap');

#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

html {
  overflow-y: scroll;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Trebuchet MS", sans-serif;
  color: #f3eee8;
  background-image: url('@/assets/bgq6.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Keeps background in place on scroll */
  overflow-x: hidden;
  overflow-y: scroll;
}

header {
  background: white;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

.mobile-item-details,
.mobile-info-overlay,
.mobile-details-section {
  display: none;
}

.category-links {
  display: none;
  color: #f3eee8;
}

main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  overflow: hidden;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 10px;  
  overflow: visible; /* Ensure no internal scrollbars */
  width: 100%;
}

.photo {
  text-align: center;
}

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

.photo p {
  text-align: left;
  font-size: 14px;
}

.about-container {
  z-index: 1;
}

.snipcart-modal__container { 
  z-index: 100000;
}

.amarante-regular {
  font-family: "Amarante", serif;
  font-weight: 400;
  font-style: normal;
}

.layout {
  /* This takes up all remaining space between header and footer */
  flex: 1;
}

.app-footer {
  flex-shrink: 0; /* Prevents footer from shrinking */
}



@media (max-width: 768px) {
  #app {
    max-width: 100%; /* Allow full width for smaller screens */
    width: 100%; /* Ensure no extra width constraints */
    padding: 0; /* Ensure no padding on mobile */
  }
}
