/* ------------------------------
   1. Global Styles
------------------------------ */
body {
  margin: 0;
  padding:0;
}

/* ------------------------------
   2. Navigation
------------------------------ */
.nav-container {
  display: flex;
  align-items: center;
  padding: 2rem;
  width: 100%;
  position: relative;
}

.nav-left {
  display: flex;
  margin-right: auto;
  gap: 1rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
}



.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

nav a {
  text-decoration: none;
}

.PDP_LOGO {
  width: 50px;
  height: auto;
}






/* ------------------------------
   3. Home Page
------------------------------ */

/* Home page background */
.home-page {
  background: #0a6d1d;
}

/* Home page nav links only */
.home-page .nav-container a {
  color: #edebe0;
}
.slogan {
  margin-top: 20rem;

}
.slogan h3 {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 7rem;
  line-height: 7.0rem;
  color: #edebe0;
}

.home-middle-section {
  background-color: #fff;
  margin-top: 20rem;


}

.middle-wrapper {
  display: flex;
  gap: 10rem;
  align-items: center;
}

.store_information {
display: flex;
  flex-direction: column;
text-align: center;
  max-width: 600px;
}


.store_information h1 {
  color: #0a6d1d;
  font-size: 1.5rem;

}
.store_information h2 {
  color: #000000;
  font-size: 2rem;
}

.store_information p {
  color: #000000;
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 1rem;
  line-height: 1.2rem;
}

.store_front_illustration img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.home-footer {
padding: 2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left img {
width: 40px;
height: auto;
}
.footer-center{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-center a {
  margin: 0;
  color: #edebeb;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-right {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.footer-right img{
  height: 20px;
width: auto;
  object-fit: cover;
}


/* ------------------------------
   3. Menu
------------------------------ */


/* ------------------------------------------
   MENU TITLES (MENU AM / MENU PM)
-------------------------------------------*/
.menu-title {
  color: #0e6b29; /* PDP green */
  font-size: 2rem;
padding: 2rem;
  width: 100%;
}

/* ------------------------------------------
   GRID LAYOUT — 4 COLUMNS EXACTLY LIKE PDF
-------------------------------------------*/
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
max-width: 1000px;
  gap: 2rem; /* wide spacing like screenshot */
  margin: 0 auto; /* center the grid container */
  box-sizing: border-box;
}

/* ------------------------------------------
   COLUMN TITLES
-------------------------------------------*/
.menu-column h2 {
  color: #0e6b29;
  font-family: "Gilroy-Bold", sans-serif;
  font-size: 1.5rem;

}

.menu-column p {
font-family: "Gilroy-Medium", sans-serif;

font-weight:bolder;
text-transform: uppercase;
}

/* ------------------------------------------
   MENU ITEM: NAME — DOTS — PRICE
-------------------------------------------*/
.menu-item {
  display: flex;
  align-items: center;
  margin: 0.25rem 0;
}

.dots {
  flex-grow: 1;
  border-bottom: 3px dotted #000;
  margin: 0 0.5rem;
}

.menu-subtext {
  font-size: 0.7rem;

  margin-top: -0.2rem;
  margin-bottom: 0.8rem;
}




.item-desc-list {
margin: 0;             /* removes space above/below the list */
  list-style: none; /* remove bullets */
}

/* ------------------------------
   4. Community
------------------------------ */
.community-section,.shop-section,.menu-section
  {
    padding-top: 4rem;
    margin-bottom: 4rem;
  }
.community-item {
  display: flex;
  align-items: center; /* vertically centers text relative to image */
  justify-content: center;
  gap: 5rem; /* space between image and text */
  margin-bottom: 2rem; /* spacing between multiple items */
}

.community-item img {
  max-width: 400px; /* adjust size as needed */
  width: 100%;
  height: auto;
  object-fit: cover;
}

.community-text {
  max-width: 500px; /* limits the width of the text block */
}

.community-text h2 {
  color: #0a6d1d;
  text-align: left;

  margin-top: 0;
  margin-bottom: 1rem;
}

.community-text p {
  text-align: left;
  max-width: 600px;
 
}

/* ------------------------------
   4. Product Grid
------------------------------ */
.product-grid {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  padding: 2rem;
  gap: 2rem;
}

.product-info {
  display: flex;
gap: 6rem;
  align-items: baseline; /* keeps text nicely aligned */
  justify-content: center;
}

.product-info p {
  margin: 0; /* remove default p spacing */
}

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

.product-card img {
  width: 100%;
  display: block;
}

.product-card p {
  margin: 0.25rem 0 0;
}

/* ------------------------------
   4. Product Page
------------------------------ */
.product-page {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-gallery img {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
  margin-bottom: 2rem;
}


.product-details p {
  max-width: 400px;

}





/* Optional: control product width */
#product-component-1765906397403 {
padding: 1rem;
  width: 100%;
}





/* ------------------------------
   7. Footer
------------------------------ */



/* ------------------------------
   7. Lightbox
------------------------------ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  overflow-y: scroll;
  z-index: 9999;
  padding: 2rem;
  box-sizing: border-box;
}

.lightbox.hidden {
  display: none;
}

.lightbox-content img {
  width: 100%;
  max-width: 800px;
  margin: 1rem auto;
  display: block;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: grey;
  cursor: pointer;
  z-index: 10000;
}

/* ------------------------------
   Responsive Adjustments
------------------------------ */

/* Small screens (tablets & below) */
@media (max-width: 768px) {

  /* Navigation */
  .nav-container {
    flex-direction: row;
    padding: 1rem;
  }

  .nav-center {
    position: static;
    transform: none;

  }

  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Slogan */
  .slogan {
    margin-top: 8rem;
  }
  .slogan h3 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
.menu-section, .shop-section {
    padding: 2rem 1rem;
  }
  /* Middle section */
  .middle-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .store_information {
    max-width: 100%;
    padding: 0 1rem;
  }

  /* Community items */
  .community-item {
    padding: 1rem;
    flex-direction: column;
    gap: 2rem;
  }
  .community-text {
    text-align: center;
  }

  /* Product grid */
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-info {
    flex-direction: column;
    gap: 1rem;
  }

  /* Product page */
  .product-page {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .home-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Extra small screens (phones) */
@media (max-width: 480px) {
  .slogan h3 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .menu-title {
    font-size: 1.5rem;
    padding: 1rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .community-item img {
    max-width: 100%;
  }

  .footer-center a {
    font-size: 0.8rem;
  }
}
