 
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

  .photographersmargin{
      margin-top: 50px;
    }
    
    body {
      background: #0f0f0f;
      color: #fff;
      overflow-x: hidden;
    }

 /* NAV */

  @media (max-width: 860px) {
  .nav-outer {
   
    position:relative;
    overflow: visible;
  }
}
  
  /* ---------- NAV (desktop + mobile) ---------- */
  nav {
  position: fixed;
  top: 12px;
  left: 0;
  width: 90%;
  z-index:99999;
}



.nav-outer {
  margin-top: 10px;
  margin-left: 5%;
  display:flex ;
  justify-content: center;
  width: 100%;
}

  .nav-inner{
    width:80%;
  z-index: 9999 !important;
  
    max-width:var(--nav-width);
    display:flex; align-items:center; justify-content:space-between; gap:20px;
    background: linear-gradient(180deg, rgba(255, 4, 242, 0.121), rgba(255, 0, 0, 0.104));
    padding:12px 18px;
    border-radius:30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    transition: transform .35s cubic-bezier(.2,.9,.2,1), opacity .25s;
    position:relative;
    overflow:visible;
  }

  /* shrink class applied on scroll */
  nav.shrink .nav-inner{ transform: translateY(-6px) scale(.995); backdrop-filter: blur(14px) }

  .brand{ display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--white) }
  .brand img{ margin-left: 30px; height:42px; width:auto; display:block; border-radius:8px}
  .brand .brand-name{ font-family:var(--fw-serif); font-weight:700; letter-spacing:.3px }

  /* nav links (desktop) */
  .nav-links{
   
  z-index: 9999 !important;


    
    display:flex; gap:14px; align-items:center }
  .nav-links a{
    color:var(--muted); text-decoration:none; font-weight:600; padding:8px 12px; border-radius:10px;
    transition: all .22s ease;
    display:inline-block;
  }
  .nav-links a:hover{ color:var(--white); background:rgba(255,255,255,0.03); transform:translateY(-3px) }


  
    
    h1, h2 {
      text-align: center;
      margin-bottom: 20px;
    }

    section {
      padding: 80px 10%;
    }

    /* HERO */
    .hero { 
      height: 60vh;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      background: linear-gradient(to bottom, rgba(0,0,0,0.1), #0f0f0f),
                  url('AdminBanner.jpg');
      background-size: cover;
      background-position: center;
      text-align: center;
      animation: fadeIn 1.5s ease;
    }

    .hero h1 {
      margin-top: 100px;
      font-size: 3rem;
      letter-spacing: 2px;
    }

    .hero p {
      opacity: 100%;
      margin-top: 10px;
    }

    /* FOUNDERS */
    .founders {
      display: flex;
      gap: 40px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .card {
      background: #1a1a1a;
      border-radius: 15px;
      overflow: hidden;
      width: 300px;
      transition: 0.4s ease;
      position: relative;
    }

    .card:hover {
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    }

    .card img {
      width: 100%;
      height: 350px;
      object-fit: cover;
    }

    .card-content {
      padding: 20px;
      text-align: center;
    }

    .role {
      color: #bbb;
      font-size: 0.9rem;
      margin-top: 5px;
    }

    /* TEAM GRID */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 50px;
      margin-top: 40px;
    }

        /* ANIMATION */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2rem;
      }
    }

  .event-gallery {
  padding: 50px 20px;
  background-color: #      background: #1a1a1a;
;
  text-align: center;
}

.event-gallery h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

@media (max-width: 860px) {
    .nav-inner {
        width: 100%;
        margin-top: 10px;
        padding: 12px;
    }
}