/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #000;
  color: white;
  overflow-x: hidden;
}

/* ⭐ STAR BACKGROUND */
.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://i.ibb.co/0jqHvXw/stars-bg.png');
  background-size: cover;
  z-index: -1;
  opacity: 0.25;
}

/* ⭐ NAVBAR */
header {
  width: 100%;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  backdrop-filter: blur(8px);
  z-index: 100;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.logo span {
  color: #2dd4ff;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #9ab7d4;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: white;
}

.resume-btn {
  padding: 10px 22px;
  background: linear-gradient(90deg, #0077ff, #02d9a7);
  border-radius: 6px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

/* ⭐ HERO SECTION */
.hero {
  text-align: center;
  padding-top: 180px;
}

.hero h1 {
  font-size: 72px;
  font-weight: 800;
}

.hero h2 {
  font-size: 72px;
  font-weight: 800;
  margin-top: -10px;
  display: inline-block;
  transform: rotate(-5deg);
  background: #265ecf;
  padding: 0 18px;
  border-radius: 8px;
}

.hero p {
  margin-top: 20px;
  font-size: 20px;
  color: #8db2d2;
}

/* BUTTONS */
.btn-group {
  margin-top: 40px;
}

.primary-btn {
  padding: 12px 28px;
  background: #0077ff;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  margin-right: 15px;
}

.outline-btn {
  padding: 12px 28px;
  border: 2px solid #0077ff;
  border-radius: 8px;
  color: #0077ff;
  text-decoration: none;
  font-weight: 600;
}

.info {
  margin-top: 40px;
  color: #9ab7d4;
}

.down-arrow {
  margin-top: 40px;
  font-size: 28px;
  color: #2dd4ff;
  animation: bounce 1.2s infinite;
}

/* BOUNCE ANIMATION */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  header {
    padding: 15px 35px;
  }
  
  nav {
    display: none;
  }

  .hero h1,
  .hero h2 {
    font-size: 48px;
  }

  .hero p {
    font-size: 16px;
  }
}
