:root {
  --blue:         #47b8e0;
  --blue-dark:    #1a6fa3;
  --blue-deep:    #0b2a40;
  --blue-light:   #d6f0fb;
  --orange:       #f5a623;
  --orange-dk:    #c97d0a;
  --red:          #d42b2b;
  --black:        #0d1117;
  --ink:          #111827;
  --ink-soft:     #374151;
  --muted:        #6b7280;
  --off-white:    #f7f9fc;
  --white:        #ffffff;
  --border:       #e5e7eb;
  --cream:        #fdf8f2;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ══════════════════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--blue-light); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 99px; }

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000; width: 100%;
  transition: height .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
   background-color: whitesmoke;
backdrop-filter: blur(10px);
}
.navbar.shrink {
  height: 54px;
  background:transparent;
  box-shadow: 0 4px 28px rgba(11,42,64,.5);
}
.navbar.shrink .navlink          { color: rgba(255,255,255,.7); }
.navbar.shrink .navlink:hover    { color: var(--blue); }
.navbar.shrink .navlink:last-child { background: var(--orange); color: var(--white); }
.navbar.shrink .org-name         { color: var(--blue); }
.navbar.shrink .nav-toggle span  { background: var(--white); }

.navbar-left { display: flex; align-items: center; gap: 12px; }
.logo img { height: 52px; width: auto; transition: transform .3s var(--ease-spring); }
.logo img:hover { transform: scale(1.06) rotate(-3deg); }

.org-name {
  font-family: var(--font-body); font-weight: 800; font-size: 20px;
  letter-spacing: .05em; color: var(--blue);
  display: flex; flex-direction: column; align-items: flex-start;
  transition: color .3s; line-height: 1.2;
}
.org-name:hover { color: var(--orange); }
.org-name p  { margin: 0; font-size: 12px; font-weight: 400; color: var(--muted); letter-spacing: .04em; }
.org-name span { font-size: 9px; color: var(--red); text-transform: uppercase; letter-spacing: .1em; }

.navlinks { display: flex; align-items: center; gap: 2px; list-style: none; flex-wrap: nowrap; }
.navlink {
  font-size: 13.5px; font-weight: 500; color: var(--ink-soft);
  padding: 8px 14px; border-radius: 8px;
  position: relative; transition: color .25s, background .25s;
  white-space: nowrap;
}
.navlink::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--blue); border-radius: 99px;
  transform: scaleX(0); transform-origin: center; transition: transform .25s var(--ease);
}
.navlink:hover { color: var(--blue); }
.navlink:hover::after { transform: scaleX(1); }
.navlink:last-child {
  background: var(--blue); color: var(--white) !important;
  font-weight: 600; border-radius: 99px; padding: 9px 22px !important;
  margin-left: 8px; box-shadow: 0 4px 18px rgba(71,184,224,.35);
  transition: background .3s, transform .2s var(--ease-spring), box-shadow .3s !important;
}
.navlink:last-child::after { display: none !important; }
.navlink:last-child:hover {
  background: var(--blue-dark) !important; transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(71,184,224,.5) !important; color: var(--white) !important;
}

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--ink);
  border-radius: 99px; transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--white); padding: 10px 24px 24px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  position: sticky; top: 72px; z-index: 999; width: 100%;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 13px 0; font-weight: 600; font-size: 15px;
  color: var(--ink); border-bottom: 1px solid rgba(0,0,0,.05);
  transition: color .25s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--blue); }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --orange: #F97316;
      --gold: #EAB308;
      --dark: #111111;
      --text: #1a1a1a;
      --muted: #666;
      --bg: #FAF9F6;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
    }

    /* ── SECTION HEADER ── */
    .gallery-header {
      text-align: center;
      padding: 60px 20px 40px;
    }

    .gallery-header .eyebrow {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--orange);
      font-weight: 500;
      margin-bottom: 12px;
    }

    .gallery-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 5vw, 48px);
      font-weight: 600;
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 14px;
    }

    .gallery-header h2 span {
      color: var(--orange);
    }

    .gallery-header p {
      font-size: 14px;
      color: var(--muted);
      max-width: 480px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .header-line {
      width: 48px;
      height: 3px;
      background: var(--orange);
      margin: 20px auto 0;
      border-radius: 2px;
    }

    /* ── MASONRY GRID ── */
    .gallery-grid {
      columns: 3;
      column-gap: 12px;
      padding: 0 24px 60px;
      max-width: 1100px;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      .gallery-grid { columns: 2; padding: 0 12px 40px; }
    }
    @media (max-width: 480px) {
      .gallery-grid { columns: 1; }
    }

    .gallery-item {
      break-inside: avoid;
      margin-bottom: 12px;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      background: #ddd;
    }

    .gallery-item img {
      width: 100%;
      display: block;
      transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .gallery-item:hover img {
      transform: scale(1.04);
    }

    /* overlay on hover */
    .gallery-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(249,115,22,0.55) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 10px;
    }

    .gallery-item:hover::after {
      opacity: 1;
    }

    .item-zoom-icon {
      position: absolute;
      bottom: 12px;
      right: 12px;
      width: 32px;
      height: 32px;
      background: rgba(255,255,255,0.92);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(0.8);
      transition: opacity 0.3s ease, transform 0.3s ease;
      z-index: 2;
    }

    .gallery-item:hover .item-zoom-icon {
      opacity: 1;
      transform: scale(1);
    }

    .item-zoom-icon svg {
      width: 14px;
      height: 14px;
      stroke: var(--orange);
    }

    /* caption label */
    .item-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 10px 12px;
      font-size: 11px;
      font-weight: 500;
      color: #fff;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity 0.3s ease, transform 0.3s ease;
      z-index: 2;
    }

    .gallery-item:hover .item-caption {
      opacity: 1;
      transform: translateY(0);
    }

    /* stagger fade-in on load */
    .gallery-item {
      opacity: 0;
      animation: fadeUp 0.5s ease forwards;
    }
    .gallery-item:nth-child(1) { animation-delay: 0.05s; }
    .gallery-item:nth-child(2) { animation-delay: 0.12s; }
    .gallery-item:nth-child(3) { animation-delay: 0.19s; }
    .gallery-item:nth-child(4) { animation-delay: 0.26s; }
    .gallery-item:nth-child(5) { animation-delay: 0.33s; }
    .gallery-item:nth-child(6) { animation-delay: 0.40s; }
    .gallery-item:nth-child(7) { animation-delay: 0.47s; }
    .gallery-item:nth-child(8) { animation-delay: 0.54s; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── LIGHTBOX ── */
    #lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1000;
      align-items: center;
      justify-content: center;
    }

    #lightbox.open {
      display: flex;
    }

    .lb-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(10, 10, 10, 0.92);
      backdrop-filter: blur(6px);
      animation: fadeIn 0.25s ease;
    }

    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes zoomIn {
      from { opacity: 0; transform: scale(0.88); }
      to   { opacity: 1; transform: scale(1); }
    }

    .lb-content {
      position: relative;
      z-index: 2;
      max-width: 90vw;
      max-height: 90vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .lb-img-wrap {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    }

    #lb-img {
      display: block;
      max-width: 88vw;
      max-height: 80vh;
      object-fit: contain;
      border-radius: 12px;
    }

    .lb-caption-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 12px 4px 0;
    }

    .lb-caption-text {
      font-size: 13px;
      font-weight: 400;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.03em;
    }

    .lb-counter {
      font-size: 12px;
      color: var(--orange);
      font-weight: 500;
    }

    /* nav arrows */
    .lb-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      z-index: 3;
      user-select: none;
    }

    .lb-nav:hover {
      background: var(--orange);
      transform: translateY(-50%) scale(1.08);
    }

    #lb-prev { left: -56px; }
    #lb-next { right: -56px; }

    @media (max-width: 600px) {
      #lb-prev { left: -48px; }
      #lb-next { right: -48px; }
      .lb-nav { width: 36px; height: 36px; font-size: 14px; }
    }

    /* close button */
    #lb-close {
      position: absolute;
      top: -48px;
      right: 0;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      font-size: 18px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s;
    }

    #lb-close:hover { background: #e74c3c; }

    /* orange accent bar at bottom of lightbox image */
    .lb-accent {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
    }

.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  font-family: "Poppins", sans-serif;
 border-radius: 15px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
   
}

.footer-container div {
  flex: 1 1 220px;
  margin: 15px;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #0077ff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0077ff;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #0077ff;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #fff;
  font-size: 22px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #0077ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
}

  #progress-bar {
      position: fixed;
      top: 0; left: 0;
      height: 4px;
      width: 0%;
      background: linear-gradient(90deg, cyan, orange, red);
      z-index: 9999;
      transition: width 0.1s linear;
    }



  
/* ── Navbar responsive ── */
@media (max-width: 768px) {
  .navbar { padding: 0 20px; height: 60px; }
  .navlinks { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 480px) {
  .navbar { padding: 0 16px; }
}