body, .hero-section { margin: 0; padding: 0; }
.hero-section {
  background: url('../img/hero-bg.png') center/cover no-repeat;
  height: 70vh;
}
.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid #fff;
  object-fit: cover;
}
.skill-card {
  background: #fff;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}
main { scroll-behavior: smooth; }

.navbar .btn {
  transition: all 0.3s ease;
}
.navbar .btn:hover {
  transform: scale(1.05);
}

/* Apply Fira Sans globally */
body, h1, h2, h3, h4, h5, h6, p, a, button {
  font-family: 'Fira Sans', sans-serif !important;
}

/* Headings */
h1, h2, h3 {
  font-weight: 700;
  color: #306998;  /* Python blue */
}

/* Paragraph and text */
p, .lead {
  font-weight: 400;
  color: #4B4B4B;
  font-size: 1.05rem;
}

/* Navbar brand */
.navbar-brand {
  font-size: 1.3rem;
  color: #3776AB;
}

/* Buttons */
.btn-outline-primary {
  border-color: #3776AB;
  color: #3776AB;
}
.btn-outline-primary:hover {
  background-color: #3776AB;
  color: #fff;
}
.btn-primary {
  background-color: #FFD43B;
  border: none;
  color: #000;
}
.btn-primary:hover {
  background-color: #f2c500;
}

/* Footer */
footer {
  font-size: 0.9rem;
  color: #777;
}

#socials .btn {
  transition: all 0.3s ease-in-out;
}
#socials .btn:hover {
  transform: scale(1.05);
}