/* =====================
   RESET & BASE STYLES
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  background: #000;
  overflow-x: hidden;
}

/* =====================
   NAVBAR
===================== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  background: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(10px);
  padding: 12px 25px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #00aaff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00aaff;
  font-weight: 600;
}

/* =====================
   MENU ICON
===================== */
.menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #00aaff;
}

/* =====================
   HERO SECTION
===================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-text {
  flex: 1;
}

.hero-text .intro {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
}

.hero-text .highlight {
  color: #00aaff;
}

.cursor {
  color: #00aaff;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.hero-text .role {
  font-size: 2rem;
  color: #fff;
  margin: 15px 0;
}

.hero-text .location {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* BUTTONS */
.buttons {
  margin-top: 20px;
  display: flex;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 15px;
  transition: 0.3s;
}

.btn.primary {
  background: #00aaff;
  color: #000;
}

.btn.secondary {
  border: 2px solid #00aaff;
  color: #00aaff;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0,170,255,0.7);
}

/* SOCIALS */
.socials {
  margin-top: 25px;
  display: flex;
  gap: 20px;
}

.socials a {
  font-size: 1.8rem;
  color: #ccc;
  transition: 0.3s;
}

.socials a:hover {
  color: #00aaff;
}

/* HERO IMAGE */
.hero-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-img img {
  background-color: #000;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 5px solid #00aaff;
  object-fit: contain; /* Changed from cover to contain for full visibility */
  box-shadow: 0 0 30px rgba(0,170,255,0.7);
  transition: 0.4s;
}

.hero-img img:hover {
  transform: scale(1.05) rotate(3deg);
}

/* SCROLL DOWN */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-down i {
  font-size: 2rem;
  color: #ccc;
  animation: bounce 2s infinite;
  transition: 0.3s;
}

.scroll-down i:hover {
  color: #00aaff;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ABOUT */
.about {
  padding: 80px 20px;
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  max-width: 900px;
  min-height: auto;
  margin: 100px auto;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: #00aaff;
}

.about p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ccc;
  line-height: 1.7;
}

/* =====================
   MOBILE RESPONSIVE
===================== */
@media (max-width: 768px) {
  .navbar {
    justify-content: space-between;
    padding: 10px 20px;
  }

  .menu-icon {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 200px;
    height: calc(100% - 60px);
    background: rgba(30, 30, 30, 0.95);
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 10px 0 0 10px;
    transition: right 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 99;
  }

  .nav-links.active {
    right: 0;
    opacity: 1;
  }

  .nav-links li {
    text-align: center;
    background: rgba(45, 55, 72, 0.8);
    border-radius: 5px;
    transition: background 0.3s ease;
  }

  .nav-links .desktop-only {
    display: none;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 10px;
    display: block;
    color: #fff;
  }

  .hero-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .hero-img {
    order: 2;
    margin-top: 30px;
  }

  .hero-img img {
    width: 200px;
    height: 200px;
    border: 4px solid #00aaff;
    object-fit: contain; /* Changed from cover to contain for mobile */
  }

  .buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
  }

  .buttons .btn {
    width: 100%;
    text-align: center;
  }

  .socials {
    justify-content: center;
    margin-top: 15px;
  }
}