/* ====== GLOBAL ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  background: #f5f5f5;
  color: #333;
  line-height: 1.5;
  font-size: 14px;
}

/* ====== HEADER ====== */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1f1f1f;
  padding: 15px;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

header h1 {
  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
  font-size: 1.8rem;
}

.highlight {
  color: #c9c9c9;
}

/* ====== NAVIGATION ====== */
.nav-bar ul {
  list-style: none;
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.nav-bar a {
  text-decoration: none;
  color: #ddd;
  font-weight: 500;
  font-size: 0.9rem;
  transition: 0.3s ease, transform 0.3s ease;
}

.nav-bar a:hover,
.nav-bar a.active {
  color: white;
  border-bottom: 2px solid #c9c9c9;
  padding-bottom: 2px;
  transform: translateY(-2px);
}

/*============MAIN============*/

/*ANIMATION*/

/* ====== FLOAT ANIMATION ====== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ====== BATCH GRID ====== */
.batch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  padding: 40px;
  margin-top: 20px;
  animation: fadeInUp 0.8s forwards;
}

/* Photo styling */
.batch-photo img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.batch-photo img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

/* Textbox styling */
.batch-text {
  background: white;
  padding: 23px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  animation: fadeInUp 0.8s forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.batch-text:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.batch-text h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
  font-size: 1.7rem;
  text-align: center;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.batch-text h2:hover {
  color: #00b54f;
  text-shadow: 0 0 6px rgba(0, 180, 79, 0.4);
}

.batch-text p {
  font-size: .1rem;
  line-height: 1.6;
}

/*HIGHLIGHTED NAME NI KENT*/
.glow {
  color: #00b54f;
  transition: 0.3s ease-in-out;
}

/* ====== GLOW HOVER EFFECT ====== */
.glow:hover {
  color: #00ff7b;
  text-shadow:
      0 0 0.2px #00ff7b,
      0 0 0.2px #00ff7b,
      0 0 0.2px #00ff7b,
      0 0 0.2px #00cc60,
      0 0 0.2px #009944;
  transform: scale(1.05);
}

/* ====== FOUR COLUMN LIST INSIDE BATCH TEXT ====== */
.four-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 15px;
}

.four-columns p {
  line-height: 1.6;
  font-size: 0.90rem;
  margin: 0;
  transition: color 0.3s ease;
}

.four-columns p:hover {
  color: #b50097;
}

/* Responsive */
@media (max-width: 900px) {
  .four-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .four-columns {
    grid-template-columns: 1fr;
  }
}

/* ====== MOBILE RESPONSIVE ====== */
@media (max-width: 768px) {
  .batch-grid {
    grid-template-columns: 1fr;
  }

  .batch-photo img {
    max-height: 300px;
  }
}

/* ====== FOOTER NAV BUTTONS ====== */
footer.footer-nav {
    position: fixed;
    right: 20px;     /* align to right */
    bottom: 20px;    /* keep bottom spacing */
    left: auto;      /* remove centering */
    display: flex;
    justify-content: flex-end; /* align items to the right */
    gap: 20px;
    padding: 0;
    z-index: 10;
}

/* Buttons */
footer.footer-nav .nav-btn {
    padding: 18px 36px;
    background: #333;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

/* Hover */
footer.footer-nav .nav-btn:hover {
    background: #555;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}


/* Scroll Disable */
html, body {
  overflow: hidden;
  height: 100%;
}
