body {
  margin: 0;
  background: #0b0b0b;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

/* HERO */
.gallery-hero {
  height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.gallery-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: 6px;
  color: #ffae00;
}

.gallery-hero p {
  opacity: 0.7;
  margin-top: 10px;
}

/* GRID */
.gallery-grid {
  padding: 40px 8%;
  column-count: 4;
  column-gap: 22px;
}

.gallery-grid img {
  width: 100%;
  margin-bottom: 22px;
  break-inside: avoid;
  border-radius: 14px;
  cursor: pointer;
  display: block;
  background: #111;
  transition: transform 0.3s ease, opacity 0.3s ease;
}



/* LOADER */
.loader {
  text-align: center;
  padding: 30px;
  opacity: 0.6;
  font-size: 0.9rem;
}

/* MOBILE */
@media (max-width: 600px) {
  .gallery-hero {
    height: 45vh;
  }

  .gallery-grid {
    padding: 30px 6%;
    gap: 16px;
  }

}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 94%;
  max-height: 88%;
  border-radius: 12px;
}
.lightbox::after {
  content: "Tap outside to close";
  position: absolute;
  bottom: 30px;
  font-size: 0.8rem;
  opacity: 0.6;
}


.lightbox .close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .gallery-grid { column-count: 3; }
}

@media (max-width: 768px) {
  .gallery-grid {
    column-count: 2;
    padding: 24px 6%;
  }
}

@media (max-width: 520px) {
  .gallery-grid {
    column-count: 1;
    padding: 20px 5%;
  }

  .gallery-grid img {
    margin-bottom: 18px;
    border-radius: 12px;
  }
}
@media (hover: hover) {
  .gallery-grid img:hover {
    transform: translateY(-4px) scale(1.02);
  }
}

.gallery-grid img:active {
  transform: scale(0.97);
  opacity: 0.85;
}
/* SKELETON LOADER */
.skeleton {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  margin-bottom: 22px;
  background: linear-gradient(
    100deg,
    #1a1a1a 40%,
    #2a2a2a 50%,
    #1a1a1a 60%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.2s infinite;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* IMAGE FADE-IN */
.gallery-grid img {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-grid img.loaded {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 520px) {
  .skeleton {
    height: 200px;
    border-radius: 12px;
  }
}
/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: -10px;
    width: 100%;
    height: 90px;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    pointer-events: auto;
}


.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 90px;
    height: auto;
}

.nav-title {
    color: #ffffff;
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    position: relative;
    opacity: 0.9;
}

/* underline hover effect */
.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #c04406;
    transition: 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;    padding: 8px;}

.hamburger span {
    width: 30px;
    height: 4px;
    background: #c04406;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80%;
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        color: #c04406;
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
        margin-right: 60px;
    }

    .navbar {
        padding: 14px 24px;
        height: 70px;
        background: #000000;
        
    }

    .nav-logo {
        width: 70px;
    }
}
/* FOOTER */
.footer {
    position: relative;
    width: 80%;
    background: linear-gradient(120deg, #2a0000, #000);
    color: #fff;
    padding: 80px 10% 30px;
    z-index: 20;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.footer-logo {
    width: 90px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(255, 180, 80, 0.5));
}

.footer-left h3 {
    font-size: 1.4rem;
    margin: 0;
    letter-spacing: 2px;
}

.footer-left p {
    opacity: 0.8;
    margin-top: 6px;
}

.footer h4 {
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #ffcc70;
}

.footer-center a {
    display: block;
    text-decoration: none;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-center a:hover {
    opacity: 1;
    color: #ffcc70;
    transform: translateX(5px);
}

.footer-right p {
    opacity: 0.85;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.75;
}

.footer-bottom span {
    color: #ffcc70;
    font-weight: 600;
}

/* MOBILE FOOTER */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 15px;
    }

    .footer-center a:hover {
        transform: none;
    }
}