/* Masjid As-Siddiq Custom Styles */
:root {
  --color-teal: #004d40;
  --color-teal-light: #00695c;
  --color-gold: #D4AF37;
  --color-gold-light: #F4D03F;
  --color-cream: #FDFBF7;
  --color-charcoal: #1a1a1a;
  --color-white: #ffffff;
  --font-heading: "Lora", Georgia, serif;
  --font-body: "Poppins", "Lato", sans-serif;
}

body {
  font-family: var(--font-body);
  color: #4a5568;
  background-color: var(--color-cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-teal);
}

.site-header {
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-light));
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.masjid-hero {
  position: relative;
  background: linear-gradient(135deg, #004d40 0%, #00695c 50%, #00897b 100%);
  overflow: hidden;
}

.masjid-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23D4AF37" fill-opacity="0.08"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.masjid-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.masjid-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.masjid-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-gold), #c9a632);
  color: var(--color-teal);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(212,175,55,0.3);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.masjid-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.5);
  color: #00332a;
}

.masjid-section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.masjid-section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.masjid-section-title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin: 12px auto 0;
  border-radius: 2px;
}

.masjid-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  margin: 2rem 0;
}

.masjid-footer {
  background: linear-gradient(135deg, var(--color-teal), #003d33);
  color: white;
  padding: 3rem 2rem;
}

@media (max-width: 768px) {
  .masjid-section-title h2 {
    font-size: 1.8rem;
  }
}
