/* ------------------------- */
/* Variables & Global Styles */
/* ------------------------- */
:root {
  --black: #000000;
  --white: #ffffff;
  --gold: #FFD700;
  --chocolate: #7B3F00;
  --darkgrey: #2b2b2b;
  --font: 'Montserrat', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

body {
  font-family: var(--font);
  color: var(--white);
  background-color: var(--black);
  overflow-x: hidden; /* prevent horizontal scroll */
}

/* ------------------------- */
/* Navbar */
/* ------------------------- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background-color: rgba(0,0,0,0.8);
  transition: background 0.3s ease;
}

.navbar .logo img {
  height: 50px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar ul li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: var(--gold);
}

.navbar .btn {
  padding: 8px 20px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s;
}

.navbar .btn:hover {
  background-color: var(--gold);
  color: var(--black);
  cursor: pointer;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.toggle span:nth-child(2) {
  opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


/* ------------------------- */
/* Hero Section */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,1) 80%), 
              url('worship2.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 90%;
  animation: fadeInUp 2s ease forwards;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.hero-content .tagline {
  font-style: italic;
  margin-bottom: 25px;
}

.hero-content .buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-content .buttons .btn-primary {
  padding: 8px 20px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s;
}
.btn a{
  color: var(--gold);
}
.buttona a{
  text-decoration: none;
  color: gold;
}
.buttona a:hover{
  color: gold;
}
.hero-content .buttons .btn-secondary {
  padding: 8px 20px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s;
}
.btn a:hover {
  color: black;
}
.hero-content .buttons .btn-primary:hover,
.hero-content .buttons .btn-secondary:hover {
  background-color: var(--gold);
  color: var(--black);
  cursor: pointer;
}

/* ------------------------- */
/* Faith Strip */
.faith-strip {
  background-color: var(--chocolate);
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  color: var(--white);
}

.faith-bg {
  display: none; /* removed for clean layout */
}

.faith-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.faith-content .bible-icon {
  width: 100px;
  height: 100px;
}

.faith-content .verse-text {
  font-size: 1.5rem;
  max-width: 500px;
}
/* Vision & Mission Section */
.vision-mission {
  background-color: var(--white); /* changed from black to white */
  color: var(--black); /* main text black for contrast */
  padding: 100px 20px;
}

.vm-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Boxes */
.vm-box {
  flex: 1;
}

.vm-box h3 {
  color: var(--gold); /* gold headings for elegance */
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.vm-box p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* Divider */
.vm-divider {
  width: 1px;
  height: 120px;
  background-color: var(--gold);
  opacity: 0.5;
}

/* Mobile stacking */
@media (max-width: 768px) {
  .vm-container {
    flex-direction: column;
    text-align: center;
  }

  .vm-divider {
    width: 60px;
    height: 1px;
    margin: 20px 0;
  }
}


/* ------------------------- */
/* Leadership Section */
.leadership {
  background-color: var(--black);
  color: var(--white);
  padding: 80px 20px;
}

/* Header */
.leadership-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.leadership-header h2 {
  color: var(--gold);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.leadership-header p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Cards container */
.leadership-cards {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* Individual card */
.leader-card {
  text-align: center;
  max-width: 1500px;
}

.leader-card img {
  width: 100%;
  height: 1500px;
  object-fit: cover;
  border-radius: 10px;
}

.leader-card h3 {
  margin-top: 15px;
  color: var(--gold);
}

.leader-card p {
  margin-top: 5px;
}
.gallery-page {
  background: #000;
  color: #fff;
  padding-bottom: 100px;
}

.gallery-hero {
  text-align: center;
  padding: 80px 20px;
}

.gallery-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  color: #D4AF37;
}

.gallery-hero p {
  color: #ccc;
  margin-top: 10px;
}

/* SECTION */

.gallery-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.gallery-section h2 {
  font-family: 'Playfair Display', serif;
  color: #D4AF37;
  margin-bottom: 30px;
  border-left: 4px solid #D4AF37;
  padding-left: 15px;
}

/* GRID */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: 0.4s ease;
  border: 1px solid #111;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(212,175,55,0.5);
}

/* MOBILE TABS (hidden on desktop) */
.mobile-tabs {
  display: none;
}

/* ========================= */
/* MOBILE BEHAVIOR */
/* ========================= */

@media (max-width: 768px) {

  .mobile-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
  }

  .tab-btn {
    background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 8px 15px;
    font-size: 0.8rem;
    transition: 0.3s;
  }

  .tab-btn.active,
  .tab-btn:hover {
    background: #D4AF37;
    color: #000;
  }

  .gallery-section {
    display: none;
  }

  .gallery-section.active-section {
    display: block;
  }

}
.contact-page {
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

/* HERO */

.contact-hero {
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.8) 100%), url('worship2.jpg') center/cover no-repeat;
}

.contact-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  color: #D4AF37;
}

.contact-hero p {
  color: #ccc;
  margin-top: 10px;
}

/* CONTAINER */

.contact-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* INFO SIDE */

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  color: #D4AF37;
  margin-bottom: 20px;
}

.contact-info p {
  color: #ccc;
  margin-bottom: 20px;
}

.info-item {
  margin-bottom: 15px;
}

/* FORM */

.contact-form {
  background: #111;
  padding: 40px;
  border: 1px solid rgba(212,175,55,0.4);
  transition: 0.4s;
}

.contact-form:hover {
  box-shadow: 0 0 25px rgba(212,175,55,0.3);
}

.contact-form h2 {
  font-family: 'Playfair Display', serif;
  color: #D4AF37;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  background: #000;
  border: 1px solid #333;
  color: #fff;
  outline: none;
  transition: 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 10px rgba(212,175,55,0.4);
}

/* BUTTON */

.contact-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 2px solid #D4AF37;
  color: #D4AF37;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.4s;
}
.contact-btn a{
  color: gold;
}
.contact-btn a:hover{
  color: black;
}
.contact-btn:hover {
  background: #D4AF37;
  color: #000;
  box-shadow: 0 0 20px rgba(212,175,55,0.6);
}

/* VERSE */

.contact-verse {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(#000, #111);
}

.contact-verse h3 {
  font-family: 'Cinzel', serif;
  color: #D4AF37;
  max-width: 800px;
  margin: auto;
}

.contact-verse p {
  margin-top: 10px;
  color: #ccc;
}

/* CLOSE */

.contact-close {
  text-align: center;
  padding: 60px 20px 100px;
}

.contact-close h2 {
  font-family: 'Cinzel', serif;
  color: #D4AF37;
}

.contact-close p {
  margin-top: 10px;
  letter-spacing: 3px;
}

/* RESPONSIVE */

@media (max-width: 900px) {

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

}

/* ------------------------- */
/* Weekly Programs Section */
/* ============================= */
/* HOME PROGRAMS PREVIEW SECTION */
/* ============================= */

.home-programs-preview {
  background: #000;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.1)), url("download.jfif") center/cover no-repeat;
}

.preview-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: #D4AF37;
  margin-bottom: 10px;
  position: relative;
}

.preview-header p {
  font-family: 'Montserrat', sans-serif;
  color: #ccc;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

/* CARDS */

.preview-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.preview-card {
  background: #111;
  padding: 30px 20px;
  border: 1px solid rgba(212,175,55,0.3);
  transition: all 0.4s ease;
  position: relative;
}

.preview-card h3 {
  font-family: 'Playfair Display', serif;
  color: #D4AF37;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.preview-card span {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
}

.preview-card p {
  font-size: 0.9rem;
  color: #aaa;
}

/* Hover Effect */

.preview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(212,175,55,0.4);
  border-color: #D4AF37;
}

/* Featured Friday Glow */

.featured {
  border: 1px solid #D4AF37;
  box-shadow: 0 0 25px rgba(212,175,55,0.2);
}

/* CTA */

.preview-cta {
  margin-top: 70px;
}

.faith-line {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 25px;
  color: #000;
}

.program-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #000;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 2px;
  transition: all 0.4s ease;
}

.program-btn:hover {
  background: #000;
  color: #D4AF37;
  box-shadow: 0 0 20px rgba(212,175,55,0.6);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {

  .preview-header h2 {
    font-size: 2rem;
  }

  .home-programs-preview {
    padding: 70px 20px;
  }

  .faith-line {
    font-size: 1rem;
  }
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--black);
}

/* Hero Section with bottom fade */
.hero {
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.8) 100%), url('worship2.jpg') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-bottom: 50px;
}

.hero-content h1 { font-size: 3rem; color: var(--gold); margin: 0; }
.hero-content p { font-size: 1.2rem; color: var(--white); margin-top: 10px; }

/* Vision & Mission */
.vision-mission { background-color: var(--white); color: var(--black); padding: 80px 20px; }
.vm-container { max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 50px; }
.vm-box h3 { color: var(--gold); font-size: 1.8rem; margin-bottom: 15px; }
.vm-box p { font-size: 1rem; line-height: 1.7; opacity: 0.85; }
.vm-divider { width: 1px; height: 120px; background-color: var(--gold); opacity: 0.5; }
@media (max-width: 768px) {
  .vm-container { flex-direction: column; text-align: center; }
  .vm-divider { width: 60px; height: 1px; margin: 20px 0; }
}
/* section */

.leaders-section{
padding:100px 10%;
text-align:center;
background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url("cloud.jfif") center/cover no-repeat;
}

.leaders-title{
color:gold;
font-size:42px;
margin-bottom:70px;
letter-spacing:1px;
}

/* grid layout */

.leaders-container{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:60px;
}

/* leader card */

.leader-card{
position:relative;
overflow:hidden;
border-radius:12px;
cursor:pointer;
box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

/* leader image */

.leader-card img{
width:100%;
height:460px;
object-fit:cover;
display:block;
transition:transform 0.7s ease;
}

/* zoom animation */

.leader-card:hover img{
transform:scale(1.1);
}

/* overlay */

.leader-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(transparent, rgba(0,0,0,0.95));
display:flex;
flex-direction:column;
justify-content:flex-end;
padding:30px;
transform:translateY(45%);
transition:transform 0.5s ease;
}

/* slide up animation */

.leader-card:hover .leader-overlay{
transform:translateY(0);
}

/* name */

.leader-overlay h3{
color:gold;
font-size:26px;
margin-bottom:5px;
}

/* role */

.leader-role{
color:#e0e0e0;
font-weight:600;
margin-bottom:10px;
}

/* message */

.leader-message{
color:#cfcfcf;
font-size:15px;
line-height:1.6;
opacity:0;
transition:opacity 0.4s ease;
}

/* message fade in */

.leader-card:hover .leader-message{
opacity:1;
}

/* responsive */

@media(max-width:900px){

.leaders-container{
grid-template-columns:1fr;
}

.leader-card img{
height:380px;
}

}

/* Our Story */
.our-story { background-color: var(--darkgrey); color: var(--white); padding: 80px 20px; text-align: center; }
.our-story h2 { font-size: 2.5rem; color: var(--gold); margin-bottom: 30px; }
.our-story p { max-width: 800px; margin: 0 auto; font-size: 1.1rem; line-height: 1.7; opacity: 0.9; }

/* Core Values - luxurious */
.core-values { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.1)), url("cloud.jfif") center/cover no-repeat; color: var(--black); padding: 100px 20px; text-align: center; }
.core-values h2 { color: var(--gold); font-size: 2.5rem; margin-bottom: 50px; }
.values-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.value-card { 
  flex: 0 0 220px; background: linear-gradient(145deg, #222, #333); 
  color: var(--gold); padding: 30px; border-radius: 15px; font-size: 1.1rem; 
  box-shadow: 0 8px 20px rgba(0,0,0,0.5); text-align: center; transition: transform 0.3s;
}
.value-card:hover { transform: translateY(-5px) scale(1.05); }

/* Testimonials / Impact with images */
.testimonials { background-color: var(--black); color: var(--white); padding: 100px 20px; text-align: center; }
.testimonials h2 { color: var(--gold); font-size: 2.5rem; margin-bottom: 50px; }
.testimonial-card { 
  display: flex; align-items: center; gap: 20px; max-width: 700px; margin: 20px auto;
  background-color: #222; padding: 20px; border-radius: 10px; text-align: left;
}
.testimonial-card img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.testimonial-text { font-style: italic; font-size: 1rem; line-height: 1.6; }

/* Call to Action - luxurious */
.cta { background: linear-gradient(135deg, #d4af37, #fff4c0); color: var(--black); padding: 100px 20px; text-align: center; border-radius: 20px; margin: 50px 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.cta h2 { font-size: 2.5rem; margin-bottom: 20px; }
.cta p { font-size: 1.2rem; margin-bottom: 30px; }
.cta button {
  background-color: var(--black); color: var(--gold); border: none; padding: 20px 40px;
  font-size: 1.2rem; border-radius: 10px; cursor: pointer; font-weight: bold; transition: transform 0.3s, box-shadow 0.3s;
}
.cta button:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 10px 25px rgba(0,0,0,0.3); }

/* Responsive adjustments */
@media(max-width:768px){
  .vm-container { flex-direction: column; text-align: center; }
  .vm-divider { width: 60px; height: 1px; margin: 20px 0; }
  .values-grid { flex-direction: column; align-items: center; }
  .testimonial-card { flex-direction: column; text-align: center; }
  .testimonial-card img { margin-bottom: 10px; }
}

/* ------------------------- */
/* Footer */
footer {
  background-color: var(--black);
  color: var(--white);
  padding: 60px 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 60px;
}

.footer-contact, .footer-links, .footer-social {
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: var(--white);
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: var(--gold);
}

.footer-social a {
  color: var(--gold);
  margin-right: 10px;
  text-decoration: none;
}

.footer-social a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid #444;
  padding-top: 20px;
  margin-top: 10px;
}

/* ------------------------- */
/* Animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* ------------------------- */
/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1.2rem;
  }

  .faith-strip {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .faith-content {
    flex-direction: column;
    gap: 15px;
  }

  .faith-content .verse-text {
    font-size: 1.2rem;
  }

  .leadership {
    flex-direction: column;
    align-items: center;
  }

  .program-cards {
    flex-direction: column;
    align-items: center;
  }

  /* Navbar */
  .hamburger {
    display: flex;
  }

  .navbar ul {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background-color: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.3s ease;
    z-index: 99;
  }

  .navbar ul.active {
    right: 0;
  }

  .navbar .btn {
    display: none;
  }

  .hamburger.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.toggle span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
.programs-page {
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

/* HERO */
.program-hero {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8));
  text-align: center;
  animation: fadeIn 1.5s ease-in;
}

.program-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  color: #D4AF37;
}

.tagline {
  margin-top: 10px;
  letter-spacing: 3px;
  font-weight: bold;
}

/* PROGRAM CARDS */
.weekly-programs {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.program-card {
  background: #111;
  border: 1px solid #D4AF37;
  padding: 25px;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(212,175,55,0.5);
}

.program-card h2 {
  font-family: 'Playfair Display', serif;
  color: #D4AF37;
}

.special-friday {
  background: linear-gradient(145deg, #111, #1c1c1c);
  border: 2px solid #C9A227;
}

/* FAITH BANNER */
.faith-banner {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(black, #111);
}

.faith-banner h2 {
  font-size: 2.5rem;
  color: #D4AF37;
  font-family: 'Cinzel', serif;
}

.shalom {
  text-align: center;
  padding: 40px;
  font-weight: bold;
  letter-spacing: 3px;
}

/* ANIMATION */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* RESPONSIVE */
@media(max-width:768px) {
  .program-hero h1 {
    font-size: 2rem;
  }
}
/* ------------------------- */
/* Origin Moment Section */
.origin-moment {
  background-color: var(--black);
  color: var(--white);
  padding: 80px 20px;
}

.origin-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.origin-header h2 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.origin-header .gold-line {
  width: 0%;
  height: 4px;
  background-color: var(--gold);
  margin: 10px auto 20px auto;
  transition: width 1s ease;
}

.origin-header p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--white);
}

/* Origin Images Container */
.origin-images {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.origin-card {
  flex: 0 0 300px; /* card width */
  scroll-snap-align: start;
  border-radius: 10px;
  overflow: hidden;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease;
}

.origin-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Animate gold line and images on scroll */
.origin-in-view .gold-line {
  width: 80px; /* grows on scroll */
}

.origin-in-view .origin-card {
  transform: translateY(0);
  opacity: 1;
}

/* Scrollbar styling for origin images */
.origin-images::-webkit-scrollbar {
  height: 6px;
}

.origin-images::-webkit-scrollbar-track {
  background: #111;
}

.origin-images::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* =======================
   FLOATING WHATSAPP ICON
======================= */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 10px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp img {
  width: 70%;
  height: 70%;
  display: block;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}


/* Responsive */
@media (max-width: 768px) {
  .origin-card {
    flex: 0 0 250px;
  }
}
@media (max-width: 768px) {
  .weekly-programs {
    overflow: hidden;
  }

  .program-cards {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 10px 20px 20px;
  }

  .program-card {
    flex: 0 0 260px;
    max-width: 260px;
  }
}

