/* ----- universal ----- */

h1 {
    font-weight: 900;
    font-size: 50px;
}

h2 {
    font-weight: 900;
    font-size: 20px;
}

.btn-box {
    width: 150px;
}

a:link, a:visited, a strong {
    text-decoration: none;
}

.primary-btn {
    border: 1.5px solid #E91E63;
    color: #E91E63;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    height: 55px;
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* ----- end universal ----- */

/* ----- navbar ----- */

.navbar-brand {
    width: 80px;
}

.navbar-collapse {
    justify-content: flex-end;
}

.nav-item {
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 768px) {
    .btn-holder {
        display: none;
    }
}

/* ----- end navbar ----- */


/* ----- hero ----- */

.masthead {
    background-size: cover;
    height: 50vh;
    position: relative;
}

.color-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-banner {
    height: 50vh;
    position: relative;
    z-index: 2;
}

.image-holder {
    position: absolute;
    bottom: 4rem;
    left: 2rem;
    z-index: 3;
}

@media (max-width: 680px) {
    .masthead {
        min-height: 100vh;
    }
}

@media (min-width: 768px) {
    .masthead {
        min-height: 70vh;
    }
}

@media (min-width: 1024px) {
    .masthead {
        min-height: 70vh;
    }
}
    
/* ----- end hero ----- */


/* ----- feature ----- */

.feature {
    padding-top: 50px;
}

.feature-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.feature-item:hover .feature-icon {
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.text-muted-foreground {
    color: #6c757d;
}

/* ----- end feature ----- */


/* ----- content ----- */

.content-name {
    background-color: #1a1a1a;
    height: 35px;
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
}

.play-icon {
    background-color: #1a1a1a;
    height: 50px;
    padding: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
/* ----- end content ----- */

/* ----- grid boxes ----- */

    .bg-primary-custom { background-color: #dc583a; }
    .bg-destructive { background-color: #dd524b; }
    .bg-accent { background-color: #e27b62; }
    .bg-secondary-custom { background-color: #c44125; }
    .bg-muted-foreground { background-color: #687489; }
    .bg-foreground { background-color: #374255; }

    .workout-card {
      border-radius: 4rem;
      transition: all 0.3s ease;
      color: #fff;
      overflow: hidden;
      text-align: center;
    }

    .workout-card:hover {
      transform: scale(1.05);
      box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
    }

    .workout-card img {
      height: 18rem;
      object-fit: cover;
      border-radius: 0.75rem;
    }

    .btn-custom {
      background-color: #000;
      color: #fff;
      border-radius: 50rem;
      font-weight: 600;
      transition: all 0.3s ease;
      width: 30%;
      min-width: 150px;
    }

    .btn-custom:hover {
      background-color: rgba(0, 0, 0, 0.8);
    }

/* ----- end grid boxes ----- */

/* ----- program ----- */

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
  border-color: #ff6600a9;
}

/* ----- end program ----- */


/* ----- contact ----- */

.hover-link:hover {
  color: #ff6600a9 !important;
  transition: color 0.3s ease;
}

/* ----- end contact ----- */


/* ----- footer ----- */

.footer-details {
    color: #ffffff;
}

.hover-link:hover {
  color: #000 !important;
  transition: color 0.3s ease;
}

/* ----- end footer ----- */



.members-embed {
    height: 80vh;
}

.members-embed iframe {
    width: 100%;
    height: 100%;
}