body {
  background: #fff;
  color: #2d2d2d;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Navbar adjustments */
.navbar-peach {
  background: #db7093 !important;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 1030;
}
.navbar-peach .navbar-brand,
.navbar-peach .nav-link {
  color: #fff !important;
  font-weight: 600;
  font-size: 1.16rem;
  letter-spacing: 0.5px;
}
.navbar-peach .nav-link:hover,
.navbar-peach .navbar-brand:hover {
  color: #ffd6df !important;
}

/* --- Burger menu color override --- */
.navbar-toggler {
  border-color: #ffd6df !important;
  background: transparent !important;
  outline: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='rgba(255,214,223, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}

/* Divider between links */
.nav-separator {
  display: inline-block;
  width: 2px;
  height: 22px;
  background: #ffd6df;
  margin: 0 14px;
  border-radius: 3px;
  vertical-align: middle;
}

/* Main container for the profile section */
.profile-container {
  max-width: 950px;
  margin: 0 auto;
  padding: 2.2rem 20px 2.2rem 20px;
}

/* Main section as a row: image/info left, bio right */
.main-section {
  background: #fff;
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 26px;
}

/* Profile photo and info column */
.profile-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #ffd6df;
  background: #fff;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 10px #f6c0d1aa;
}

.fw-bold {
  font-size: 1.75rem;
}

.profile-title {
  font-size: 1rem;
  font-weight: 400;
  color: #bb849b;
  margin-bottom: 0.12rem;
}

.profile-org {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.icon-links {
  margin-top: 0.6rem;
}

.icon-link {
  font-size: 1.35rem;
  color: #db7093;
  background: #ffe4ec;
  border-radius: 12px;
  padding: 10px 15px;
  margin: 0 6px;
  display: inline-block;
  transition: background 0.18s, color 0.18s, transform 0.15s;
  box-shadow: 0 2px 12px #ffd6df33;
}

.icon-link:hover {
  color: #fff;
  background: #db7093;
  transform: scale(1.12);
  text-decoration: none;
}

/* Right (bio) column */
.bio-title {
  font-weight: 700;
  color: #db7093;
  font-size: 1.6rem;
  margin-bottom: 0.48rem;
}

.bio-text {
  margin-bottom: 0.62rem;
  font-size: 1.04rem;
}

.btn-outline-peach {
  border: 2px solid #db7093;
  color: #db7093;
  background: #fff;
  border-radius: 10px;
  font-weight: 500;
  padding: 10px 28px;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px #ffd6df22;
  margin-top: 0.7rem;
  margin-left: 0;
}

.btn-outline-peach:hover,
.btn-outline-peach:focus {
  background: #db7093;
  color: #fff;
  border-color: #db7093;
  text-decoration: none;
}

.text-peach {
  color: #db7093 !important;
  text-decoration: underline;
  transition: color 0.16s;
}
.text-peach:hover {
  color: #c06082 !important;
}

/* Bootstrap gutter override for tighter columns */
.row.gx-4 {
  --bs-gutter-x: 1.25rem;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .profile-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 1.3rem 16px 1.3rem 16px;
  }
  .main-section {
    gap: 22px;
  }
  .profile-img {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 991px) {
  .main-section {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .profile-img {
    width: 110px;
    height: 110px;
    margin-bottom: 1rem;
  }
  .bio-title {
    font-size: 1.05rem;
  }
  .btn-outline-peach {
    padding: 8px 18px;
    font-size: 0.98rem;
  }
  .icon-link {
    font-size: 1.15rem;
    padding: 8px 12px;
    margin: 0 4px;
  }
}

/* Mobile-specific adjustments */
@media (max-width: 600px) {
  .profile-container {
    padding: 1.1rem 6px 1.1rem 6px;
  }
  .profile-img {
    width: 130px;
    height: 130px;
    margin-bottom: 0.9rem;
  }
  .bio-title {
    font-size: 1.25rem;
  }
  .icon-links {
    margin-top: 0.38rem;
  }
  .icon-link {
    font-size: 1.1rem;
    padding: 7px 12px;
    margin: 0 4px;
  }
}

/* Remove blue outline on buttons in some browsers */
.btn:focus,
.btn:active {
  outline: none !important;
  box-shadow: none !important;
}

/* Project Section */
.project-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px #ffd6df33;
  border: 1px solid #ffe4ec;
  transition: box-shadow 0.19s;
}
.project-card:hover {
  box-shadow: 0 6px 20px #db709355;
}
.card-title {
  font-weight: 700;
  color: #db7093;
  margin-bottom: 0.65rem;
}
.card-text {
  font-size: 0.98rem;
  color: #595959;
}
.btn-outline-peach {
  margin-top: 0.6rem;
}
.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #db7093;
}

.tech-row {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tech-pill {
  background: #eae9e9;
  color: #1c1c1c;
  border-radius: 8px;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-block;
  letter-spacing: 0.03em;
}


