/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL */
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #020617;
  color: #e5e7eb;
}

/* HERO SECTION */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12%;
  gap: 80px;
}

/* HERO CONTENT */
.hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 0.95rem;
  font-weight: 600;
  color: #38bdf8;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.hero-name {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-role {
  font-size: 1.5rem;
  color: #94a3b8;
  margin-bottom: 28px;
}

.hero-role span {
  margin: 0 8px;
  color: #475569;
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5f5;
  margin-bottom: 36px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 18px;
}

.btn {
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn.primary {
  background-color: #38bdf8;
  color: #020617;
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(56, 189, 248, 0.35);
}

.btn.secondary {
  border: 2px solid #38bdf8;
  color: #38bdf8;
}

.btn.secondary:hover {
  background-color: #38bdf8;
  color: #020617;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  width: 360px;
  height: 360px;
  flex-shrink: 0;
}

.gradient-orb {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #38bdf8, transparent 60%);
  filter: blur(70px);
  animation: float 7s ease-in-out infinite;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle, black 45%, transparent 75%);
}

/* FLOAT ANIMATION */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-25px); }
  100% { transform: translateY(0); }
}

/* MOBILE FIX */
@media (max-width: 900px) {
  #hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 8%;
    gap: 60px;
  }

  .hero-name {
    font-size: 3rem;
  }

  .hero-buttons {
    justify-content: center;
  }
}
/* HERO IMAGE */
.hero-visual {
  width: 520px;
  height: auto;
  opacity: 0;
  transform: translateX(80px);
  animation: slideInRight 1s ease-out forwards;
  animation-delay: 0.3s;
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* SLIDE IN FROM RIGHT */
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.projects-page {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
}

.projects-page h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.project-card {
  background: #111;
  padding: 25px;
  border-radius: 16px;
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.project-card h3 {
  margin-bottom: 8px;
}
/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.nav-links a {
  margin-left: 25px;
  color: white;
  text-decoration: none;
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
}
#hero {
  padding-top: 100px;
}

/* ABOUT PAGE */
.about-page {
    padding: 120px 10%;
    min-height: 100vh;
}

.about-container {
    max-width: 800px;
}

.about-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e6e6e6;
}
