* {
    border: 0;
    padding: 0;
    margin: 0;
font-size: 16px;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    width: 100vw;
}

/* ===== 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%;
}


/* === 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);
}

/* Hide by default on larger screens */
.mobile-only-label {
  display: none;
  font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.3;
    color: #FF595B;
    padding-bottom: .4rem;
    padding-top: 1.2rem;
}

/* Only show on mobile */
@media (max-width: 768px) {
  .mobile-only-label {
    display: block;
  }
}

/* Universal Container */

.universal-container {
    width: 88%;
    margin: 0 auto;
}

.poonkie {
  padding-top: 2.5rem;
}

/* Universal lines */

.section-divider {
  border: none;               /* remove the default 3D border */
  height: 1px;                /* thin line */
  width: 88%;                 /* line is 80% of its parent width (here, <section>) */
  background-color: #333;     /* choose your color */
  margin: 0 auto 1.3rem auto;   /* centers it horizontally + adds bottom spacing */
  opacity: 0.18;               /* optional: subtle look */
}

.section-divider2 {
  border: none;               /* remove the default 3D border */
  height: 1px;                /* thin line */
  width: 100%;                 /* line is 80% of its parent width (here, <section>) */
  background-color: #333;     /* choose your color */
  margin: 0 auto .6rem auto;   /* centers it horizontally + adds bottom spacing */
  opacity: 0.18;                /* optional: subtle look */
}

.section-divider3 {
  border: none;               /* remove the default 3D border */
  height: 1px;                /* thin line */
  width: 100%;                 /* line is 80% of its parent width (here, <section>) */
  background-color: #333;     /* choose your color */
  margin: 0 auto .8rem auto;   /* centers it horizontally + adds bottom spacing */
  opacity: 0.18;                /* optional: subtle look */
}


.category-details {
    padding-bottom: 1.2rem;

}

.category-details5 {
    padding-bottom: .7rem;
    padding-top: 1.5rem;
    color: #FF595B;
    font-weight: 400;
    font-size: 1.1rem;
}

.category-details7 {
    padding-bottom: .9rem;
    padding-top: 1.5rem;
}

.category-details9 {
    padding-bottom: .9rem;
    padding-top: .3rem;
}


/* Universal Text */

.greytext {
    color: #6e6e6e;
    font-size: 1rem;
    font-weight: 280;
    line-height: 1.5;
}

.humble {
  color: #6e6e6e;
  font-size: 1rem;
    font-weight: 280;
    line-height: 1.5;
}

.blacktext {
    color: black;
    font-size: 1rem;
    font-weight: 350;
    line-height: 1.4;
}

.bold {
    font-weight: 400;
    color: black;
}

.category {
    font-size: 3rem;
    font-weight: 300;
    color: black;
    width: 90%;
    line-height: 1.2;
}

.big-statement {
    color: black;
    font-size: 1.5rem;
    font-weight: 350;
    width: 90%;
    line-height: 1.4;
}

.big-statement-highlight {
    color: #FF595B;
    font-size: 1.5rem;
    font-weight: 350;
    line-height: 1.4;
}

.small-statement-highlight {
    color: #FF595B;
    font-size: 1rem;
    font-weight: 400;
}

/* Window of opportunity */

.space1 {
    padding-top: 5vh;
}

.space2 {
  padding-bottom: 1.7rem;
}

/* Hero */

#hero {
    padding-top: 21vh;
}

#hero2 {
    padding-top: 4vh;
}

/* Overview */



.info {
    padding-bottom: .1rem;
}

.diff {
    padding-bottom: .9rem;
}

.diff2 {
    padding-top: .4rem;
}

.diff3 {
    padding-top: .2rem;
    padding-bottom: .9rem;
}

.diff4 {
    padding-top: .2rem;
    padding-bottom: .1rem;
}

#problem {
    padding-top: 20vh;
}

#problem5 {
    padding-top: 12vh;
}

#problem7 {
    padding-top: 8vh;
}

#problem3 {
    padding-top: 16vh;
}

#problem9 {
    padding-top: 18vh;
}

#problem2 {
    padding-top: 16vh;
    padding-bottom: 5vh;
}


.hello {
    font-size: 3.8rem;
    font-weight: 400;
}

.hello7 {
    font-size: 1.7rem;
    font-weight: 300;
    color: #6e6e6e;
    line-height: 1.4;
    
}
.category2 {
    font-size: 1.6rem;
    font-weight: 300;
}


.info-title {
    padding-top: .2rem;
    padding-bottom: .8rem;
}

.info-title2 {
    padding-top: 1.5rem;
    width: 80%;
}

.info-title3 {
    padding-top: 2.5rem;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.3;
    color: #FF595B;
}

.info-title4 {
    padding-top: .2rem;
}


.potty {
  width: 100%;
  height: 73vh;
  border-radius: 22px;
  overflow: hidden; /* hides any overflow outside the rounded corners */
  background-color: #ffffff; /* fallback color while loading */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.7rem;
}

.potty video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes video behave like background-size: cover */
  border-radius: 22px;
}


.give {
  width: 100%;
  height: 73vh;
  border-radius: 22px;
  overflow: hidden; /* hides any overflow outside the rounded corners */
  background-color: #ffffff; /* fallback color while loading */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.give video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes video behave like background-size: cover */
  border-radius: 22px;
}

.class {
  height: 65vh;
}


.great {
    width: 100%; 
    display: flex;
}




.hero-banner {
  width: 100%;
  height: 85vh;
  overflow: hidden;
  position: relative;
  background: url('Assets/helloo.png') center/cover no-repeat;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.section {
    width: 100%; 
    display: flex;
    
}

.section7 {
    width: 100%; 
    display: flex;
    align-items: center;
}

.section-image {
    width: 50%;
}

.section-image2 {
    width: 50%;
}

.section-details {
    width: 50%;
}




/* ===== FOOTER ===== */
.site-footer {
  padding-bottom: 2rem;
  background: white; /* keep clean and consistent with site */
  margin-top: 22vh;
}

.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);
}










/* MOBILE */
@media (max-width: 768px) {

  .header-inner {
    width: 88%;
  }

  nav ul {
    gap: 1rem;
  }

  .resume-btn {
  padding: 0.8rem 1rem;
}

  .universal-container {
    width: 90%;
  }

  .section {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

   .section7 {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }

  .section-image,
  .section-details {
    width: 100%;
  }

  .section-image2 {
    padding-bottom: 1rem;
    width: 100%;
  }

  

  .hello {
    font-size: 3rem;
    font-weight: 450;
  }

  .hello7 {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .category {
    font-size: 2rem;
  }

  .big-statement {
    font-size: 1.3rem;
    padding-bottom: 1.5rem;
  }

    .big-statement-highlight {
    font-size: 1.3rem;
  }

  .category-details,
  .greytext,
  .blacktext {
    font-size: 0.95rem;
    line-height: 1.5;
  }



  .potty {
    height: 70vh;
    border-radius: 22px;
    margin-top: 0rem;
  }

  .class {
    height: 50vh;
  }

  .hero-banner {
    background: url('Assets/blah2.png') no-repeat;
    background-size: cover;
    background-position: center;
    height: 62vh;
  }

  .great {
    flex-direction: column;
  }

  hr.section-divider {
    width: 90%;
    margin: 0 auto .8rem auto; 
  }

  /* Reduce spacing between sections */
  #problem3 {
    padding-top: 14vh;
  }

#problem5 {
    padding-top: 10vh;
}

  #problem {
    padding-top: 16vh;
}

  #problem7 {
    padding-top:5vh;
}

#problem8 {
  padding-top: 0vh;
  padding-bottom: 3vh;
}

.info-title2 {
    padding-top: 2.5rem;
    width: 100%;
}

.info-title3 {
    padding-top: .4rem;
}

#problem9 {
  padding-top: 14vh;
}

#problem2 {
    padding-top: 16vh;
    padding-bottom: 2.5rem;
}

  #hero {
    padding-top: 15vh;
}

.tom {
  padding-bottom: 3rem;
}

.give {
  height: 60vh;
}

  .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;
  }
  
}




/* TABLET */

@media (min-width: 769px) and (max-width: 1200px) {
  .universal-container {
    width: 90%;
  }

  .section {
    flex-direction: row;
    gap: 3rem;
  }

  .section-image,
  .section-details {
    width: 50%;
  }

  .hello {
    font-size: 3rem;
  }

  .hello7 {
    font-size: 1.6rem;
  }

  .category {
    font-size: 2.4rem;
  }



  .potty {
    height: 55vh;
  }

  .hero-banner {
    height: 55vh;
  }


}



/* LARGE MONITOR */
@media (min-width: 1920px) {
  
  
  
  .universal-container {
    
    width: 60%;
  }

  .section-divider {
    width: 60%;
  }

  .section7 {
    align-items: middle; /* vertically center the two h1s */
}

  .hello {
    font-size: 4rem;
  }

  .hello7 {
    font-size: 2rem;
  }

  .category {
    font-size: 3.2rem;
    width: 80%;
  }

  .potty {
    height: 60vh;
  }

  .class {
    height: 45vh;
  }

  .hero-banner {
    height: 90vh;
  }

  #hero2 {
    padding-top: 2vh;
}

.big-statement {
    width: 80%;
}

#problem7 {
  padding-top: 5vh;
}

.give {
  height: 50vh;
}




}





