@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* ==========================================================================
   BASE
   ========================================================================== */
/* ========================= RESET ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

:focus:not(:focus-visible) {
  outline: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

/* ========================= BASE ========================= */
:root {
  --bs-primary: #3b82f6;
  --bs-primary-rgb: 59, 130, 246;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  background-color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}

::selection {
  background-color: rgba(59, 130, 246, 0.2);
  color: inherit;
}

:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
}

/* ========================= TYPOGRAPHY ========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 600;
}

.font-logo {
  font-family: "Bebas Neue", sans-serif;
}

.text-primary {
  color: var(--bs-primary) !important;
}

/* ==========================================================================
   COMPONENTS
========================================================================== */
/* ========================= CARDS ========================= */
.category-card {
  transition: all 0.3s ease;
  display: block;
}
.category-card:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.trainer-card {
  transition: box-shadow 0.3s ease;
}
.trainer-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* ========================= BUTTONS ========================= */
.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.btn-primary:hover {
  background-color: #2563eb;
  border-color: #2563eb;
}

.bg-primary {
  background-color: var(--bs-primary) !important;
}

/* ========================= FORMS ========================= */
.form-range::-webkit-slider-thumb {
  background-color: var(--bs-primary);
}
.form-range::-moz-range-thumb {
  background-color: var(--bs-primary);
  border: none;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ==========================================================================
                               LAYOUTS
========================================================================== */
/* ========================= HERO ========================= */
.hero-bg {
  background-image: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0.9), transparent);
}

.position-sticky-custom {
  position: sticky;
  top: 6rem;
}

/* ========================= PROFILES ========================= */
.profile-header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/01.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 4rem 0;
  margin-bottom: 2rem;
}

.profile-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 5px solid white;
}

.badge-custom {
  background-color: #0d6efd;
  color: white;
}

.social-icon {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #0d6efd;
}

.section-title {
  border-bottom: 2px solid #0d6efd;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.skill-item {
  margin-bottom: 15px;
}

.progress {
  height: 10px;
}