/* Custom styles for innovative dark-mode look */
body {
  /* background: #0d1117; */
  background-image: url('ChatGPT Image Aug 7, 2025, 07_29_42 PM.png');
  color: #e6edf3;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar-brand,
.nav-link {
  transition: all 0.3s ease;
  color: #58a6ff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.navbar-brand:hover,
.nav-link:hover {
  text-shadow: 0 0 10px #58a6ff, 0 0 20px #58a6ff;
  color: #58a6ff !important;
}

.section {
  padding: 60px 0;
}

.hero {
  margin-top: 2rem;
  background-color: rgb(22, 27, 34);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.hero-glass {
  background: rgba(22, 27, 34, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  margin-top: 6rem;
  padding: 40px;
}

.lead {
  font-style: italic;
}

.profile-photo {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border: 3px solid #58a6ff;
  box-shadow: 0 0 15px rgba(88, 166, 255, 0.3);
}

.skills-grid .skill-btn {
  padding: 10px 20px;
  border-radius: 25px;
  background: #58a6ff;
  color: #0d1117;
  font-weight: 600;
  transition: all 0.3s ease;
}

.skills-grid .skill-btn:hover {
  background: #4791db;
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(88, 166, 255, 0.5);
  cursor: default;
}

.project-card {
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(88, 166, 255, 0.3);
}

.contact-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(88, 166, 255, 0.5);
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 20px;
  }
  .profile-photo {
    width: 150px;
    height: 150px;
  }
  .skills-grid .skill-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  .project-card:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 480px) {
  .profile-photo {
    width: 120px;
    height: 120px;
  }
  .skills-grid .skill-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  .contact-btn {
    width: 45px;
    height: 45px;
  }
}
