* {
    border: 0;
    padding: 0;
    margin: 0;
font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    width: 100vw;
}

html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Universal Container */

.universal-container {
    width: 88%;
    margin: 0 auto;
    height: 100%; /* allows flex children to stretch full height */
}

.please1 {
  display: none;
}

.please3 {
  display: none;
}



/* ===== SITE HEADER ===== */
.site-header {
  width: 100%;
  padding: 1.2rem 0;
  position: fixed;           /* stays at top */
  top: 0px;
  left: 0;
  background-color: white;   /* or transparent if you prefer */
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border 0.3s ease;
}

/* Glassy version (when scrolled) */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  width: 92%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.logo {
  font-size: 1rem;
  font-weight: 400;
  color: black;
  letter-spacing: 0.5px;
}

.logo a {
  text-decoration: none;
  color: black;
  font-size: 1rem;
  font-weight: 280;
  letter-spacing: 0.5px;
}

/* Nav links */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;  /* 👈 ensures vertical centering of all list items */
  margin: 0;
  padding: 0;
}

/* === Nav text link underline animation (excludes LinkedIn) === */
nav a:not(.linkedin-link) {
  position: relative;
  text-decoration: none;
  color: black;
  font-size: 1rem;
  font-weight: 280;
  transition: color 0.3s ease;
}

nav a:not(.linkedin-link):hover {
  color: black;
}

/* Animated underline for only text links */
nav a:not(.linkedin-link)::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background-color:black;
  transition: all 0.35s ease;
  transform: translateX(-50%);
  transform-origin: center;
}

nav a:not(.linkedin-link):hover::after {
  width: 100%;
}

/* Active nav link — underline always visible */
nav a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background-color: black;
  transform: translateX(-50%);
}


/* === LinkedIn Icon Button Animation === */
.linkedin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: black;
  transition: transform 0.35s ease, background-color 0.3s ease;
  border-radius: 50%;
  transform-origin: center;
}

.linkedin-link:hover {
  background-color: rgba(10, 102, 194, 0.1);
  transform: scale(1.1) rotate(5deg); /* subtle hover motion */
}

.linkedin-icon {
  width: 22px;
  height: 22px;
  pointer-events: none;
  transition: transform 0.35s ease;
}

.linkedin-link:hover .linkedin-icon {
  transform: scale(1.05);
}


/* --- HERO LAYOUT --- */
#hero {
  height: 100vh; /* full viewport height */
  display: flex;
  flex-direction: column;

}

.hero-inner {
      display: flex;
      flex-direction: column;
      justify-content: space-between; /* pushes top and bottom apart */
      height: 100%;
    }

    /* === TOP AREA (Tagline + Subtext) === */
    .hero-top {
      margin-top: 20vh; /* moves tagline + subtext down */
    }

      .hero-tagline {
      font-size: 4rem;
  font-weight: 450;
  line-height: 1.2;
      margin-bottom: 1.3rem;
      width: 80%;
    }

     .hero-subtext {
      font-size: 1rem;
  color: #6e6e6e;
  width: 59%;
  line-height: 1.5;
  font-weight: 280;
    }

    /* === BOTTOM AREA === */
    .hero-bottom {
      margin-bottom: 8rem; /* distance from bottom edge */
      font-size: 1rem;
      display: flex;
  align-items: center;
  gap: 1.5rem;
                /* pushes it to bottom of hero */              /* spacing from bottom edge */
  cursor: pointer;
  transition: transform 0.3s ease;
    }











.circle {
  width: 80px;
  height: 80px;
  border: 1.8px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, background-color 0.4s ease;
}

.arrow-icon {
  width: 26px;
  height: 26px;
  transition: transform 0.4s ease, stroke 0.4s ease;
  stroke: black;
}

.view-text {
  font-size: 1.3rem;
  font-weight: 300;
  color: black
  ;
  transition: transform 0.4s ease;
  text-transform: uppercase;
  transform-origin: left center; /* prevents squish on hover */
}

/* --- Hover --- */
.hero-bottom:hover .circle {
  transform: scale(1.02);
}

.hero-bottom:hover .arrow-icon {
  transform: rotate(45deg);
}

.hero-bottom:hover .view-text {
  transform: scale(1.05);
}

/* --- Active Click --- */
.circle.active {
  background-color: #000;
}

.circle.active .arrow-icon {
  stroke: #fff;
}

















.project1-image {
  height: 65vh;
  width: 100%;
  background-color: blue;
  border-radius: 22px;
  background: url('Assets/a1.png');
  background-size: cover;
  background-position: center;
}



.project1-title {
  color: black;
    font-size: 1.2rem;
    font-weight: 350;
    line-height: 1.4;
    padding-top: 1rem;
}

.project1-des {
  color: #6e6e6e;
    font-size: 1rem;
    font-weight: 280;
    line-height: 1.5;
}

/* --- Project Hover Animation --- */

.project-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.project-card:hover {
  transform: scale(1.03);
}

.hover-circle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 65px;
  height: 65px;
  background-color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.35s ease;
}

.project-card:hover .hover-circle {
  opacity: 1;
  transform: scale(1);
}

.arrow-img {
  width: 22px; /* adjust as needed */
  height: 22px;
  transition: transform 0.3s ease;
}

.project-card:hover .arrow-img {
  transform: translateX(2px);
}

/* --- Always-visible pill --- */
.status-pill {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  z-index: 2;
}

.status-dot {
  width: 10px;
  height: 10px;
  background-color: #61EB9B;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-text {
  font-size: 0.8rem;
  font-weight: 400;
  color: black;
  letter-spacing: 0.5px;
}

/* --- Red pill variation (for Updating) --- */
.status-pill.updating {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.status-dot.red {
  background-color: #FF595B; /* vibrant red */
}

/* --- Hover circle now supports lock icon --- */
.lock-img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.project-card:hover .lock-img {
  transform: scale(1.1);
}

/* Locked card bounce animation */
@keyframes bounceRight {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(12px); }
  50%  { transform: translateX(-6px); }
  75%  { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

.project-card.bounce {
  animation: bounceRight 0.6s cubic-bezier(.36,.07,.19,.97);
}



#problem {
  margin-top: 12vh;
}
.friend {
    width: 100%; 
    display: flex;
    justify-content: space-between; /* pushes friend1 to the far left, friend2 to the far right */
    align-items: flex-start;
    gap: 2%; /* optional, adds even spacing */
    
}

/* Each block (image + caption) */
.friend-block {
  display: flex;
  flex-direction: column;
  width: 48%;
}

/* The “images” */
.friend1,
.friend2 {
  height: 50vh;
  border-radius: 22px;
  width: 100%;
  
}

.friend1 {
    background: url('Assets/a3.png');
    background-size: cover;
    background-position: center;
}

.friend2 {
    background: url('Assets/a2.png');
    background-size: cover;
    background-position: center;   
}

/* Captions */
.caption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  text-align: left; /* ensures caption aligns with the image’s left edge */
}

.project-link {
  text-decoration: none; /* removes underline */
  color: inherit;        /* keeps your original text color */
  display: block;        /* makes the whole block clickable */
}

/* optional hover styling */
.project-link:hover .project1-image {
  transform: scale(1.01);
  transition: 0.3s ease;
}


/* ===== FOOTER ===== */
.site-footer {
  margin-top: 22vh;
  padding-bottom: 2rem;
  background: white; /* keep clean and consistent with site */
}

.footer-divider {
  border: none;
  border-top: 1.1px solid #333;
  width: 100%;
  margin: 0 auto 1.5rem auto;
  opacity: 0.2; 
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  font-size: 1rem;
  color: #6e6e6e;;
  font-weight: 280;
}

.footer-text a {
  color: #6e6e6e;
  text-decoration: underline; /* 👈 adds a clean underline */
  text-decoration-color: rgba(0, 0, 0, 0.25); /* soft gray line */
  text-decoration-thickness: 1px; /* thin underline */
  text-underline-offset: 4px; /* gives the underline breathing room */
  transition: color 0.3s ease;
}

.footer-text a:hover {
  color: #FF595B; /* your accent color */
}

/* Reuse LinkedIn styling, slightly adjusted for footer */
.footer-linkedin {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: black;
  transition: transform 0.35s ease, background-color 0.3s ease;
}

.footer-linkedin:hover {
  background-color: rgba(10, 102, 194, 0.1);
  transform: scale(1.1) rotate(5deg);
}

.footer-linkedin .linkedin-icon {
  width: 22px;
  height: 22px;
  pointer-events: none;
  transition: transform 0.35s ease;
}

.footer-linkedin:hover .linkedin-icon {
  transform: scale(1.05);
}





/* ---------- RESPONSIVE DESIGN ---------- */

/* 🖥️ Large Monitors / 1440px+ */
@media (min-width: 1920px) {
  
  .hero-tagline {
    font-size: 4.5rem;
    width: 67%;
    font-weight: 400;
    padding-bottom: 1.5rem;
  }

  .project1-image {
    height: 50vh;
  }
  .friend1,
  .friend2 {
    height: 40vh;
  }

  .hero-bottom {
      margin-bottom: 25rem; /* distance from bottom edge */
    }



  .please1 {
    display: none;
  }

  .please {
    display: none;
  }

  .please3 {
  display: block
}

.selected-works {
  font-size: 2.5rem;
    font-weight: 350;
    color: black;
    width: 90%;
    line-height: 1.2;
    padding-bottom: 1rem;
    padding-top: 15rem;
}

.universal-container {
    width: 60%;
    margin: 0 auto;
}
}


/* 📱 Tablets (768px–1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
 



  .friend {
    flex-direction: column;
    gap: 4vh;
  }

  .friend-block {
    width: 100%;
  }

  .friend1,
  .friend2 {
    height: 45vh;
  }
}

/* 📱 Mobile (max-width: 767px) */
@media (max-width: 767px) {

  html, body {
    overflow-x: hidden;
  }

  .please {
    display: none;
  }

  .please1 {
    display: block; /* or flex, grid, etc. depending on your layout */
  }

  .please3 {
  display: none;
}

  .header-inner {
    width: 88%;
  }

  .circle {
    width: 70px;
    height: 70px;
  }

  .view-text {
  font-size: 1.1rem;
  font-weight: 300;
}

.hero-top {
      margin-top: 18vh; /* moves tagline + subtext down */
    }


  nav ul {
  gap: 1rem;

}

.resume-btn {
  padding: 0.8rem 1rem;
}

.hero-bottom {
      margin-bottom: 7rem; /* distance from bottom edge */
    }

    #project1 {
  margin-top: -4rem;
}
  
  

  .hero-tagline {
    font-size: 2.2rem;
    width: 100%;
    line-height: 1.3;
    font-weight: 300;
  }

  .hero-subtext {
    font-size: .9rem;
    width: 100%;
  }


  /* Projects */
  .project1-image {
    height: 45vh;
    background: url('Assets/blah.png');
  background-size: cover;
  background-position: center;
  }

  .friend1 {
    background: url('Assets/mobile2.png');
    background-size: cover;
  background-position: center;
  }

  .friend2 {
    background: url('Assets/mobile3.png');
    background-size: cover;
  background-position: center;
  }



  .friend {
    flex-direction: column;
    gap: 4.3rem;
  }

  .friend-block {
    width: 100%;
  }

  .friend1,
  .friend2 {
    height: 45vh;
  }

  .project1-title {
    font-size: 1rem;
  }

  .project1-des {
    font-size: .9rem;
    padding-top: .1rem;
  }

  #hero {
  height: 100vh; /* full viewport height */
  display: flex;
  flex-direction: column;

}

  #problem {
  margin-top: 8.5vh;
}

.hover-circle {
  width: 55px;
  height: 55px;
  top: 1.3rem;
  right: 1.3rem;
}

.status-pill {
  top: 1rem;
  left: 1rem;
}

.status-text {
  font-size: 0.7rem;
}

  .footer-inner {
    flex-direction: column;   /* stack vertically */
    align-items: center;      /* center horizontally */
    text-align: center;
    gap: 1rem;                /* spacing between elements */
  }

  /* 👇 Move LinkedIn icon to appear first */
  .footer-linkedin {
    order: -1;
  }

  .footer-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .footer-divider {
    margin-bottom: 1.2rem;
  }


}

















