* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}

/* Base page styles */
body {
  margin: 0;
  background-color: #18181b;
  color: white;
  font-family: Inter, serif;
}

main {
  max-width: 1000px;
  margin: 0 auto;
}

section {
  padding: 80px 20px;
}


.top-nav {
  display: flex;
  justify-content: center;
  padding: 16px 0;
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 70px;
  list-style: none;
  padding: 10px 22px;
  margin: 0;

  /* floating glass style */
  background: rgba(24, 24, 27, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow:
  0 0 12px rgba(0,212,146,0.25),
  0 8px 30px rgba(0,0,0,0.4);
}

/* Nav links */
.nav-links a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 20px;
  font-weight: 300;
  transition: 0.2s;

}

/* Hover */
.nav-links a:hover {
  color: #00d492;
}


.hero {
  text-align: center;
  padding: 120px 20px 90px;
}

/* make span behave like a block so it can rotate */
.inline-block {
  display: inline-block;
}

/* delay before animation starts */
.delay-1000 {
  animation-delay: 2s;
}

/* wave animation */
.animate-wave {
  animation: wave 2s infinite;
  transform-origin: 70% 70%;
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(14deg);
  }

  20% {
    transform: rotate(-8deg);
  }

  30% {
    transform: rotate(14deg);
  }

  40% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.hero--minimal {
  min-height: 100vh;
  display: grid;
  place-content: center;
  padding: 0 20px;
}



.hero-name {
  margin: 0;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #00d492;
}

.hero-role-min {
  margin: 6px 0 0;
  font-size: 20px;
  font-weight: 600;
  color: #e5e7eb;
}

/* Subtitle text under hero */
.hero-subtitle {
  margin: 10px auto 0;
  max-width: 720px;
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.7;
}

/* Hero buttons row */
.hero-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons (reusable) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.15s ease;
}

/* Outline button */
.btn-outline {
  border: 1px solid white;
  color: white;
  background: transparent;
}

/* “Solid” soft button */
.btn-solid {
  border: 1px solid white;
  color: white;
}

.btn-solid:hover,
.btn-outline:hover {
  transform: translateY(-1px);
}


.btn:hover {
  transform: translateY(-1px);
  background-color: #00d492;
  border-color: #00d492;
  color: #0f172a;
  /* optional: makes text pop */
}



/* Social links container */
.view-projects-socials ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
}



/* Social links */
.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
}

/* Hover effect on socials */
.socials a:hover {
  color: #3b82f6;
  transform: translateY(-2px);
}


.about {
  padding: 80px 20px;
}

/* About header title */
.about-header h2 {
  margin: 0;
  font-size: 40px;
}

/* Blue underline under section titles */
.about-header .underline {
  width: 90px;
  height: 4px;
  background-color: #00d492;
  border-radius: 10px;
}

/* About paragraph text */
.about p {
  color: #94a3b8;
  line-height: 1.7;
}

/* Layout: left content + right profile card */
.about-layout {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

/* Left side stack */
.about-left {
  display: grid;
  gap: 18px;
}

/* Profile card column */
.profile-card {
  justify-self: center;
  width: 100%;
  max-width: 320px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

/* Profile image */
.profile-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Tighten spacing under the photo */
.profile-name {
  margin: 10px 0 2px;
  font-size: 20px;
  font-weight: 300;
}

.profile-tagline {
  margin: 0 0 6px;
  line-height: 1.4;
  color: #94a3b8;
  font-size: 13px;
}

.resume-btn {
  margin-top: 4px;
  font-size: 14px;
  color: white;
  text-decoration: none;
  padding: 8px;
  background-color: #00d492;
  border-radius: 5px;
}

/* Education + Experience side-by-side */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Shared card style */
.about-card {
  padding: 18px;
}

.about-card h3 {
  margin: 0;
  color: #00d492;
  font-size: 20px;
  font-weight: 700;
}

/* Title row with icon */
.card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

/* Small icon box */
.card-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* Education/experience item spacing */
.edu-item,
.exp-item {
  margin-top: 16px;
}

/* Degree/job title */
.edu-degree,
.exp-role {
  font-size: 18px;
  color: #e5e7eb;
  line-height: 1.3;
}

/* School/company + dates */
.edu-school,
.edu-dates,
.exp-company,
.exp-dates {
  margin-top: 4px;
  font-size: 14px;
  color: #94a3b8;
}

/* 
   PROJECTS
*/

.section-header h2 {
  margin: 0;
  font-size: 40px;
}

.section-header .underline {
  width: 90px;
  height: 4px;
  background-color: #00d492;
  border-radius: 10px;
}

.projects-grid {
  margin-top: 35px;
  display: grid;
  gap: 18px;
}

/* ================= PROJECTS ================= */

.projects-grid {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 2 cards side-by-side */
  gap: 18px;
}

/* Card */
.project-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.project-card:hover {
  transform: translateY(-4px);
}

/* Top preview area */
.project-media {
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-media-placeholder {
  height: 190px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.03);
  color: #94a3b8;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* If you use a real image later */
.project-media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

/* Card content */
.project-body {
  padding: 16px;
}

.project-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.project-title {
  margin: 0;
  font-size: 18px;
  color: #e5e7eb;
}

.project-links {
  display: flex;
  gap: 10px;
}

.project-link {
  font-size: 13px;
  text-decoration: none;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 6px 10px;
  border-radius: 10px;
  transition: 0.15s;
}

.project-link:hover {
  color: #18181b;
  background: #00d492;
  border-color: #00d492;
}

/* Description */
.project-desc {
  margin: 10px 0 12px;
  color: #94a3b8;
  line-height: 1.6;
  font-size: 14px;
}

/* Tech chips */
.project-tech {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tech li {
  font-size: 12px;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 10px;
  border-radius: 999px;
}

.project-media-placeholder img {
  width: 100%;
  height: 190px;
  /* object-fit: cover; */
  display: block;

}


/* ================= SKILLS ================= */
.skills-grid {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.skills-card {
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.skills-card h3 {
  margin: 0 0 14px;
  color: #00d492;
  font-size: 18px;
}

/* pill layout */
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* each skill pill */
.skills-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #e5e7eb;
}

/* icons */
.skills-list img {
  width: 16px;
  height: 16px;
}


/* ================= CONTACT ================= */

/* CONTACT SECTION */


.contact-text {
  color: #94a3b8;
  margin-top: 20px;
  margin-bottom: 30px;
}

/* ICON ROW */
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 22px;
}

/* ICON STYLE */
.contact-icons img {
  width: 50px;
  height: 50px;
  filter: brightness(0.9);
  transition: 0.2s ease;
}

.contact-icons img:hover {
  transform: translateY(-4px);
  filter: brightness(1.3);
}

