/* style.css */

body {
  margin: 0;
  font-family: 'Noto Sans', Arial, sans-serif;
}

.navbar {
  position: relative;
  background-color: rgba(34, 34, 34, 0.95); 
  padding: 1em;
  text-align: center;
  z-index: 10;
  backdrop-filter: blur(6px); 
}

.navbar a {
  color: white;
  text-decoration: none;
  padding: 0.75em 1.5em;
  font-weight: bold;
}

.navbar a:hover {
  background-color: #555;
}

.page-content {
  padding: 2em;
}

.centered-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2em 0;
}

.centered-image img {
  width: 80%;          
  max-width: 600px;    
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.retreat-page {
  font-family: 'Segoe UI', sans-serif;
  max-width: 1000px;
  margin: auto;
  padding: 2em;
  line-height: 1.6;
  color: #333;
}

.retreat-page h1 {
  font-size: 2.5em;
  color: #4b2e83;
  text-align: center;
  margin-bottom: 0.2em;
}

.retreat-page h2 {
  font-size: 2em;
  text-align: center;
  color: #4f3c77;
  margin-top: 0;
}

.retreat-page h3 {
  font-weight: normal;
  text-align: center;
  font-style: italic;
  color: #5d4c84;
  margin-bottom: 1.5em;
}

.retreat-page h4 {
  font-weight: normal;
  text-align: center;
  font-style: italic;
  color: #888;
  margin-bottom: 1.5em;
}

.retreat-page p {
  font-size: 1.1em;
  margin-bottom: 1.5em;
}

.hero-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 2em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.side-by-side-images {
  display: flex;
  gap: 1em;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2em;
}

.side-by-side-images img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.side-by-side-images > div {
  flex: 1 1 45%;
}

.img-caption {
  font-size: 0.95em;
  color: #555;
  margin-top: 0.5em;
  text-align: center;
}

.pdf-scroll-viewer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0em;
  /*padding: 2em 0;*/
}

.pdf-scroll-viewer img {
  width: 200%;
  max-width: 900px;
  height: auto;
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
  /*border-radius: 6px;*/
}

/* ensure the SVG stack fills the readable column and sits above decor */
.program-page { position: relative; z-index: 1; }
.program-page .pdf-scroll-viewer { width: 100%; }

/* optional: highlight current nav item */
.navbar a.active { background-color:#555; color:gold; }

.svg-wrap { width: 100%; }
.svg-page { pointer-events: auto; }