/* GOOGLE FONT */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

/* GLOBAL */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica", "Arial", sans-serif;
}

body {
  background: #fbfbfd;
  color: #333;
}

.navbar {
  background: #ffffff;
  color: #000;
  padding: 1rem 0;
  position: fixed;
  top: 35px;
  left: 0;
  width: 100%;
  z-index: 1000;
  font-size: 22px;
  font-family: "Helvetica", "Arial", sans-serif;
}

/* container */

.nav-container {
  height: 69px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* logo */

.logo img {
  height: 108px;
}

/* nav links */

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* links */

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  position: relative;
}

/* hover effect */

.nav-links a:hover {
  color: #b0762f;
}

/* ABOUT DROPDOWN */

.about-menu {
  position: relative;
  cursor: pointer;
  font-weight: 600;
}

/* hidden box */

.about-dropdown {
  position: absolute;
  top: 40px;
  left: 0;

  background: white;
  min-width: 170px;

  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: 0.3s;
}

/* links inside */

.about-dropdown a {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

.about-dropdown a:hover {
  background: #f1f1f1;
}

/* show on hover */

.about-menu:hover .about-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ACCOUNT MENU */

.account {
  position: relative;
  cursor: pointer;
  font-weight: 600;
}

/* dropdown */

.dropdown {
  position: absolute;
  top: 40px;
  right: 0;

  background: white;
  min-width: 160px;

  border-radius: 6px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: 0.3s ease;
}

/* dropdown links */

.dropdown a {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

/* hover */

.dropdown a:hover {
  background: #f1f1f1;
}

/* show dropdown */

.account:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== TOP INFO BELT ===== */
.top-right {
  display: flex;
  gap: 12px;
}

.social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social:hover {
  transform: translateY(-2px) scale(1.05);
  background: #d3ba8f;
  color: black;
}

/* underline animation */

.nav-item {
  position: relative;
  padding-bottom: 6px;
}

/* line */

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background: #b0762f;
  transition: width 0.3s ease;
}

/* hover effect */

.nav-item:hover::after {
  width: 100%;
}

/* active page */

.nav-item.active::after {
  width: 100%;
}

.top-bar {
  background: #0b0a24;
  color: white;
  padding: 6px 40px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  position: fixed;
  top: 0;
  width: 100%;
  height: 45px;
  z-index: 1100;
}

.top-bar span {
  margin-right: 20px;
}

.top-right a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
}

.top-right a:hover {
  color: rgb(156, 93, 5);
}

/* Push header down because of top bar */
.header {
  top: 30px;
}

/* SECTION */
/* ===== BACK BUTTON CONTAINER ===== */
.back-btn-container {
  position: fixed;
  top: 180px; /* adjust if navbar height changes */
  right: 40px;
  z-index: 1000;
}

/* ===== BUTTON STYLE ===== */
.back-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #14114e;
  border-radius: 30px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

/* ===== HOVER EFFECT ===== */
.back-btn:hover {
  background: #ff8c00;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ===== SHINE EFFECT ===== */
.back-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-30deg);
  transition: 0.6s;
}

.back-btn:hover::before {
  left: 120%;
}

/* ===== CLICK ANIMATION ===== */
.back-btn:active {
  transform: scale(0.95);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .back-btn-container {
    position: fixed;
    top: 125px;
    right: 20px;
    z-index: 1001;
  }

  .back-btn {
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
  }
}

.gallery-section {
  width: 90%;
  margin-top: 90px;
  max-width: 1300px;
  margin-left: 100px;
  padding: 80px 0;
}

/* MAIN TITLE */

.gallery-main-title {
  text-align: center;
  font-size: 44px;
  font-weight: 600;
  color: #0b0a24;
  margin-bottom: 70px;
  position: relative;
}

.gallery-main-title::after {
  content: "";
  width: 200px;
  height: 4px;
  background: #ff5e00;
  display: block;
  margin: 12px auto;
  border-radius: 5px;
}

/* GRID */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
  place-items: center;
}

/* IMAGE CARD */

.gallery-item {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  transition: 0.4s ease;
}
/* OVERLAY TEXT */

.gallery-item::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 18px;
  font-weight: 500;
  opacity: 0;
  transition: 0.4s;
}

/* ARROW BUTTONS */

.prev,
.next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  cursor: pointer;
  z-index: 10001;
  transition: 0.3s;
}

.prev:hover,
.next:hover {
  background: #ff5e00;
  color: white;
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

/* Mobile */

@media (max-width: 768px) {
  .prev,
  .next {
    width: 40px;
    height: 40px;
    font-size: 25px;
  }

  .prev {
    left: 15px;
  }

  .next {
    right: 15px;
  }
}

/* HOVER EFFECT */

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.75);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.filter-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  background: #f1f1f1;
  font-size: 15px;
  transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: #ff5e00;
  color: #fff;
}

.gallery-item {
  transition: 0.4s;
}

.gallery-item.hide {
  display: none;
}
/* LIGHTBOX */

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* WRAPPER */
.lightbox-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE */
.lightbox-img {
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

/* CLOSE BUTTON (aligned with image top-right) */
.close {
  position: fixed;
  top: 25px;
  right: 35px;
  width: 45px;
  height: 45px;
  background: white;
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: 0.3s;
}

/* HOVER */
.close:hover {
  background: #ff5e00;
  color: white;
}
/* ANIMATIONS */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* MOBILE RESPONSIVE */

@media (max-width: 768px) {
  .gallery-main-title {
    font-size: 32px;
  }

  .category-title {
    font-size: 22px;
  }
}
.footer {
  background: #36393b;
  color: #fff;
  padding: 40px 0 0; /* less vertical padding */
  font-size: 19px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 2px 4px 4px 2px; /* less side margin */
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 1fr;
  gap: 125px; /* more gap between columns */
}

.footer-box h3,
.footer-box h4 {
  color: #d4af37;
  margin-bottom: 13px;
}

.footer-box p,
.footer-box li,
.footer-box a {
  color: #ccc;
  line-height: 1.9;
  font-size: 14px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  text-decoration: none;
}

.footer-box ul li {
  margin-bottom: 8px;
}

/* ---------- App-like Social Buttons ---------- */

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
}

.social-links a {
  background: #fff;
  color: #1c1f22;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  width: fit-content;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-2px);
}

/* ---------- Bottom Bar ---------- */

.footer-bottom {
  margin-top: 35px;
  padding: 15px;
  text-align: center;
  background: #4b4e52;
  font-size: 13px;
  color: #aaa;
}

/* MVV Section */
.mvv-section {
  padding: 100px 8%;
  background: linear-gradient(to bottom, #f8f9fb, #eef1f6);
  text-align: center;
}

.mvv-section h2 {
  font-size: 42px;
  margin-bottom: 60px;
  color: #222;
}

/* container */

.mvv-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* box */

.mvv-box {
  background: white;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* top accent line */

.mvv-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #a36f3e;
}

/* hover */

.mvv-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* icon */

.mvv-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

/* heading */

.mvv-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #a36f3e;
}

/* text */

.mvv-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* ================= GALLERY RESPONSIVE FIX ================= */

@media (max-width: 1024px) {
  .gallery-section {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 10px;
  }

  .footer-container {
    gap: 40px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .gallery-section {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding: 150px 20px;
  }

  .gallery-main-title {
    font-size: 30px;
  }

  .category-title {
    font-size: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-item {
    max-width: 100%;
  }

  .gallery-item img {
    height: 180px;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .gallery-section {
    width: 100%;
    margin-left: 0;
    padding: 140px 12px;
  }

  .gallery-main-title {
    font-size: 24px;
  }

  .category-title {
    font-size: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-item img {
    height: 200px;
  }

  .back-btn-container {
    top: 125px;
    right: 15px;
    z-index: 1001;
  }

  .back-btn {
    padding: 9px 18px;
    font-size: 13px;
  }
}
