/* Footer Social Icons Hover Colors */
.footer-modern-social .facebook:hover svg circle { fill: #1877f3; }      /* Facebook Blue */
.footer-modern-social .instagram:hover svg rect { fill: #e1306c; }      /* Instagram Pink */
.footer-modern-social .contact:hover svg { filter: drop-shadow(0 0 4px #25d366); } /* WhatsApp/Contact Green */
.footer-modern-social .gmail:hover svg rect { fill: #ea4335; }          /* Gmail Red */
.footer-modern-social .quick-icon { transition: transform 0.2s; }
.footer-modern-social .quick-icon:hover { transform: scale(1.15); }

/* === FOOD SECTION IMAGE SQUARES & HOVER EFFECT === */
.food-imgbox {
  border-radius: 18px; /* square with slightly rounded corners */
  border: 3px solid #ffd700;
  overflow: hidden;
  width: 170px;
  height: 170px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px #b8860b33;
  transition: 
    box-shadow 0.3s cubic-bezier(.4,2,.6,1),
    transform 0.22s cubic-bezier(.4,2,.6,1),
    border-color 0.22s cubic-bezier(.4,2,.6,1);
  position: relative;
}

.food-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: 
    transform 0.25s cubic-bezier(.4,2,.6,1),
    filter 0.22s cubic-bezier(.4,2,.6,1);
}

/* Gorgeous hover effect for food images */
.food-imgbox:hover,
.food-imgbox:focus-within {
  box-shadow: 0 8px 36px 0 #ffd70099, 0 0 0 8px #fffbe6cc;
  border-color: #b8860b;
  transform: scale(1.07) rotate(-2deg);
  z-index: 2;
}

.food-imgbox:hover .food-img,
.food-imgbox:focus-within .food-img {
  transform: scale(1.11) rotate(-1deg);
  filter: brightness(1.13) drop-shadow(0 0 18px #ffd70088);
}

/* Optional: Add a gold overlay shine on hover */
.food-imgbox::after {
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(255,255,255,0.08) 0%, rgba(255,215,0,0.13) 100%);
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(.4,2,.6,1);
  z-index: 3;
}
.food-imgbox:hover::after,
.food-imgbox:focus-within::after {
  opacity: 1;
}

/* para sa pricelist image */

.foodprice:hover,
.foodprice:focus-within {
  box-shadow: 0 8px 36px 0 #ffd70099, 0 0 0 8px #fffbe6cc;
  border-color: #b8860b;
  transform: scale(1.07) rotate(-2deg);
  z-index: 2;
}

.foodprice:hover .food-img,
.foodprice:focus-within .food-img {
  transform: scale(1.11) rotate(-1deg);
  filter: brightness(1.13) drop-shadow(0 0 18px #ffd70088);
}

/* Optional: Add a gold overlay shine on hover */
.foodprice::after {
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(255,255,255,0.08) 0%, rgba(255,215,0,0.13) 100%);
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(.4,2,.6,1);
  z-index: 3;
}
.foodprice:hover::after,
.foodprice:focus-within::after {
  opacity: 1;
}
/* Responsive adjustments for food images */
@media (max-width: 900px) {
  .food-imgbox {
    width: 120px;
    height: 120px;
    border-radius: 12px;
  }
  .food-img {
    border-radius: 8px;
  }
}
@media (max-width: 700px) {
  .food-imgbox {
    width: 120px;
    height: 120px;
    border-radius: 12px;
  }
  .food-img {
    border-radius: 5px;
  }
}
  /* Inquire Now Modal Styles */
  .inquire-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    align-items: center;
    justify-content: center;
  }

  .inquire-modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(14, 14, 13, 0.75); /* semi-transparent dark */
    backdrop-filter: blur(2px);
    z-index: 1;
  }

  .inquire-modal-content {
    position: relative;
    z-index: 2;
    background: #4e4d45cc; /* dark navy blue */
    border-radius: 18px;
    max-width: 95vw;
    width: 480px;
    max-height: 90vh;
    box-shadow: 0 8px 32px #18130a55;
    padding: 1.5rem 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: auto; /* enable scroll */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
  }
  .inquire-modal-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  @keyframes modalPopIn {
    from { transform: translateY(40px) scale(0.97); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
  }

  .inquire-modal-close {
    position: absolute;
    top: 10px; right: 18px;
    background: none;
    border: none;
    font-size: 3rem;
    color: #0f0d18;
    cursor: pointer;
    z-index: 3;
    transition: color 0.2s;
  }
  .inquire-modal-close:hover,
  .inquire-modal-close:focus {
    color: #ff0000;
  }

  .inquire-modal iframe {
    width: 100%;
    min-height: 400px;
    border: none;
    background: transparent;
    flex: 1 1 auto;
  }

  /* Golden Leaf Custom Order Form Styles */
  .goldenleaf-order-form {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    font-family: 'Segoe UI', 'Poppins', Arial, sans-serif;
  }

  .order-form-title {
    text-align: center;
    color: #fcda1d;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
  }

  .order-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

  .order-form-group label {
    font-weight: 600;
    color: #0f0d18;
    margin-bottom: 2px;
    font-size: 1rem;
  }
  .order-form-group label span {
    color: #0f0d18;
  }

  .goldenleaf-order-form input,
  .goldenleaf-order-form select,
  .goldenleaf-order-form textarea {
    padding: 0.7rem 0.9rem;
    border-radius: 8px;
    border: 1.5px solid #353323;
    background: #fffbe6;
    color: #18130a;
    font-size: 1rem;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 6px #b8860b11;
    resize: none;
  }
  .goldenleaf-order-form input:focus,
  .goldenleaf-order-form select:focus,
  .goldenleaf-order-form textarea:focus {
    border: 1.5px solid #b8860b;
    box-shadow: 0 2px 12px #b8860b22;
  }

  .order-form-submit {
    background: linear-gradient(90deg, #17213a 60%, #020202ec 100%);
    color: #fffbe6;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 0;
    cursor: pointer;
    margin-top: 0.5rem;
    box-shadow: 0 2px 12px #b8860b33;
    transition: background 0.2s, color 0.2s;
  }
  .order-form-submit:hover,
  .order-form-submit:focus {
    background: #44db259c;
    color: #ffffff;
  }

  .order-form-success {
    margin-top: 1rem;
    color: #388e3c;
    background: #fffbe6;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    text-align: center;
    font-weight: 600;
    border: 1.5px solid #b8860b;
    box-shadow: 0 2px 12px #b8860b11;
  }

  /* Responsive */
  @media (max-width: 600px) {
    .inquire-modal-content {
      width: 90vw;
      max-width: 90vw;
      padding: 0.5rem 0.2rem 0.7rem 0.2rem;
      border-radius: 10px;
      background: #4e4d45cc; /* ensure navy blue on mobile */
    }
    .inquire-modal iframe {
      min-height: 320px;
    }
    .goldenleaf-order-form {
      max-width: 90vw;
      padding: 0 0.2rem;
      gap: 0.7rem;
    }
    .order-form-title {
      font-size: 1.3rem;
    }
    .order-form-group label {
      font-size: 0.97rem;
    }
    .goldenleaf-order-form input,
    .goldenleaf-order-form select,
    .goldenleaf-order-form textarea {
      font-size: 0.97rem;
      padding: 0.6rem 0.7rem;
    }
    .order-form-submit {
      font-size: 1rem;
      padding: 0.7rem 0;
    }
  }

  /* Add to your style2.css for responsive food choices grid */
  /* filepath: c:\Users\Seika\OneDrive\Desktop\GOLDEAN LEAF CATERING SERVICES\css\style2.css */
  /* Two-column food grid, bigger food images, always responsive */

  /* Food Choices Grid: two columns, responsive */
  .food-choices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  /* Food Category: stretch to fit column */
  .food-category {
    min-width: 0;
    max-width: 100%;
    background: #b9b599;
    border-radius: 12px;
    box-shadow: 0 2px 10px #b8860b11;
    padding: 1.2rem 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Food Category Title - always visible, centered, and responsive */
.food-category-title {
  width: 100%;
  text-align: center;
  background: #151127;
  color: #fcda1d;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 8px 8px 0 0;
  padding: 0.5rem 0.2rem 0.4rem 0.2rem;
  margin-bottom: 1rem;
  margin-top: 0;
  box-shadow: 0 2px 8px #18130a22;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (max-width: 900px) {
  .food-category-title {
    font-size: 1.03rem;
    margin-bottom: 0.7rem;
    padding: 0.4rem 0.1rem 0.3rem 0.1rem;
  }
}
@media (max-width: 600px) {
  .food-category-title {
    font-size: 0.97rem;
    margin-bottom: 0.5rem;
    padding: 0.3rem 0.1rem 0.2rem 0.1rem;
  }
}

/* Responsive adjustments for food choices */
  @media (max-width: 900px) {
    .food-choices-grid {
      grid-template-columns: 1fr;
      gap: 1.1rem;
    }
  }
  @media (max-width: 600px) {
    .food-choices-grid {
      grid-template-columns: 1fr;
      gap: 0.7rem;
      padding-bottom: 0.2rem;
    }
  }

  /* Add or update in your style2.css for better alignment and responsiveness */
  /* filepath: c:\Users\Seika\OneDrive\Desktop\GOLDEAN LEAF CATERING SERVICES\css\style2.css */
  .food-choice {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
    width: 100%;
  }

  .food-choice input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: #b8860b;
    flex-shrink: 0;
    border-radius: 6px;
    border: 2px solid #b8860b;
    background: #fffbe6;
    transition: box-shadow 0.18s, border-color 0.18s, background 0.18s;
    outline: none;
  }

  .food-choice input[type="checkbox"]:hover,
  .food-choice input[type="checkbox"]:focus {
    border-color: #ffd700;
    background: #fffbe6;
    box-shadow: 0 0 0 4px #ffe08255, 0 2px 8px #b8860b33;
  }

  /* Optional: make the image glow too when checkbox is hovered/focused for extra feedback */
.food-choice input[type="checkbox"]:hover ~ img,
.food-choice input[type="checkbox"]:focus ~ img {
  box-shadow: 0 0 0 4px #ffe08288, 0 2px 12px #b8860b44;
  border-color: #ffd700;
}

  .food-choice span {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
  }

  .food-choice img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid #0f0d18;
    box-shadow: 0 1px 8px #b8860b22;
    margin-bottom: 0.3rem;
    background: #fff;
    transition: border 0.2s, box-shadow 0.2s, transform 0.18s;
  }

  .food-choice span {
    font-size: 1.08rem;
    color: #18130a;
    font-weight: 600;
    text-align: center;
    margin-top: 0.1rem;
  }

  @media (max-width: 900px) {
    .food-choice img {
      width: 90px;
      height: 90px;
      border-radius: 10px;
    }
    .food-choice span {
      font-size: 1rem;
    }
  }
  @media (max-width: 600px) {
    .food-choice img {
      width: 65px;
      height: 65px;
      border-radius: 7px;
    }
    .food-choice span {
      font-size: 0.97rem;
    }
  }

/* Responsive Success Popup */
#orderSuccessPopup {
  position: fixed;
  z-index: 999999;
  inset: 0;
  background: rgba(24,19,10,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s;
}
.order-success-popup-content {
  background: #fffbe6;
  border-radius: 18px;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 8px 32px #18130a55;
  text-align: center;
  max-width: 90vw;
  width: 350px;
  position: relative;
  animation: popIn 0.25s cubic-bezier(.4,2,.6,1);
}
.order-success-popup-title {
  color: #b8860b;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.order-success-popup-msg {
  color: #645918;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.order-success-popup-close {
  position: absolute;
  top: 10px; right: 18px;
  font-size: 2rem;
  color: #b8860b;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  line-height: 34px;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.order-success-popup-close:hover,
.order-success-popup-close:focus {
  background: #b8860b;
  color: #fffbe6;
  outline: none;
}
#orderSuccessPopup.hide {
  animation: fadeOut 0.3s forwards;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}
@keyframes popIn {
  from { transform: scale(0.97) translateY(30px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
@media (max-width: 500px) {
  .order-success-popup-content {
    width: 98vw;
    padding: 1.2rem 0.3rem 1rem 0.3rem;
    border-radius: 10px;
  }
  .order-success-popup-title {
    font-size: 1.1rem;
  }
  .order-success-popup-msg {
    font-size: 0.97rem;
  }
}
/* Default style for all devices */
.imgforpricelist {
  text-align: center;
  margin: 10px 0;
}

.foodprice {
  width: 100%;
  max-width: 300px; /* Default fallback size */
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Extra small devices (phones, <480px) */
@media (max-width: 480px) {
  .foodprice {
    max-width: 180px;
  }
}


/* Small devices (phones 481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .foodprice {
    max-width: 220px;
  }
}

/* Medium devices (tablets 769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .foodprice {
    max-width: 300px;
  }
}

/* Large devices (laptops/desktops 1025px up) */
@media (min-width: 1025px) {
  .foodprice {
    max-width: 350px;
  }
}