body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #111;
  color: #fff;
  overflow-x: hidden;
}

.gallery-header {
  text-align: center;
  padding: 40px 20px;
  background: #000;
  color: #ffd700;
}

.gallery-header h1 {
  font-size: 2.5rem;
}

.gallery-header p {
  font-size: 1.1rem;
  color: #ccc;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: #1a1a1a;
}

.filter-btn {
  padding: 10px 18px;
  font-size: 0.95rem;
  border: none;
  background-color: #333;
  color: #ffd700;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #ffd700;
  color: #000;
}

.gallery-carousel {
  display: flex;
  overflow-x: auto;
  padding: 30px;
  gap: 25px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gallery-carousel::-webkit-scrollbar {
  display: none;
}

.photo {
  min-width: 300px;
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  scroll-snap-align: start;
  position: relative;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

.photo:hover {
  transform: scale(1.05);
}

.photo-caption {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffd700;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.wedding-thought {
  background: linear-gradient(to right, #222, #000);
  padding: 40px 20px;
  text-align: center;
  color: #ffd700;
  transition: all 0.4s ease-in-out;
}

.wedding-thought h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.wedding-thought p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 10px auto;
  color: #f5f5f5;
  line-height: 1.6;
}

.wedding-thought.hidden {
  display: none;
}

.thought-section {
  padding: 50px 20px;
  background: #000;
  text-align: center;
}

.thought-section h2 {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 20px;
}

.thought-section p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 800px;
  margin: auto;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background: #111;
  color: #aaa;
}

@media (max-width: 768px) {
  .photo {
    min-width: 220px;
    height: 300px;
  }

  .photo-caption {
    font-size: 0.85rem;
  }

  .filter-btn {
    font-size: 0.8rem;
    padding: 8px 14px;
  }

  .gallery-header h1 {
    font-size: 1.8rem;
  }
}
.thought-section {
  background: linear-gradient(to right, #1a1a1a, #000);
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
  animation: fadeIn 1.5s ease-in-out;
}

.thought-section h2 {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 1px;
}

.thought-section p {
  font-size: 1.15rem;
  color: #ddd;
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
  padding: 0 10px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

/* Optional fade-in animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.back-btn {
  display: inline-block;
  margin-top: 50px;
  padding: 12px 26px;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.back-btn:hover {
  background-color: #ffd700;
  color: #111;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .back-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
    margin-top: 30px;
  }
}
/* Film City Button Section */
.filmcity-btn-section {
  text-align: center;
  background-color: #000;
  padding: 4rem 1rem 2rem;
}

.filmcity-toggle-btn {
  padding: 0.8rem 2.2rem;
  background-color: #ffd600; /* Flat yellow */
  color: #000;               /* Black text */
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 50px;       /* Pill shape */
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  
}

.filmcity-toggle-btn:hover {
  background-color: #ffd600; /* Hover: slightly darker yellow */
  transform: scale(1.05);
}

/* Film City Video Section */
.filmcity-video-section {
  display: none; /* Toggle with JS */
  background-color: #0b0b0b;
  padding: 4rem 1rem 5rem;
  text-align: center;
}

.filmcity-video-section h3 {
  color: #ffd600;
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  font-weight: 800;
  padding: 0 1rem;
}

.filmcity-video-section p {
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  padding: 0 1rem;
}

/* Responsive Video Gallery */
.video-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 0 2rem;
}

.video-box {
  background-color: #1a1a1a;
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-box:hover {
  transform: translateY(-7px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.video-box video {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}
