.hero-section {
    margin-top: 0;
    padding: 120px 0 80px 0; /* top space for navbar */
}

.hero-section {
  position: relative;
  padding: 6rem 0;
  color: #ffffff;

  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.40),
      rgba(0, 0, 0, 0.40)
    ),
    url("../assets/img/hero-it-running.png");

  background-size: cover;
  background-position: 80% center;
  background-repeat: no-repeat;
  min-height: 700px;

  display: flex;
  align-items: center;
}

.hero-section h1,
.hero-section h2 {
  color: #ffffff;
}

.hero-section h1,
.hero-section h2,
.hero-section p,
.hero-section .lead {
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.profile-image {
  max-width: 220px;
  border: 6px solid rgba(255,255,255,0.9);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: #f8f9fa;
}

.section-title {
  margin-bottom: 2rem;
  font-weight: 700;
}

.experience-item {
  margin-bottom: 2rem;
}

.language-switcher button {
  margin-left: 0.25rem;
}

.footer {
  padding: 1.5rem 0;
  background-color: #212529;
  color: #ffffff;
}
#personality img {
  display: block;
  margin: 0 auto;
}
#personality .btn {
  margin-top: 1rem;
}
#projectsCarousel {
  position: relative;
}

#experience .card {
  border-radius: 16px;
  height: 100%;
  box-shadow: none !important; /* removes shadow-sm too */
}

#experience .card-body {
  padding: 1.5rem;
}

.navbar {
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(12px);
    transition: all .3s ease;
}

#projectsCarousel {
    padding-bottom: 50px;
}

#projectsCarousel .card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    min-height: 260px;
}

#projectsCarousel .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

#projectsCarousel .card-body {
    display: flex;
    flex-direction: column;
}

#projectsCarousel h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

#projectsCarousel .carousel-control-prev,
#projectsCarousel .carousel-control-next {
    filter: invert(1);
    width: 5%;
}
.contact-card {
    max-width: 800px;
    margin: auto;
    border: none;
    border-radius: 20px;
    padding: 2rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;

    padding: 1rem;

    border-radius: 12px;
    text-decoration: none;
    color: inherit;

    transition: all .3s ease;
}

.contact-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 2rem;
    color: #0A66C2;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    font-size: 1rem;
}

.contact-item span {
    color: #6c757d;
}
`