/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  background-size: contain;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
}

/* === Gallery Section === */
.gallery-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.gallery-description {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 2px;
}

.gallery-note {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 20px;
}

/* === Gallery Grid === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-card {
  display: block;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

/* Info under each card */
.gallery-info {
  padding: 15px;
}

.gallery-info .date {
  font-size: 0.8rem;
  color: #e40808;
  margin-bottom: 5px;
  font-weight: 600;
  text-transform: uppercase;
}

.gallery-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #333;
}

.gallery-info .desc {
  font-size: 0.9rem;
  color: #666;
}

/* === Lightbox === */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(0,0,0,0.9);
}

.lightbox-img {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  color: white;
  font-weight: bold;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  border: none;
  border-radius: 50%;
  z-index: 2000;
  transition: background 0.3s;
}

.prev { left: 40px; }
.next { right: 40px; }

.prev:hover, .next:hover {
  background: rgba(255,255,255,0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-card img {
    height: 180px;
  }
}

/* Extra for Reels */
.reels-section {
  margin-top: 60px;
}

.reels-section .insta-reel {
  flex: 1 1 250px; /* har reel ek fixed width le */
  max-width: 350px; /* max width decide karo */
}

.gallery-card blockquote.instagram-media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  background: #fff;
  
}


