* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background-color: #0f172a;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAVIGATION */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 8%;
  background: rgba(15,23,42,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
  font-weight: 600;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  transition: 0.3s ease;
}

nav a:hover {
  color: #60a5fa; /* subtle blue accent */
}

/* HERO SECTION */
.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  max-width: 900px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 520px;
}

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

.btn-primary {
  padding: 13px 30px;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.btn-secondary {
  padding: 13px 30px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  border-color: #60a5fa;
  color: #60a5fa;
  transform: translateY(-2px);
}

/* RESUME SECTION */
.resume-section {
  padding: 140px 8% 80px 8%;
  max-width: 900px;
}

.resume-header {
  margin-bottom: 70px;
}

.resume-container h1 {
  font-size: 52px;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.subtitle {
  color: rgba(255,255,255,0.6);
  margin-bottom: 60px;
}

.resume-block {
  margin-bottom: 60px;
}

.resume-block h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #60a5fa;
}

.resume-item {
  margin-bottom: 15px;
}

.resume-title {
  font-weight: 600;
  font-size: 18px;
}

.resume-meta {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin-bottom: 10px;
}

.resume-block ul {
  padding-left: 18px;
}

.resume-block li {
  margin-bottom: 6px;
  color: rgba(255,255,255,0.75);
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skills span {
  padding: 8px 14px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 6px;
  font-size: 14px;
  color: #93c5fd;
}

.download-area {
  margin-top: 60px;
}
.work-placeholder {
  padding: 140px 8% 80px 8%;
  min-height: 100vh;
}

.work-container {
  max-width: 900px;
}

.work-container h1 {
  font-size: 52px;
  margin-bottom: 20px;
}

.work-subtext {
  color: rgba(255,255,255,0.6);
  margin-bottom: 60px;
  max-width: 550px;
}

.coming-soon-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  transition: 0.3s ease;
}

.coming-soon-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96,165,250,0.4);
}

.card-line {
  width: 40px;
  height: 3px;
  background: #60a5fa;
  margin-bottom: 15px;
}

.coming-soon-card h3 {
  margin-bottom: 10px;
}

.coming-soon-card p {
  color: rgba(255,255,255,0.6);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .hero h1,
  .resume-container h1,
  .work-container h1 {
    font-size: 36px;
  }

  .hero p,
  .work-subtext {
    font-size: 16px;
  }

  nav {
    padding: 16px 6%;
  }

  nav ul {
    gap: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

}
body::before {
  content: "";
  position: fixed;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 60%);
  filter: blur(100px);
  z-index: -1;
}
.preview-section {
  padding: 100px 8%;
}

.preview-container {
  max-width: 900px;
}

.preview-container h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.preview-container p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}

.preview-box {
  height: 400px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 18px;
}
