/* Universal box-sizing */
*, *::before, *::after { box-sizing: border-box; }

/* Flexbox layout for sticky footer */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  background: #F7F7F7;
}

/* Main container */
main.container {
  flex-grow: 1;
  max-width: 750px;
  margin: 80px auto 40px;
  padding: 0 20px;
  text-align: center;
}

/* Fixed logo */
.fixed-logo {
  position: fixed;
  top: 16px;
  left: 20px;
  z-index: 1000;
}
.fixed-logo img { width: 120px; height: auto; }

/* Home icon top-right */
.floating-home {
  position: fixed;
  top: 30px; right: 25px;
  background: rgba(255,255,255,0.95);
  padding: 10px 16px;
  border-radius: 40px;
  color: #000; font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  display: flex; align-items: center;
  gap: 6px;
  transition: background 0.3s, transform 0.2s;
}
.floating-home:hover { background:#fff; transform:translateY(-2px); }
.floating-home:focus-visible { outline: 2px solid #2a7b62; outline-offset: 3px; }

/* Event Packages title box */
.event-packages-title-box {
  background-color: #fff;
  border: 2px solid #ffc107;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(255,193,7,0.3);
  padding: 30px 36px;
  margin-bottom: 24px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: #000;
  text-align: left;
}

/* Collapsible box */
.collapsible-box {
  border: 1.5px solid #bbb;
  border-radius: 12px;
  background-color: #fff;
  cursor: pointer;
  margin: 0 auto 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow-wrap: break-word;
  max-width: 650px;
  width: 100%;
  text-align: left;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.collapsible-box:hover { border-color: #ffc107; box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6); }

/* Collapsible summary (package button) */
.collapsible-summary {
  all: unset;
  display: block;
  cursor: pointer;
  padding: 18px 36px;
  font-size: 1.4rem;
  font-weight: bold;
  user-select: none;
  color: #000;
}
.collapsible-summary::-webkit-details-marker { display: none; }

/* Collapsible content */
.collapsible-content {
  padding: 24px 36px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #000;
  border-radius: 0 0 12px 12px;
  width: 100%;
  text-align: left;
}

/* Lists */
.collapsible-content ul { list-style: none; padding-left: 0; margin-left: 0; }
.collapsible-content li { margin-bottom: 12px; }
.bold-list-item { font-weight: bold; }

/* Price styling */
.price { font-weight: bold; font-size: 1.3rem; margin-top: -8px; margin-bottom: 20px; }

/* Footer */
footer { text-align: center; padding: 20px 0; font-size: 0.9rem; color: #444; width: 100%; flex-shrink: 0; }

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
  .fixed-logo img { width: 90px; }
  main.container { max-width: 90%; margin: 100px auto 40px; text-align: left; }
  .collapsible-box, .event-packages-title-box { max-width: 100%; padding: 20px 24px; }
  .collapsible-summary { padding: 14px 24px; font-size: 1.2rem; }
  .collapsible-content { padding: 18px 24px; font-size: 1rem; }
}

/* Mobile adjustments for long package titles */
@media only screen and (max-width: 768px) {
  .collapsible-summary {
    font-size: 1rem;
  }
  .collapsible-box {
    padding: 0; 
  }
  .collapsible-summary {
    padding: 12px 20px;
    font-size: 1rem;
    text-align: left;
  }
  .collapsible-content {
    padding: 16px 20px;
    font-size: 0.95rem;
  }
}

/* ==== PLAN YOUR EVENT BUTTON UPDATE ONLY ==== */
.cta-container {
  text-align: center;
  margin-top: 36px;
}
.cta-button {
  background: #2a7b62;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  padding: 14px 28px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;

}
.cta-button:hover {
  background: #16624b;
  transform: translateY(-1px) scale(1.01);
}
.cta-button:focus-visible {
  outline: 2px solid #2a7b62;
  outline-offset: 3px;
}

/* FAQ */
.faq-section {
  margin-top: 32px;
  text-align: left;
}
.faq-section h2 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: #2c7b90;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.faq-item {
  background: #fff;
  border: 1.5px solid #e6e6e6;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}
.faq-item h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: #2a7b62;
}
.faq-item p {
  margin: 0;
  font-size: 0.98rem;
  color: #222;
}

/* Mobile specific adjustments */
@media only screen and (max-width: 768px) {
  .fixed-logo img { width: 90px; }
  .about-section {
    padding: 12px 10px;
    border-radius: 11px;
  }
  .cta-button { width: 98%; }
  .faq-grid { grid-template-columns: 1fr; }
}
