/* ===== BODY (ROSY WEDDING BACKGROUND) ===== */
body {
  margin: 0;
  font-family: Georgia, serif;

  padding-top: 70px; /* 🔥 THIS IS THE REAL FIX */

  background: linear-gradient(
    to bottom,
    #ee9aa7,
    #e57f8f,
    #d96b7d
  );
}




/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px; /* 🔥 define height explicitly */

  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 30px;
  z-index: 1000;
  box-sizing: border-box;
}

/* COUPLE NAME */
.nav-left {
  font-family: 'Great Vibes', cursive;
  font-size: 24px;
  color: white;
  text-decoration: none;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
}

/* MENU BUTTON */
.menu-btn {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}


/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 70px; /* match navbar height */

    right: 20px;

    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);

    flex-direction: column;
    padding: 15px;
    display: none;
    border-radius: 10px;
  }

  .nav-links a {
    padding: 10px 0;
  }

  .menu-btn {
    display: block;
  }
}


/* ===== MAIN CONTENT ===== */
.event-header {
  text-align: center;

  margin-top: 30px;   /* 🔥 adds space below navbar */
  margin-bottom: 40px;
}


/* ===== EVENT HEADER ===== */
.event-header {
  text-align: center;
  margin-bottom: 40px;
}

.event-title {
  font-family: 'Great Vibes', cursive;
  font-size: 42px;
  color: #fff5f7;
  margin: 0;
}

.event-date {
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
}

.event-date:empty {
  display: none;
}


/* ===== MASONRY GRID ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-auto-rows: 6px;
  gap: 16px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.gallery-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* IMAGE */
.gallery img {
  width: 100%;
  display: block;
  border-radius: 16px;

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* HOVER GLOW */
.gallery-item:hover img {
  transform: scale(1.03);

  box-shadow:
    0 10px 30px rgba(255, 120, 150, 0.35),
    0 0 15px rgba(255, 180, 200, 0.3);
}


/* ===== BUTTON ===== */
/* ===== BUTTON (MATCH NAVBAR STYLE) ===== */
.load-more {
  display: block;
  margin: 40px auto 0;
  padding: 12px 28px;

  border: none;
  border-radius: 25px;

  /* SAME GLASS STYLE AS NAVBAR */
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);

  color: white;

  /* MATCH NAVBAR TEXT */
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 2px;

  cursor: pointer;

  transition: all 0.3s ease;
}

/* HOVER (match navbar feel) */
.load-more:hover {
  background: rgba(0,0,0,0.6);
}