/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Newake';
  src: url('fonts/Newake-Font-Demo.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

html, body {
  height: 100%;
  font-family: 'Newake', sans-serif;
  color: white;
  overflow: auto;
  scroll-behavior: smooth;
}

/* Ensuring Newake is used globally */
body, h1, h2, h3, h4, h5, h6, p, a, li, button, input, textarea {
  font-family: 'Newake', sans-serif;
}

body.sub-page,
html.sub-page {
overflow: auto;
}

body.main-home,
html.main-home {
overflow: hidden;
}

.snap-container {
  height: 100vh;
  overflow-y: unset;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scroll-snap-align: start;
height: 100vh; /* Ensures full screen section */
}

.main-home .snap-container {
scroll-snap-type: y mandatory;
}


/* Background video and overlay */
#bg-video {
  width: 120vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: -10vw;
  z-index: -2;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("../images/web gradient.png");
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  z-index: -1;
  pointer-events: none;
}

/* Header (restored original look) */
.header {
  position: absolute;
  top: 2rem;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  z-index: 1000;
  background: transparent;
}

.header ul {
  list-style: none;
  display: flex;
  gap: 20rem;
}

.header a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 1rem 3rem;
  font-size: 1.5rem;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}

.header a:hover {
  background-image: url("../images/web gradient.png");
  background-size: cover;
  background-position: center;
  color: rgb(255, 255, 255);
}

.bio-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;  /* Centers the entire content group horizontally */
  padding: 60px 40px;
  color: white;
  background-color: transparent;
  position: relative;
  z-index: 1;
  scroll-snap-align: start;
  gap: 60px; /* Added a wider gap between columns for balance */
  text-align: left;
}


.bio-text {
  max-width: 600px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.name-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.role-subtitle {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.bio-paragraph {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 400;
}

.bio-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 300px;
}



.bio-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.resume-button {
  padding: 0.7rem 1.5rem;
  background-color: white;
  color: black;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0;
  text-align: center;
}

.resume-button:hover {
  background-color: black;
  color: white;
  transform: scale(1.05);
}


/* Responsive Layout */
@media (max-width: 900px) {
  .bio-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .bio-text {
    max-width: 100%;
  }

  .bio-image-wrapper {
    margin-top: 2rem;
  }
}


/* Worked With Logos */
.worked-with-section {
  padding: 4rem 2rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  color: white;
}
.worked-with-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 2rem;
}
.worked-with-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  justify-items: center;
  align-items: center;
}
.worked-with-grid img {
  max-width: 100px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.worked-with-grid img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* Stats + Awards */
.stats-section {
  padding: 6rem 2rem;
  text-align: center;
}
.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-image {
  max-width: 500px;
  width: 100%;
  height: auto;
}
.stats-text {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 400;
}
.stats-and-awards {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.stats-and-awards-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 2rem;
}
.awards-heading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.awards-list {
  list-style: none;
  padding: 0;
}
.awards-list li {
  margin-bottom: 0.5rem;
  font-size: 18px;
}
.awards-list a {
  color: white;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.awards-list a:hover {
  color: #ccc;
}

/* Footer */
.footer {
  width: 100%;
  background: rgba(0, 0, 0, 0);
  color: white;
  padding: 20px 40px;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
  z-index: 10;
}
.footer:hover {
  background: rgba(0, 0, 0, 0.7);
}
.footer-buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
  .footer-buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.icon-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-icon {
  width: 24px;
  height: 24px;
}
.reach-out-btn {
  background: none;
  border: 2px solid white;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  font-family: inherit;
  font-size: 14px;
  transition: background 0.3s, color 0.3s;
}
.reach-out-btn:hover {
  background: white;
  color: black;
}
.icon-buttons p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  white-space: nowrap;
  text-align: center;
}

/* Responsive */
@media (max-width: 1200px) {
  .bio-section {
    flex-direction: column;
    text-align: center;
  }
  .bio-image-wrapper {
    margin: 0 0 20px 0;
  }
  .name-title {
    font-size: 48px;
  }
  .role-subtitle {
    font-size: 24px;
  }
  .bio-paragraph {
    font-size: 18px;
  }
  .worked-with-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Chrome, Edge, and Safari */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: transparent; /* dark grey */
}

::-webkit-scrollbar-thumb {
  background-color: #ffffff; /* medium grey */
  border-radius: 6px;
  border: 3px solid transparent; /* creates padding around thumb */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #777; /* lighter grey on hover */
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #ffffff transparent;
}

/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(20, 20, 20, 0.9);
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  z-index: 9999;
}


.footer.show-footer {
  transform: translateY(0);
}

.hidden-footer {
  transform: translateY(100%);
}

.glass-card-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 60px 30px rgba(255, 255, 255, 0.3); /* NOTE: reduced opacity */
  border-radius: 0; /* remove corner rounding for full section */
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.glass-card-section::before,
.glass-card-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.glass-card-section::before {
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.glass-card-section::after {
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
}

.stats-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  color: white;
  padding: 2rem;
  position: relative;
  scroll-snap-align: start;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.stat-column {
  max-width: 300px;
}

.stat-number {
  font-size: 64px;
  font-weight: 800;
  margin: 0;
}

.stat-label {
  font-size: 28px;
  font-weight: 500;
  margin: 5px 0;
  line-height: 1.4;
}

.stat-image {
  margin-top: 1rem;
  max-width: 100%;
  height: auto;
}

.awards-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.awards-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}

.awards-list li {
  margin: 0.5rem 0;
}

.awards-list a {
  color: white;
  text-decoration: none;
}

.laurel {
  width: 80px;
  height: auto;
}


html, body {
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
scroll-behavior: smooth;
}

.snap-container {
height: 100vh;
overflow-y: scroll;
scroll-snap-type: y mandatory;
}

.snap-section {
scroll-snap-align: start;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
