/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #18130a; /* dark */
  overflow-y: auto;
  font-size: 16px;
  touch-action: manipulation;
  color: #fffbe6; /* light for text */
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* === REMOVE SCROLLBAR === */
body::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* === NAVIGATION BAR === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #18130a;
  color: #fffbe6;
  padding: 12px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: absolute !important;
  z-index: 1000 !important;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: visible !important;
  width: 100vw;
  left: 0;
  top: 0;
}

.logo img {
  height: 60px;
  transition: opacity 0.3s ease;
  filter: drop-shadow(0 0 8px #FFD700);
}

.logo a:hover img {
  opacity: 0.7;
  cursor: pointer;
}

/* === NAV LINKS === */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
  position: relative;
  z-index: 1000;
  overflow: visible !important;
}

.nav-links li {
  position: relative;
}

.dropdown {
  position: relative;
  cursor: pointer;
  z-index: 1000;
  overflow: visible !important;
}

.nav-links a {
  text-decoration: none;
  color: #fffbe6;
  padding: 10px 16px;
  transition: 0.3s ease;
  font-weight: 500;
  display: inline-block;
}

.nav-links a:hover {
  color: #f7bd00e0 !important; /* expensive gold */
}

.nav-links .nav-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 7px;
  vertical-align: middle;
}

.nav-links a, .dropdown-btn {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* === CTA BUTTON === */
.cta-button {
  background-color: #645918;
  color: #fffbe6;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
  background-color: #e6d00a;   /* expensive gold background */
  color: #18130a !important;   /* deep black text for luxury contrast */
}

/* === HAMBURGER MENU === */
.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  width: 26px;
  z-index: 1001;
  position: relative;
}

.menu-toggle span {
  background-color: white;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}

/* === MOBILE STYLES === */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background-color: #0f0f0f;
    padding-top: 80px;
    transition: right 0.4s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
    pointer-events: auto;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
    top: 9px;
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
    top: 9px;
  }
}

/* === DROPDOWN BUTTON === */
.dropdown-btn {
  background: none;
  border: none;
  color: #fffbe6;
  padding: 10px 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
}

.arrow {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #222;
  min-width: 160px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 8px rgba(191,161,74,0.15);
  z-index: 1050;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown.open > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  color: #fffbe6;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.dropdown-menu li a:hover {
  background-color: #BFA14A; /* luxury gold */
  color: #18130a !important;
}

.dropdown.open > .dropdown-btn .arrow {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    background-color: #222;
    box-shadow: none;
    border-radius: 0;
    max-height: 300px;
    overflow-y: auto;
  }

  .dropdown-btn {
    width: 100%;
    justify-content: space-between;
  }
}

/* === FOOTER === */
/* Filipino comment: Ginagaya ang kulay ng navbar sa footer at nilagyan ng fade effect sa gilid gamit ang gradient */

/* Navbar color: #0f0f0f */
.footer {
  background: #18130a;
  color: #fffbe6;
  padding: 20px 0 0 0;
  margin-top: 40px;
  font-size: 0.97rem;
  flex-shrink: 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;    /* mas maliit na max width */
  margin: 0 auto;
  padding: 0 12px;      /* mas maliit na padding */
  gap: 18px;            /* mas maliit na gap */
}

.footer-logo,
.footer-links,
.footer-contact {
  min-width: 180px;
  margin-bottom: 18px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;             /* mas maliit na gap */
  font-size: 1rem;      /* mas maliit na font */
}

.footer-logo img {
  height: 36px;         /* mas maliit na logo */
  width: auto;
  max-width: 100%;
}

.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 0;
  width: 100%;
  min-width: 0;
  max-width: 100vw;
  overflow-x: auto;
}

.footer-links a {
  color: #645918;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
  font-size: 0.97rem;
  word-break: keep-all;
  padding: 4px 8px;
  white-space: nowrap;
  display: inline-block;
}

.footer-links a:hover {
  color: #fffbe6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;             /* mas maliit na gap */
  font-size: 0.95rem;   /* mas maliit na font */
  word-break: break-word;
}

.footer-contact span {
  margin-bottom: 2px;
}

.footer-social {
  margin-top: 6px;
  display: flex;
  gap: 8px;
}

.footer-social a {
  color: #FFD700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  background: none;
  color: #fffbe6;
  padding: 16px 0 8px 0;
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border-radius: 0;
  border-top: 1px solid #645918;
  max-width: 100vw;
  box-shadow: none;
  width: 100%;
  word-break: break-word;
}

/* Responsive: mas maliit ang padding at font sa mobile, at mas maliit na border radius */
@media (max-width: 600px) {
  .footer-bottom {
    font-size: 0.88rem;
    padding: 8px 4px;
    border-radius: 6px;
  }

  .footer-links {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }
}

/* --- Stylish horizontal locations list for food-section-contact --- */
.location-list {
  text-align: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}

.location-items {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 1.05rem;
  color: #fffbe6;
}

.location-items span {
  width: 140px; /* Fixed width for alignment */
  height: 50px; /* Fixed height for alignment */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.05); /* Transparent box */
  border: 1px solid #ffd70080;
  border-radius: 10px;
  box-sizing: border-box;
  text-align: center;
  transition: background 0.3s ease;
}

.location-items span:hover {
  background-color: rgba(255, 215, 0, 0.15);
  cursor: default;
}

/* Responsive adjustment for smaller screens */
@media screen and (max-width: 480px) {
  .location-items {
    gap: 0.5rem;
    font-size: 0.95rem;
  }

  .location-items span {
    width: 120px;
    height: 45px;
    font-size: 0.9rem;
  }
}

/* === HOMEPAGE: HERO IMAGE / BANNER SECTION === */
.catering-banner {
  position: relative;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.catering-img {
  width: 100vw;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0 0 0 0;
  box-shadow: 0 4px 24px rgba(191,161,74,0.10);
  /* Darken and overlay effect */
  filter: brightness(0.55) blur(0.5px);
  position: relative;
  z-index: 1;
}


/* Large laptop or smaller (max-width: 1222px) */
@media (max-width: 1222px) {
  .catering-img {
    height: 100vh;
  }
}

/* Tablet screens (max-width: 992px) */
@media (max-width: 992px) {
  .catering-img {
    height: 100vh;
  }
}

/* Mobile screens (max-width: 768px) */
@media (max-width: 768px) {
  .catering-img {
    height: 100vh;
  }
}

/* Extra small mobile screens (max-width: 480px) */
@media (max-width: 480px) {
  .catering-img {
    height: 100vh;
  }
}

/* Optional: If you want a more layered effect, add a pseudo-element overlay */
.catering-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,19,10,0.55) 0%, rgba(24,19,10,0.75) 100%);
  z-index: 2;
  pointer-events: none;
}

/* === Decorative SVG Wave Divider (Above About Us) === */
.wavy-divider {
  width: 100vw;
  overflow: hidden;
  line-height: 0;
  background: transparent;
  margin: 0;
  padding: 0;
}
.wavy-divider svg {
  display: block;
  width: 100vw;
  height: 90px;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 700px) {
  .wavy-divider svg {
    height: 40px;
  }
}

/* === ABOUT US PREVIEW SECTION === */
.about-preview {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  align-items: center; /* center vertically */
  justify-content: flex-start;
  background: #645918;
  color: #fffbe6;
  padding: 1.2rem 1.5rem;   /* binawasan mula 3rem 1.5rem */
  margin-bottom: 1.2rem;    /* binawasan mula 2.5rem */
  width: 100vw;
  height: 55vh;
  max-width: 100vw;
}

/* Modern About Us Section */
.about-preview-modern {
  width: 100vw;
  background: #1f1e18;
  color: #fff;
  padding: 3.5rem 0 2.2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-preview-modern-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  width: 100%;
  max-width: 1200px;
  padding: 0 2vw;
}

.about-preview-modern-imgbox {
  background: #353329;
  border-radius: 22px;
  padding: 1.2rem;
  box-shadow: 0 6px 32px 0 #18130a22, 0 1.5px 0 #b8860b44;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  max-width: 400px;
  width: 100%;
}

.about-preview-modern-img {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid #353329;
  box-shadow: 0 2px 18px #0008;
  background: #fff;
  display: block;
}

.about-preview-modern-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  min-width: 220px;
  max-width: 520px;
}

.about-preview-modern-title {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 0.7rem 0;
  color: #fff;
  letter-spacing: 0.5px;
}

.about-preview-modern-desc {
  font-size: 1.13rem;
  color: #e0e0e0;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  margin-bottom: 0.7rem;
}

.about-preview-modern-btn {
  display: inline-block;
  background: #fff;
  color: #181c1f;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 0.7rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 12px #0002;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
.about-preview-modern-btn:hover,
.about-preview-modern-btn:focus {
  background: #b8860b;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

.about-preview-modern-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  margin-top: 2.2rem;
  width: 100%;
  max-width: 700px;
  padding: 0 2vw;
  flex-wrap: wrap;
}

.about-preview-modern-social {
  display: flex;
  gap: 0.7rem;
}
.about-preview-modern-social a {
  color: #fff;
  background: #23282c;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.about-preview-modern-social a:hover {
  background: #b8860b;
  color: #fff;
}

.about-preview-modern-address {
  font-size: 1.08rem;
  color: #fff;
  background: #353329;
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 900px) {
  .about-preview-modern-inner {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }
  .about-preview-modern-content {
    align-items: center;
    max-width: 98vw;
  }
  .about-preview-modern-title {
    font-size: 2.1rem;
  }
  .about-preview-modern-footer {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    padding: 0;
  }
}

@media (max-width: 600px) {
  .about-preview-modern {
    padding: 2rem 0 1.2rem 0;
  }
  .about-preview-modern-imgbox {
    padding: 0.5rem;
    min-width: 0;
    max-width: 70vw;
  }
  .about-preview-modern-img {
    max-width: 70vw;
    border-width: 2px;
  }
  .about-preview-modern-title {
    font-size: 1.3rem;
  }
  .about-preview-modern-desc {
    font-size: 0.98rem;
  }
  .about-preview-modern-address {
    font-size: 0.97rem;
    padding: 0.4rem 0.7rem;
  }
}

/* === SERVICES CARDS SECTION === */
.services-section {
  background: linear-gradient(180deg, #201e13 60%, #13120e 100%);
  color: #18130a;
  padding: 3rem 1.5rem 3.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0; /* tanggalin kung may default na margin */
}

.services-title {
  font-family: 'Playfair Display', 'Poppins', 'Lora', serif;
  color: #645918;
  font-size: 2.7rem; /* pinalaki mula 2.2rem */
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  text-align: center;
  width: 100%;
}

.services-featured-title {
  font-family: 'Poppins', 'Lora', serif;
  color: #ffffff;
  font-size: 4.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-align: center;
  margin-top: -5.5rem;
}

/* Responsive adjustments for all devices */
@media (max-width: 1100px) {
  .services-featured-title {
    font-size: 4rem;
    margin-top: -5.2rem;
    margin-bottom: 1rem; 
  }
}
@media (max-width: 900px) {
  .services-featured-title {
    font-size: 4rem;
    margin-top: -5.2rem;
    margin-bottom: 0.9rem;
  }
}
@media (max-width: 700px) {
  .services-featured-title {
    font-size: 4rem;
    margin-top: -2.1rem;
    margin-bottom: 0.7rem;
  }
}
@media (max-width: 600px) {
  .services-featured-title {
    font-size: 3rem;
    margin-top: -2.1rem;
    margin-bottom: 0.7rem;
  }
}
@media (max-width: 500px) {
  .services-featured-title {
    font-size: 3rem;
    margin-top: -1.7rem;
    margin-bottom: 0.5rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2.5rem auto;
  background: none;
}

.service-card {
  background: linear-gradient(135deg, #fffbe6 0%, #000000 100%);
  color: #18130a;
  border: 2px solid #302301;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(191,161,74,0.10);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  min-width: 0;
}

/* Beautiful colored backgrounds for each service card */
.service-card:nth-child(1) { /* Weddings */
  background: linear-gradient(135deg, #3f3c2d 70%, #0a0a0a 100%);
}
.service-card:nth-child(2) { /* Corporate */
  background: linear-gradient(135deg, #323755a9 70%, #0a0a0a 100%);
}
.service-card:nth-child(3) { /* Debut */
  background: linear-gradient(135deg, #494343 70%, #050505 100%);
}
.service-card:nth-child(4) { /* Birthday */
  background: linear-gradient(135deg, #523049 70%, #0a0a0a 100%);
}
.service-card:nth-child(5) { /* Baptismal */
  background: linear-gradient(135deg, #6e7374 70%, #0a0a0a 100%);
}
.service-card:nth-child(6) { /* Anniversaries */
  background: linear-gradient(135deg, #520707b2 70%, #0a0a0a 100%);
}
.service-card:nth-child(7) { /* Kids' Parties */
  background: linear-gradient(135deg, #9e89227e 70%, #0a0a0a 100%);
}
.service-card:nth-child(8) { /* Fiesta */
  background: linear-gradient(135deg, #229e567e 70%, #0a0a0a 100%);
}
.service-card:nth-child(9) { /* Other */
  background: linear-gradient(135deg, #5c594d 70%, #0a0a0a 100%);
}


/* Palakihin ang service image */
.service-imgbox {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1/1;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 18px #0002;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  transition: transform 0.25s;
}

/* Responsive for service images */
@media (max-width: 700px) {
  .service-imgbox {
    max-width: 70vw;
    margin-bottom: 0.8rem;
  }
}
.service-card:hover, .service-card:focus-within {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(191,161,74,0.18);
  border-color: #000000e0;
}

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  color: #fffbe6;
  transition: color 0.3s;
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  color: #746f63;
}

.service-title {
  font-family: 'Poppins', 'Lato', 'Open Sans', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fffbe6;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
  text-align: center;
}

.service-desc {
  font-family: 'Open Sans', 'Lato', Arial, sans-serif;
  color: #fffbe6;
  font-size: 1.05rem;
  text-align: center;
  margin-bottom: 0;
  line-height: 1.6;
}

/* CTA Button */
.services-cta-btn {
  display: inline-block;
  background: #645918;
  color: #fffbe6;
  font-family: 'Poppins', 'Lato', 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 0.85rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(191,161,74,0.10);
  border: none;
  outline: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.25s, box-shadow 0.25s, filter 0.25s;
}

.services-cta-btn:hover,
.services-cta-btn:focus {
  background: #b8860b;
  color: #fff;
}

/* === FEATURE SERVICES TITLE === */
.services-title {
  font-family: 'Playfair Display', 'Poppins', 'Lora', serif;
  color: #645918;
  font-size: 2.7rem; /* pinalaki mula 2.2rem */
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  text-align: center;
  width: 100%;
}

@media (max-width: 700px) {
  .services-title {
    font-size: 1.7rem; /* pinalaki mula 1.5rem */
    margin-bottom: 1.2rem;
  }
}

/* Responsive grid */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
  }
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 100vw;
  }
}

@media (max-width: 700px) {
  .services-section {
    padding: 2rem 0.5rem 2.5rem 0.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 70vw;
  }
  .service-card {
    padding: 1.5rem 1rem 1.5rem 1rem;
  }
 
}

/* Extra: Ensure spacing between sections */
.services-section + * {
  margin-top: 2.5rem;
}

.about-simple-highlight {
  background: none;
  border-left: 4px solid #18130a; /* deep black */
  border-radius: 10px;
  padding: 1.1rem 1.5rem;
  margin: 1.5rem 0 0 0;
  color: #18130a;
  font-family: 'Open Sans', 'Lato', Arial, sans-serif;
  font-size: 1.08rem;
  box-shadow: none;
  max-width: 500px;
  border-top: 1.5px solid #18130a;
  border-bottom: 1.5px solid #18130a;
  border-right: 1.5px solid #18130a;
  /* Rectangle effect: all sides except left are thinner for accent */
}

@media (max-width: 700px) {
  .about-simple-highlight {
    padding: 0.8rem 1rem;
    font-size: 0.98rem;
    max-width: 98vw;
  }
}

.angled-divider {
  width: 100vw;
  overflow: hidden;
  line-height: 0;
  background: transparent;
  margin: 0;
  padding: 0;
}
.angled-divider svg {
  display: block;
  width: 100vw;
  height: 80px;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 700px) {
  .angled-divider svg {
    height: 36px;
  }
}

/* === ASK ICON FLOAT === */
.ask-icon-float {
  position: fixed;
  right: 2vw;
  bottom: 4vh;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ask-icon-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(191,161,74,0.18);
  transition: box-shadow 0.2s, transform 0.2s;
  outline: none;
}

.ask-icon-btn:hover,
.ask-icon-btn:focus {
  box-shadow: 0 8px 32px rgba(191,161,74,0.28);
  transform: scale(1.08);
}

.ask-chatbox {
  display: none;
  flex-direction: column;
  position: fixed;
  right: 2vw;
  bottom: 10vh;
  width: 320px;
  max-width: 92vw;
  background: #fffbe6;
  color: #18130a;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(191,161,74,0.22);
  padding: 1.1rem 1.2rem 1rem 1.2rem;
  z-index: 10000;
  font-size: 1rem;
  transition: opacity 0.2s, transform 0.2s;
  opacity: 0;
  pointer-events: none;
}

.ask-chatbox.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  animation: askChatboxPop 0.18s cubic-bezier(.4,2,.6,1);
}

@keyframes askChatboxPop {
  0% { transform: translateY(30px) scale(0.95); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.ask-chatbox-header {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: #b8860b;
  letter-spacing: 0.5px;
}

.ask-questions {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ask-q-btn {
  background: #645918;
  color: #fffbe6;
  border: none;
  border-radius: 8px;
  padding: 0.55rem 1rem;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.15s;
  width: 100%;
  font-family: inherit;
}

.ask-q-btn:hover,
.ask-q-btn:focus {
  background: #b8860b;
  color: #18130a;
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

.ask-answer {
  min-height: 32px;
  margin-top: 0.7rem;
  background: #fff;
  color: #18130a;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(191,161,74,0.10);
  transition: background 0.18s;
  word-break: break-word;
  display: none;
}

.ask-answer:not(:empty) {
  display: block;
}



/* === QUICK ICONS FLOAT === */
.quick-icons-float {
  position: fixed;
  left: 2vw;
  bottom: 4vh;
  z-index: 10001;
  display: none;
  flex-direction: column;
  gap: 0.7rem;
  align-items: center;
  transition: left 0.3s, top 0.3s, bottom 0.3s;
}

/* Show and reposition to the left of the chatbox when .show-quick-icons is on body */
body.show-quick-icons .quick-icons-float {
   display: flex;
  position: fixed;
  right: 370px; /* dati 360px, dagdagan para may space sa FAQ/chatbox */
  left: auto;
  bottom: 110px;
  flex-direction: column;
  gap: 1.2rem;
  background: none;
  box-shadow: none;
  align-items: flex-end;
  pointer-events: auto;
  z-index: 10002;
}

.quick-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #fffbe6 0%, #ffe082 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(191,161,74,0.18);
  transition: 
    background 0.22s cubic-bezier(.4,2,.6,1), 
    transform 0.22s cubic-bezier(.4,2,.6,1), 
    box-shadow 0.22s;
  margin: 0;
  padding: 0;
  text-decoration: none;
  border: none;
  cursor: pointer;
  will-change: transform, background;
}

.quick-icon svg {
  width: 20px;
  height: 20px;
  transition: 
    transform 0.22s cubic-bezier(.4,2,.6,1),
    filter 0.18s,
    box-shadow 0.18s;
  will-change: transform;
}

/* Interactive hover effect */
.quick-icon:hover,
.quick-icon:focus {
  background: linear-gradient(135deg, #ffe082 0%, #ffd700 100%);
  box-shadow: 0 8px 32px #ffe08299, 0 0 0 6px #fffbe6cc;
  transform: scale(1.18) rotate(-8deg);
  outline: none;
}

.quick-icon:hover svg,
.quick-icon:focus svg {
  transform: scale(1.28) rotate(-16deg) translateY(-3px);
  filter: drop-shadow(0 0 18px #ffd700) brightness(1.25);
}

/* Optional: subtle bounce animation on click */
.quick-icon:active,
.quick-icon:active svg {
  animation: quickIconBounce 0.22s cubic-bezier(.4,2,.6,1);
}

@keyframes quickIconBounce {
  0%   { transform: scale(1.28) rotate(-16deg) translateY(-3px);}
  50%  { transform: scale(0.95) rotate(0deg) translateY(2px);}
  100% { transform: scale(1.28) rotate(-16deg) translateY(-3px);}
}

/* Interactive icon effect for nav bar and floating icons */
.nav-links .nav-icon svg,
.dropdown-btn .nav-icon svg,
.quick-icon svg {
  transition: 
    transform 0.18s cubic-bezier(.4,2,.6,1),
    filter 0.18s,
    box-shadow 0.18s;
}

/* Nav bar icons: scale and glow on hover/focus */
.nav-links a:hover .nav-icon svg,
.nav-links a:focus .nav-icon svg,
.dropdown-btn:hover .nav-icon svg,
.dropdown-btn:focus .nav-icon svg {
  transform: scale(1.18) rotate(-6deg);
  filter: drop-shadow(0 0 6px #b8860b);
}

/* Floating quick icons: scale and glow on hover/focus */
.quick-icon:hover svg,
.quick-icon:focus svg {
  transform: scale(1.18) rotate(-6deg);
  filter: drop-shadow(0 0 8px #FFD700);
}

/* Optional: subtle background highlight for nav link on hover */
.nav-links a:hover,
.nav-links a:focus,
.dropdown-btn:hover,
.dropdown-btn:focus {
  background: rgba(184,134,11,0.08);
  border-radius: 8px;
  outline: none;
}

/* Responsive: icons remain interactive on all devices */
@media (max-width: 768px) {
  .nav-links .nav-icon svg,
  .dropdown-btn .nav-icon svg,
  .quick-icon svg {
    transition: 
      transform 0.18s cubic-bezier(.4,2,.6,1),
      filter 0.18s,
      box-shadow 0.18s;
  }
}

@media (max-width: 1100px) {
  .about-preview {
    flex-direction: column;
    gap: 1.2rem;            /* binawasan mula 2rem */
    padding: 1rem 3vw;      /* binawasan mula 2rem 3vw */
  }
}

/* === HERO TEXT STYLES === */
.catering-hero-text {
  position: absolute;
  top: 38%; /* was 50%, adjust this value to move text higher */
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFD700; /* match gold color */
  width: 90vw;
  max-width: 900px;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  line-height: 1.5;
  font-size: 1rem;
}


/* Large screens (max-width: 1222px) */
@media (max-width: 1222px) {
  .catering-hero-text {
    top: 50%;
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* Medium screens (max-width: 992px) */
@media (max-width: 992px) {
  .catering-hero-text {
    top: 50%;
    font-size: 0.8rem;
    line-height: 1.3;
  }
}

/* Small screens (max-width: 768px) */
@media (max-width: 768px) {
  .catering-hero-text {
    top: 50%;
    font-size: 0.7rem;
    line-height: 1.25;
  }
}

/* Extra small screens (max-width: 480px) */
@media (max-width: 480px) {
  .catering-hero-text {
    top: 50%;
    font-size: 0.875rem;
    line-height: 1.2;
    padding: 0 1rem; /* Optional: add horizontal padding */
  }
}

.horizontal-title {
  font-family: 'Playfair Display', 'Poppins', serif;
  font-size: 3rem; /* pinalaki pa mula 4.5rem */
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #fffbe6;
  margin-bottom: 1.1rem;
  text-shadow:
    0 2px 12px #bfa14a55,
    0 1px 0 #fff,
    0 0 18px #bfa14a33;
  line-height: 1.08;
  position: relative;
  opacity: 0;
  animation: heroTitleFadeIn 1.7s ease-out 0.25s forwards;
  display: inline-block;
  cursor: pointer;
}

@keyframes heroTitleFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.horizontal-title {
  display: inline-block;
  transition:
    transform 0.28s cubic-bezier(.4,2,.6,1),
    color 0.22s cubic-bezier(.4,2,.6,1),
    text-shadow 0.22s cubic-bezier(.4,2,.6,1);
  will-change: transform, color, text-shadow;
  cursor: pointer;
}

/* Modern hover: Only the letter under the cursor lifts up and gets a gold highlight */
.horizontal-title:hover,
.horizontal-title:focus {
  transform: translateY(-16px) scale(1.08);
  z-index: 2;
  color: #b8860b;
  text-shadow:
    0 2px 12px #ffe082cc,
    0 1px 0 #fffbe6,
    0 0 18px #b8860b55;
}


@keyframes heroLetterUp {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-18px) scale(1.08); }
  100% { transform: translateY(0); }
}

/* Divider line for hero descriptions */
.catering-hero-desc {
  color: #fffbe6;
  font-size: 1rem;
  margin: 0.7rem 0 0.2rem 0;
  line-height: 1.6;
  position: relative;
  padding-bottom: 1.2rem;
  font-family: 'Lora', 'Georgia', serif;
  opacity: 0;
  animation: heroDescFadeLeft 1.5s cubic-bezier(.4,2,.6,1) 1.1s forwards;
}

@keyframes heroDescFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.catering-hero-highlight {
  display: block;
  color: #b8860b;
  font-weight: 600;
  font-size: 1.08rem;
  margin-top: 0.7rem;
  letter-spacing: 0.5px;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  opacity: 0;
  animation: heroDescFadeRight 1.5s cubic-bezier(.4,2,.6,1) 1.5s forwards;
}

@keyframes heroDescFadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive adjustments for hero section */
@media (max-width: 900px) {
  .catering-hero-title {
    font-size: 2.8rem;
  }
  .catering-hero-desc {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .catering-hero-title {
    font-size: 1rem;
  }
  .catering-hero-desc {
    font-size: 0.93rem;
  }
}

.catering-hero-tagline {
  color: #FFD700;
  font-size: 1rem;
  font-family: 'Lora', 'Georgia', serif;
  font-weight: 500;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
  opacity: 0;
  animation: heroTaglineFadeDown 1.5s cubic-bezier(.4,2,.6,1) 0.7s forwards;
}

@keyframes heroTaglineFadeDown {
  from {
    opacity: 0;
    transform: translateY(-32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === ADDITIONAL STYLES === */
.catering-hero-tagline,
.catering-hero-desc,
.catering-hero-highlight {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none; /* optional: disables text selection and right-click */
}

.catering-hero-title.horizontal-title {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  text-align: center;
  width: 100%;
  word-break: break-word;
}

.catering-hero-title.horizontal-title span {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .catering-hero-title.horizontal-title {
    font-size: 2.2rem;
    gap: 0.7rem;
  }
}
@media (max-width: 600px) {
  .catering-hero-title.horizontal-title {
    font-size: 1.1rem;
    gap: 0.3rem;
    flex-wrap: wrap;
  }
}

/* Responsive Inquire Now Button */
.inquire-btn {
  display: inline-block;
  margin-top: 1.3rem;
  padding: 0.85rem 2.2rem;
  font-size: 1.18rem;
  font-weight: 700;
  
  color: #fffbe6;
  background: linear-gradient(90deg, #b8860b 60%, #ffd700 100%);
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 18px #bfa14a33;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: 
  
    background 0.22s cubic-bezier(.4,2,.6,1), 
    color 0.22s cubic-bezier(.4,2,.6,1), 
    transform 0.22s cubic-bezier(.4,2,.6,1), 
    box-shadow 0.22s cubic-bezier(.4,2,.6,1),
    filter 0.22s cubic-bezier(.4,2,.6,1);
}

.inquire-btn::before {
  content: "";
  position: absolute;
  left: -75%;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.01) 100%);
  transform: skewX(-24deg);
  transition: left 0.5s cubic-bezier(.4,2,.6,1);
  pointer-events: none;
  z-index: 2;
}

.inquire-btn:hover::before,
.inquire-btn:focus::before {
  left: 120%;
}

.inquire-btn:hover,
.inquire-btn:focus {
  background: linear-gradient(90deg, #816100 0%, #b8860b 100%);
  color: #18130a;
  transform: translateY(-4px) scale(1.07) rotate(-1deg);
  box-shadow:
    0 8px 32px 0 #332c03cc,         /* deeper dark shadow */
    0 0 0 8px #25252499,            /* outer white gold ring */
    0 2px 24px 0 #b8860b99,         /* deeper gold shadow */
    0 0 32px 8px #18130a55;         /* extra dark aura */
  filter: brightness(1.13) drop-shadow(0 0 18px #b8860b88);
  outline: none;
  border: 2px solid #1a1507; /* darker, aesthetic border */
}
.inquire-btn:active {
  transform: scale(0.97);
  filter: brightness(0.97);
  box-shadow: 0 2px 8px #bfa14a33;
}

.inquire-btn span {
  position: relative;
  z-index: 3;
  display: inline-block;
  transition: transform 0.22s cubic-bezier(.4,2,.6,1);
}

.inquire-btn:hover span,
.inquire-btn:focus span {
  transform: scale(1.08) rotate(-2deg);
}


/* === MYSTERIOUS FLOATING DARK PARTICLES === */
.mystic-particles {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  top: 0; left: 0; width: 100vw; height: 100vh;
  overflow: hidden;
}

.mystic-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  background: radial-gradient(circle at 30% 30%, #18130a 60%, #332c03 100%);
  box-shadow: 0 0 32px 8px #18130a99, 0 0 0 2px #332c0355;
  animation: mysticMove 12s linear infinite alternate;
  mix-blend-mode: lighten;
  will-change: transform, opacity;
}

.mystic-particle.p1 { width: 80px; height: 80px; left: 10vw; top: 20vh; animation-duration: 14s; animation-delay: 0s;}
.mystic-particle.p2 { width: 50px; height: 50px; left: 70vw; top: 30vh; animation-duration: 11s; animation-delay: 2s;}
.mystic-particle.p3 { width: 120px; height: 120px; left: 40vw; top: 70vh; animation-duration: 16s; animation-delay: 1s;}
.mystic-particle.p4 { width: 60px; height: 60px; left: 80vw; top: 60vh; animation-duration: 13s; animation-delay: 3s;}
.mystic-particle.p5 { width: 40px; height: 40px; left: 25vw; top: 80vh; animation-duration: 10s; animation-delay: 4s;}
.mystic-particle.p6 { width: 100px; height: 100px; left: 55vw; top: 10vh; animation-duration: 18s; animation-delay: 2.5s;}

@keyframes mysticMove {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 0.18;
  }
  40% {
    opacity: 0.28;
  }
  60% {
    opacity: 0.13;
  }
  100% {
    transform: translateY(-60px) scale(1.18) rotate(30deg);
    opacity: 0.18;
  }
}

/* Responsive: hide on very small screens for performance */
@media (max-width: 600px) {
  .mystic-particles { display: none; }
}

.inquire-btn {
  /* ...existing styles... */
  opacity: 0;
  transform: translateY(32px);
  animation: inquireFadeUp 1.2s cubic-bezier(.4,2,.6,1) 0.5s forwards;
}

@keyframes inquireFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Interactive color highlight for quick-icons-float icons */
.quick-icons-float .quick-icon.facebook:hover,
.quick-icons-float .quick-icon.facebook:focus {
  background: linear-gradient(135deg, #1877f2 0%, #3b5998 100%);
  box-shadow: 0 8px 32px #1877f299, 0 0 0 6px #e7f0fdcc;
}
.quick-icons-float .quick-icon.facebook:hover svg,
.quick-icons-float .quick-icon.facebook:focus svg {
  color: #fff;
  filter: drop-shadow(0 0 8px #1877f2);
}

.quick-icons-float .quick-icon.instagram:hover,
.quick-icons-float .quick-icon.instagram:focus {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 8px 32px #d6249fcc, 0 0 0 6px #fdf497cc;
}
.quick-icons-float .quick-icon.instagram:hover svg,
.quick-icons-float .quick-icon.instagram:focus svg {
  color: #fff;
  filter: drop-shadow(0 0 8px #d6249f);
}

.quick-icons-float .quick-icon.contact:hover,
.quick-icons-float .quick-icon.contact:focus {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 8px 32px #25d36699, 0 0 0 6px #e6fff3cc;
}
.quick-icons-float .quick-icon.contact:hover svg,
.quick-icons-float .quick-icon.contact:focus svg {
  color: #fff;
  filter: drop-shadow(0 0 8px #25d366);
}

.quick-icons-float .quick-icon.gmail:hover,
.quick-icons-float .quick-icon.gmail:focus {
  background: linear-gradient(135deg, #ea4335 0%, #fbbc05 100%);
  box-shadow: 0 8px 32px #ea433599, 0 0 0 6px #fbbc05cc;
}
.quick-icons-float .quick-icon.gmail:hover svg,
.quick-icons-float .quick-icon.gmail:focus svg {
  color: #fff;
  filter: drop-shadow(0 0 8px #ea4335);
}

/* Always keep icons responsive */
@media (max-width: 600px) {
  .quick-icons-float .quick-icon {
    width: 32px;
    height: 32px;
  }
  .quick-icons-float .quick-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* === MODERN FOOTER === */
.footer-modern {
  background: #111;
  color: #fffbe6;
  text-align: center;
  padding: 2.2rem 1rem 1rem 1rem;
  font-family: 'Poppins', Arial, sans-serif;
  margin-top: 2rem;
}

.footer-modern-main {
  max-width: 900px;
  margin: 0 auto;
}

.footer-modern-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.1rem;
}
.footer-modern-logo img {
  width: 70px;
  height: 70px;
  margin-bottom: 0.3rem;
}
.footer-modern-logo span {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #b8860b;
}

.footer-modern-info,
.footer-modern-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.7rem;
  font-size: 1rem;
}
.footer-modern-info i,
.footer-modern-contacts i {
  color: #b8860b;
  margin-right: 0.3em;
}

.footer-modern-social {
  margin: 1rem 0 0.5rem 0;
}
.footer-modern-social a {
  display: inline-block;
  margin: 0 0.5rem;
  color: #fffbe6;
  background: #353329;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 1.3rem;
  transition: background 0.2s, color 0.2s;
}
.footer-modern-social a:hover {
  background: #110e00;
  color: #b8860b;
}

.footer-modern-bottom {
  margin-top: 1.2rem;
  font-size: 0.98rem;
  color: #fffbe6cc;
  letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 700px) {
  .footer-modern-main {
    max-width: 100vw;
    padding: 0;
  }
  .footer-modern-info,
  .footer-modern-contacts {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.98rem;
  }
  .footer-modern-logo img {
    width: 48px;
    height: 48px;
  }
  .footer-modern-logo span {
    font-size: 1.05rem;
  }
}

/* Responsive and colored hover/focus for about-preview-modern-social icons (same as quick-icons-float) */
.about-preview-modern-social .quick-icon.facebook:hover,
.about-preview-modern-social .quick-icon.facebook:focus {
  background: linear-gradient(135deg, #1877f2 0%, #3b5998 100%);
  box-shadow: 0 8px 32px #1877f299, 0 0 0 6px #e7f0fdcc;
}
.about-preview-modern-social .quick-icon.facebook:hover svg,
.about-preview-modern-social .quick-icon.facebook:focus svg {
  color: #fff;
  filter: drop-shadow(0 0 8px #1877f2);
}

.about-preview-modern-social .quick-icon.instagram:hover,
.about-preview-modern-social .quick-icon.instagram:focus {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 8px 32px #d6249fcc, 0 0 0 6px #fdf497cc;
}
.about-preview-modern-social .quick-icon.instagram:hover svg,
.about-preview-modern-social .quick-icon.instagram:focus svg {
  color: #fff;
  filter: drop-shadow(0 0 8px #d6249f);
}

.about-preview-modern-social .quick-icon.contact:hover,
.about-preview-modern-social .quick-icon.contact:focus {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 8px 32px #128c7e99, 0 0 0 6px #d2f5e3cc;
}
.about-preview-modern-social .quick-icon.contact:hover svg,
.about-preview-modern-social .quick-icon.contact:focus svg {
  color: #fff;
  filter: drop-shadow(0 0 8px #128c7e);
}

.about-preview-modern-social .quick-icon.gmail:hover,
.about-preview-modern-social .quick-icon.gmail:focus {
  background: linear-gradient(135deg, #ea4335 0%, #fbbc05 100%);
  box-shadow: 0 8px 32px #ea433599, 0 0 0 6px #fbbc05cc;
}
.about-preview-modern-social .quick-icon.gmail:hover svg,
.about-preview-modern-social .quick-icon.gmail:focus svg {
  color: #fff;
  filter: drop-shadow(0 0 8px #ea4335);
}

/* Make sure icons remain responsive */
.about-preview-modern-social .quick-icon {
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, filter 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  background: #353329;
  margin: 0 0.15rem;
  cursor: pointer;
}
.about-preview-modern-social .quick-icon svg {
  width: 22px;
  height: 22px;
  transition: color 0.2s, filter 0.2s;
}

/* Food Section (after Featured Services) */
.food-section {
  background: linear-gradient(135deg, #1f1e18 60%, #423e34 100%);
  color: #fffbe6;
  padding: 3rem 1.5rem 2.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  margin: 0 auto 0 auto;
}

.food-section-inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.food-section-title {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: #d8b400;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  text-align: center;
  letter-spacing: 1px;
}

.food-section-desc {
  font-size: 1.18rem;
  color: #af9306;
  text-align: center;
  margin-bottom: 2.2rem;
  max-width: 700px;
}

.food-section-gallery {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.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;
}

.food-section-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-bottom: 2rem;
  font-size: 1.15rem;
  color: #fffbe6;
  font-family: 'Poppins', Arial, sans-serif;
}

.food-service {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.food-check {
  color: #ffd700;
  font-size: 1.3rem;
}

.food-section-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  justify-content: center;
  align-items: center;
  font-size: 1.08rem;
  color: #fffbe6;
  margin-top: 1.2rem;
}

.food-section-contact a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.2s;
}
.food-section-contact a:hover {
  color: #fffbe6;
}

.food-location-title {
  margin-right: 0.5rem;
  font-size: 2.2rem;
}

/* Responsive styles */
@media (max-width: 900px) {
  .food-section-title {
    font-size: 2.1rem;
  }
  .food-section-gallery {
    gap: 1rem;
  }
  .food-imgbox {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 700px) {
  .food-section {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
  .food-section-title {
    font-size: 1.3rem;
  }
  .food-section-desc {
    font-size: 0.98rem;
    margin-bottom: 1.2rem;
  }
  .food-imgbox {
    width: 80px;
    height: 80px;
    border-width: 3px;
  }
  .food-section-services {
    gap: 0.7rem 1.2rem;
    font-size: 0.97rem;
    margin-bottom: 1.1rem;
  }
  .food-section-contact {
    gap: 1rem;
    font-size: 0.97rem;
    flex-direction: column;
    margin-top: 0.7rem;
  }
}

/* === CTA BUTTON === */
.cta-button {
  background-color: #645918;
  color: #fffbe6;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
  background-color: #e6d00a;   /* expensive gold background */
  color: #18130a !important;   /* deep black text for luxury contrast */
}

/* === HAMBURGER MENU === */
.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  width: 26px;
  z-index: 1001;
  position: relative;
}

.menu-toggle span {
  background-color: white;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}

/* === MOBILE STYLES === */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background-color: #0f0f0f;
    padding-top: 80px;
    transition: right 0.4s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
    pointer-events: auto;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
    top: 9px;
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
    top: 9px;
  }
}

/* === DROPDOWN BUTTON === */
.dropdown-btn {
  background: none;
  border: none;
  color: #fffbe6;
  padding: 10px 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
}

.arrow {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #222;
  min-width: 160px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 8px rgba(191,161,74,0.15);
  z-index: 1050;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown.open > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  color: #fffbe6;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.dropdown-menu li a:hover {
  background-color: #BFA14A; /* luxury gold */
  color: #18130a !important;
}

.dropdown.open > .dropdown-btn .arrow {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    background-color: #222;
    box-shadow: none;
    border-radius: 0;
    max-height: 300px;
    overflow-y: auto;
  }

  .dropdown-btn {
    width: 100%;
    justify-content: space-between;
  }
}

/* === FOOTER === */

/* Navbar color: #0f0f0f */
.footer {
  background: #18130a;
  color: #fffbe6;
  padding: 20px 0 0 0;
  margin-top: 40px;
  font-size: 0.97rem;
  flex-shrink: 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;    /* mas maliit na max width */
  margin: 0 auto;
  padding: 0 12px;      /* mas maliit na padding */
  gap: 18px;            /* mas maliit na gap */
}

.footer-logo,
.footer-links,
.footer-contact {
  min-width: 180px;
  margin-bottom: 18px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;             /* mas maliit na gap */
  font-size: 1rem;      /* mas maliit na font */
}

.footer-logo img {
  height: 36px;         /* mas maliit na logo */
  width: auto;
  max-width: 100%;
}

.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 0;
  width: 100%;
  min-width: 0;
  max-width: 100vw;
  overflow-x: auto;
}

.footer-links a {
  color: #645918;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
  font-size: 0.97rem;
  word-break: keep-all;
  padding: 4px 8px;
  white-space: nowrap;
  display: inline-block;
}

.footer-links a:hover {
  color: #fffbe6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;             /* mas maliit na gap */
  font-size: 0.95rem;   /* mas maliit na font */
  word-break: break-word;
}

.footer-contact span {
  margin-bottom: 2px;
}

.footer-social {
  margin-top: 6px;
  display: flex;
  gap: 8px;
}

.footer-social a {
  color: #FFD700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  background: none;
  color: #fffbe6;
  padding: 16px 0 8px 0;
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border-radius: 0;
  border-top: 1px solid #645918;
  max-width: 100vw;
  box-shadow: none;
  width: 100%;
  word-break: break-word;
}

/* Responsive: mas maliit ang padding at font sa mobile, at mas maliit na border radius */
@media (max-width: 600px) {
  .footer-bottom {
    font-size: 0.88rem;
    padding: 8px 4px;
    border-radius: 6px;
  }

  .footer-links {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }
}

.footer-social a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  background: none;
  color: #fffbe6;
  padding: 16px 0 8px 0;
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border-radius: 0;
  border-top: 1px solid #645918;
  max-width: 100vw;
  box-shadow: none;
  width: 100%;
  word-break: break-word;
}

/* Responsive: mas maliit ang padding at font sa mobile, at mas maliit na border radius */
@media (max-width: 600px) {
  .footer-bottom {
    font-size: 0.88rem;
    padding: 8px 4px;
    border-radius: 6px;
  }

  .footer-links {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }
}


