:root {
  --primary-bg: #fee101;
  --accent-color: #0097b2;
  --interaction-color: #d80000;

  --primary-bg-light: #fff4c2;
  --primary-bg-lighter: #fff8db;
  --text-color: #333;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.social-container {
  margin: 30px auto;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 700px;
  height: max-content;
  align-self: center;
}

@media screen and (max-width: 768px) {
  .social-container {
    margin: 0px;
    max-width: 400px;
  }
}

.social-container h1 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--text-color);
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.social-icons a {
  color: var(--white);
  font-size: 42px;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.2s ease;
  text-decoration: none;
}

/* Hover effect */
.social-icons a:hover {
  transform: scale(1.1);
}

/* Platform Colors */
.facebook {
  background: #3b5998;
}
.instagram {
  background: #e1306c;
}
.whatsapp {
  background: #25d366;
}
.youtube {
  background: #ff0000;
}
.twitter {
  background: #1da1f2;
}

.social-label {
  margin-top: 10px;
  font-size: 24px;
  color: var(--text-color);
}

.socials-preview {
  text-align: center;
  padding: 40px 20px;
  max-width: 600px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  justify-items: center;
}

.preview-photo {
  position: relative;
  cursor: pointer;
}

.preview-photo img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s;
}

.preview-photo img:hover {
  transform: scale(1.05);
}

.more-photos span {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 100%;
  height: 100%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.photos-2025 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 21px;
}

.photos-2025 img {
  border-radius: 10px;
  width: auto;
  height: fit-content;
}

@media screen and (max-width: 768px) {
  .photos-2025 {
    display: flex;
    flex-direction: column;
  }

  .photos-2025 img {
    width: fit-content;
    height: auto;
  }
}

.photo1 {
  grid-row: span 3 / span 3;
}

.photo-siddhartha {
  grid-row: span 6 / span 6;
}

.photo2 {
  grid-row: span 3 / span 3;
}

.photo3 {
  grid-row: span 3 / span 3;
  grid-row-start: 4;
}

.photo4 {
  grid-row: span 3 / span 3;
  grid-column-start: 3;
  grid-row-start: 4;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row: inherit;
  column-gap: 15px;
  padding: 20px;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--primary-bg-lighter);
  aspect-ratio: 0;
  margin: 5px 0;
  border-radius: 10px;
}

.gallery-card {
  display: inline-block; /* Required for column layout */
  width: 100%;
  margin-bottom: px;
  cursor: pointer;
  border-radius: 10px;
  aspect-ratio: 16/9;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s;
}

.gallery-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.gallery-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.download-btn,
.share-btn {
  background: var(--interaction-color);
  color: var(--white);
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
  transition: background 0.3s;
}

.glightbox-description, .gdesc {
  font-size: 2.2rem !important;
  font-weight: 1000 !important;
  color: #333 !important;
  text-align: center !important;
  line-height: 1.3 !important;
}

#social-align {
  display: flex;
  justify-content: center;

}

@media screen and (max-width: 768px) {
  #social-align {
    flex-direction: column;
    align-items: center;
  }
  
  .social-icons a {
    width: 60px;
    height: 60px;
    gap: 15px;
    font-size: 30px;
  }

  #full-gallery {
    padding: 10px;
    max-width: 350px;
    word-break: break-word;
  }
}

#full-gallery p {
  justify-self: center;
  align-self: center;
  font-size: large;
}