/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Poppins,sans-serif;
}

body{
  color:white;
}


/* ================= BACKGROUND ================= */
.hero-bg{
  position:fixed;
  inset:0;
  background:url("../images/hero.jpg") center/cover no-repeat;
  z-index:-1;
}


/* ================= FRAME ================= */
.frame{
  width:88%;
  height:88vh;
  margin:6vh auto;
  border:10px solid white;
  border-radius:30px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.frame-content{
  flex:1;
  overflow-y:auto;
  padding:40px;
}


/* ================= NAVBAR ================= */
.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 35px;
  position:relative;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
}

.avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  background:url("../images/pratik.jpg") center/cover;
}


/* ================= NAV LINKS ================= */
.nav-links{
  display:flex;
  gap:22px;
  list-style:none;
}

.nav-links a{
  color:white;
  text-decoration:none;
  transition:.3s ease;
}

.nav-links a:hover{
  color:#FF6961;
  transform:translateY(-2px);
}


/* ================= HAMBURGER ================= */
.hamburger{
  display:none;
  font-size:26px;
  cursor:pointer;
}


/* ================= FOOTER ================= */
.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:30px;
}


/* ================= SOCIAL ICONS ================= */
.socials{
  display:flex;
  gap:18px;
  align-items:center;
}

.socials i{
  font-size:32px;
  cursor:pointer;
  transition:.3s ease;
}

.socials i:hover{
  transform:scale(1.25);
}

.socials a{
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
}

.socials a:visited{
  color:#fff;
}

.socials a i{
  color:inherit;
}

.socials a:hover i{
  transform:scale(1.25);
}


/* ======================================
   LIGHTBOX FULLSCREEN
====================================== */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.95);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.lightbox img,
.lightbox video{
  max-width:90%;
  max-height:90%;
  border-radius:10px;
}

.close-lightbox{
  position:absolute;
  top:30px;
  right:40px;
  font-size:40px;
  color:white;
  cursor:pointer;
}



/* =================================================
   🔥 RESPONSIVE NAVBAR (MOBILE + TABLET)
   SINGLE CLEAN BLOCK
================================================= */
@media (max-width:1024px){

  body{
    overflow:auto;
  }

  .frame{
    width:96%;
    height:96vh;
    margin:2vh auto;
  }

  .frame-content{
    padding:20px;
  }

  .hamburger{
    display:block;
  }

  .nav-links{
    display:none;
    flex-direction:column;

    position:absolute;
    top:70px;
    right:20px;

    background:rgba(0,0,0,.92);
    backdrop-filter:blur(10px);

    padding:18px;
    border-radius:14px;
    gap:14px;

    z-index:999;
  }

  .nav-links.active{
    display:flex;
  }

  footer{
    padding:20px 15px;
  }

  .footer-grid{
    gap:18px;
  }

  .footer-grid h3{
    font-size:14px;
    color:#fff !important;
  }

  .footer-grid ul{
    font-size:12px;
  }

  /* Footer heading links - normal white text, no link styling */
  .footer-grid h3 a{
    color:#fff !important;
    text-decoration:none;
    cursor:pointer;
  }
  .footer-grid h3 a:visited{
    color:#fff !important;
  }
  .footer-grid h3 a:hover{
    color:#fff !important;
    text-decoration:none;
  }
}



/* =========================================
   DESKTOP LOGO SIZE ONLY
========================================= */
@media (min-width: 992px){

  .avatar{
    width:54px;
    height:54px;
  }

  .logo{
    font-size:35px;
    letter-spacing:.5px;
    gap:14px;
  }
}
.header{
  position:sticky;
  top:0;
  z-index:1000;
}

