/* Logo styling */
.site-logo {
  max-height: 90px;
  width: auto;
  margin-right: 15px;
  vertical-align: middle;
}

.site-header {
  display: flex;
  align-items: center;
}

.site-header .wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.site-title {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 300;
  font-size: 26px;
}

.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

/* Gallery styling */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Logo styling */
.site-header img {
  max-height: 70px;
}

/* Make home page logo larger */
.home img[alt*="Logo"] {
  display: block;
  margin: 20px auto;
  max-width: 200px;
}

/* Gallery grid layout on main gallery page */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item h3 {
  padding: 15px;
  margin: 0;
  background-color: #f8f9fa;
  color: #333;
  text-align: center;
  font-size: 1.1em;
}

/* Footer verse styling */
.footer-verse {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e8e8e8;
  text-align: center;
  font-style: italic;
  color: #777;
}

.footer-verse blockquote {
  margin: 0;
  padding: 15px;
  font-style: italic;
  color: #555;
}

.footer-verse blockquote p {
  margin: 10px 0;
}

.verse-citation {
  font-weight: 600;
  color: #666;
  font-style: normal;
}
