@charset "UTF-8";

/* ==========================================================================
   Custom Variables & Bootstrap 5 Theme Overrides
   ========================================================================== */
:root {
  --bs-primary: #006aff;
  --bs-primary-rgb: 0, 106, 255;
  --bs-link-color: #006aff;
  --bs-link-hover-color: #0056cc;
}

.btn-primary {
  --bs-btn-bg: #006aff;
  --bs-btn-border-color: #006aff;
  --bs-btn-hover-bg: #0056cc;
  --bs-btn-hover-border-color: #0050bd;
  --bs-btn-focus-shadow-rgb: 0, 106, 255;
  --bs-btn-active-bg: #0050bd;
  --bs-btn-active-border-color: #0046a6;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
#hero {
  padding-top: clamp(2.5rem, 7vw, 4.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

#hero .bio-photo {
  border-radius: 50%;
  border: 12px solid #dee2e6;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

#hero h1 {
  text-align: center;
}

@media (min-width: 768px) {
  #hero h1 {
    text-align: left;
  }
}

/* ==========================================================================
   What I Do Section
   ========================================================================== */
#whatIDo .card-header {
  background-color: #006aff;
  color: #ffffff;
}

#whatIDo ul {
  list-style: none;
  padding-left: 3.5rem;
  margin-bottom: 0;
}

#whatIDo ul li {
  position: relative;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

#whatIDo ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.15rem;
  left: -3.25rem;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#whatIDo ul li.icon-build::before {
  background-image: url('/assets/images/tools-solid.svg');
}

#whatIDo ul li.icon-consult::before {
  background-image: url('/assets/images/comments-solid.svg');
}

#whatIDo ul li.icon-develop::before {
  background-image: url('/assets/images/code-solid.svg');
}

#whatIDo ul li.icon-wordpress::before {
  background-image: url('/assets/images/wordpress-brands.svg');
}

#whatIDo ul li.icon-collab::before {
  background-image: url('/assets/images/hands-helping-solid.svg');
}

#whatIDo ul li:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Action Buttons
   ========================================================================== */
.action-btn {
  font-weight: 500;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 106, 255, 0.25);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
#testimonials {
  padding: 3rem 1.5rem 2rem;
  background: #e9ecef;
  border-radius: 0.5rem;
}

#testimonials hr {
  margin: 1rem auto;
  width: 60%;
  border-color: #343a40;
  opacity: 0.3;
}

#testimonialSlider .carousel-item {
  padding: 1rem 10% 1.5rem;
  text-align: center;
}

#testimonialSlider .carousel-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

#testimonialSlider .carousel-item cite {
  font-style: normal;
  color: #495057;
  font-weight: 500;
}

#testimonialSlider .carousel-control-prev-icon,
#testimonialSlider .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  color: #6c757d;
  padding: 2.5rem 0 1.5rem;
}
