/* ===== GLOBAL STYLES ===== */
body {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;

  /* Animated gradient background */
  /* background: linear-gradient(270deg, #000000, #312005, #0c0b07, #ffffff);
  background-size: 800% 800%;

  animation: waveBG 750s ease infinite; */
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.5); /* adjust darkness */
  z-index: -1;
}

/* ===== BACKGROUND VIDEO ===== */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.7) contrast(1.1);

  object-fit: cover; /* fill screen */
  z-index: -2; /* puts behind everything */

  opacity: 0.6; /* adjust for visibility */
}

/* Background animation keyframes */
/* @keyframes waveBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  } */
/* } */

/* ===== HEADER ===== */
.site-header {
  text-align: center;
  padding: 50px 20px 20px;
}

.site-header h1 {
  margin: 0;
  font-size: 2.8rem;
  letter-spacing: 2px;
}

.subtitle {
  color: #ffffff;
  margin-top: 8px;
  font-size: 1rem;
}

/* ===== GALLERY LAYOUT ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;

  padding: 30px;
  max-width: 1200px;
  margin: 0 auto; /* centers gallery */
}

/* ===== PHOTO CARD ===== */
.photo {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Image styling */
.photo img {
  width: 100%;
  max-width: 500px;
  height: auto;

  display: block;
  margin: 0 auto;

  border-radius: 10px;

  /* Smooth hover animation */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover effect */
.photo img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

/* Title under image */
.photo h3 {
  margin: 12px 0 6px;
  font-weight: normal;
}

/* Caption text */
.caption {
  color: #aaa;
  font-size: 0.9rem;
  padding: 0 12px;
  line-height: 1.4;
}

/* ===== OPTIONAL: for SMALL SCREENS ===== */
@media (max-width: 600px) {
  .site-header h1 {
    font-size: 2rem;
  }

  .gallery {
    padding: 20px;
    gap: 20px;
  }
}

#music-btn {
  margin-top: 10px;
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  border-radius: 20px;
  background: black;
  color: white;
  cursor: pointer;
  transition: 0.2s ease;
}

#music-btn:hover {
  background: #333;
}


/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);

  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  z-index: 1000;
  cursor: pointer;

  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.show {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 0px;
}

.lightbox p {
  color: white;
  margin-top: 12px;
  font-size: 14px;
  text-align: center;
  max-width: 80%;
}