/* style.css - unified ZERUBBABEL site styles */

/* Body & general text */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #f9f9f9;
  color: #243f61;
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(135deg, #205867, #243f61);
  color: white;
  padding: 2rem;
  text-align: center;
  position: relative;
}

header h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  margin: 0;
}

header small {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

/* Scroll banner across header */
header .scroll-banner {
  position: absolute;
  bottom: 10px;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: #ffd700;
  text-align: center;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  animation: scrollText 15s linear infinite;
}

@keyframes scrollText {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

nav a {
  color: #243f61;
  text-decoration: none;
  margin: 0 1rem;
  padding: 1rem 0;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: #205867;
}

/* Sections */
section {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

.intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Shop buttons */
.shop {
  text-align: center;
  margin: 2rem 0;
}

.shop a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #205867;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.shop a:hover {
  background: #1a4652;
}

/* Video embed */
.video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Galleries */
.gallery, .gallery-carrousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.gallery img, .gallery-carrousel img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s;
}

.gallery img:hover, .gallery-carrousel img:hover {
  transform: scale(1.05);
}

/* Buttons for gallery or PDF links */
.button-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #205867;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  margin: 1rem 0;
  transition: background 0.3s;
}

.button-link:hover {
  background: #1a4652;
}

/* Footer */
footer {
  background: #243f61;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

footer a {
  color: #aadfff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Miscellaneous text styles */
.italic-bold {
  font-style: italic;
  font-weight: bold;
}