/* Container width */
.container.simple-page {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.7rem 1rem;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.title-box {
  display: inline-block;
  background-color: #FFEB3B; 
  padding: 0.5rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
  border: 2px solid #000000;  
  color: #0f172a;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.text {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  font-size: 1.4rem;
  font-weight: 500;
}


.section {
  background-color: #ffffff; 
  padding: 1rem 1rem;
  color: #0f172a; /* Text color */
}

/* Alternate section background and padding */
.section-alt {
  background-color: #f1f4f6; /* f8fafc  Light alt background */
  padding: 1rem 1rem;
  color: #0f172a; /* Text color */
}

.spark-img {
  max-width: 100%;
  height: 70px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.6));
  margin: 0 auto;
  box-shadow: none;
  border-radius: 0;
  border: none;
  background: none;
}


/* Gallery */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.gallery-item {
  width: 100%;
  height: auto;
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--gallery-radius);
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}









/* Image banner */
.image-banner {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.banner-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.6));
  margin: 0 auto;
  box-shadow: none;
  border-radius: 0;
  border: none;
  background: none;
}


/* Contact section */

.contact-img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.3);
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

/* Footer styling */
.site-footer {
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 1.5rem 1rem;
  font-family: 'Roboto', sans-serif;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  font-size: 1.1rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.note {
  color: #475569;
  font-size: 1rem;
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container.simple-page {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-inner {
    gap: 0.25rem;
  }

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