body {
  font-family: 'Segoe UI', sans-serif;
  background: url('background.png') no-repeat center center fixed;
  background-size: cover;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
  color: #333;
  position: relative;
}

@media (max-width: 600px) {
  body {
    background: url('background.png') no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    min-height: 100vh;
  }
  body::before {
    position: absolute;
    width: 100vw;
    height: 100vh;
  }
  .footer-bar {
    padding: 1rem;
    gap: 0.8rem;
  }
  .footer-links a {
    font-size: 1.1rem;
  }
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.6);
  z-index: -1;
}

header {
  background: rgba(44, 62, 80, 0.85);
  color: white;
  padding: 1.5rem;
  text-align: center;
}

main {
  padding: 0;
  margin: 0;
  max-width: none;
  background: transparent;
  border-radius: 0;
  text-align: center;
}

/* News update section: hidden if empty */
.news-update:empty {
  display: none;
}

.news-update {
  background: rgba(255, 255, 180, 0.6); /* softer pale yellow with more transparency */
  color: #5a4b00;
  border: 1.5px solid #d2ca00;
  border-radius: 6px;
  padding: 1rem 1.5rem;
  margin: 1rem auto 2rem auto;
  max-width: 800px;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 0 6px rgba(210, 202, 0, 0.3); /* lighter shadow */
}

/* Footer container stacked vertically */
.footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 2rem;
  font-size: 1rem;
  z-index: 1000;
  color: #333;
  gap: 1rem;
  min-height: auto;
  text-align: center;
}

.footer-meeting-info p {
  margin: 0.25rem 0;
}

.footer-meeting-info a {
  color: #1a73e8;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.footer-meeting-info a:hover,
.footer-meeting-info a:focus {
  border-bottom-color: #1a73e8;
  color: #174ea6;
  outline: none;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.footer-links a {
  color: #2c3e50;
  text-decoration: none;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
}

.facebook-icon {
  width: 24px;
  vertical-align: middle;
  margin-left: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .footer-bar {
    padding: 1rem;
    gap: 0.8rem;
  }
  .footer-links a {
    font-size: 1.1rem;
  }
}
