/* GENERAL */
.gallery-page {
  background: #000;
  color: #fff;
  overflow-x: hidden;
  font-family: 'Arial', sans-serif;
  scroll-behavior: smooth;
  line-height: 1.5;
}

/* HERO SECTION */
.gallery-hero {
  position: relative;
  height: 100vh;
  background: url("/assets/pv/img/galm-c.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-socials {
  position: absolute;
  left: 25px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2;
}

.hero-socials svg {
  color: #f37f2d;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s;
}

.hero-socials svg:hover {
  transform: scale(1.2);
}

.hero-content {
  margin-left: 120px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 52px;
  color: #f37f2d;
  line-height: 1.2;
}

.hero-btn {
  margin-top: 25px;
  padding: 12px 30px;
  border: none;
  background: #f37f2d;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-btn:hover {
  background: #efefef;
  color: #f59e0b;
  transform: translateY(-2px);
}

/* DAYS SECTION */
.days-section {
  display: flex;
  gap: 25px;
  padding: 100px 50px;
}

.day-wrapper {
  flex: 1;
  text-align: center;
}

.day-wrapper h3 {
  color: #f37f2d;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

/* SLIDERS */
.day-slider {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.day-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.day-slider img.active {
  opacity: 1;
}

/* SCRIPTURE SECTION */
.scripture-section {
  display: flex;
  align-items: center;
  padding: 100px 60px;
  gap: 60px;
}


.section-tag {
  font-size: 12px;
  letter-spacing: 3px;
  position: relative;
}

.broken-line {
  display: block;
  width: 70px;
  height: 2px;
  background: repeating-linear-gradient(to right, #f37f2d 0 10px, transparent 10px 20px);
  margin-top: 10px;
}

.scripture-text h2 {
  margin: 20px 0;
  font-size: 32px;
}

.play-btn {
  margin-top: 30px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #f37f2d;
  background: transparent;
  color: #f37f2d;
  font-size: 22px;
  box-shadow: 0 0 20px #f59e0b;
  cursor: pointer;
  transition: all 0.3s;
}

.play-btn:hover {
  background: #f37f2d;
  color: #000;
}

.scripture-image img {
  width: 1000px;
  height: 400px;
  border-radius: 20px;
}

/* FOLLOW SECTION */
.follow-section {
  padding: 80px 40px;
  text-align: center;
}

.follow-section h3 {
  font-size: 28px;
  color: #f37f2d;
}

.follow-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.follow-gallery img {
  width: 100%;
  border-radius: 15px;
  border: 2px solid #f37f2d;
  transition: transform 0.3s;
}

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

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hero-content { margin-left: 80px; }
  .hero-content h1 { font-size: 46px; }
  .days-section { flex-direction: column; gap: 40px; }
  .scripture-section { flex-direction: column; text-align: center; }
  .scripture-image img { width: 100%; max-width: 400px; }
  .follow-gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero-content h1 { font-size: 36px; }
  .follow-gallery { grid-template-columns: 1fr; }
}
