body,
html {
  height: 100%;
}

/* #C07F37, #EBA52A, #F8EEC5, #B52D0F */

:root {
  /* Primary hero gradient colors */
  --hero-primary: #B52D0F;
  --hero-secondary: #EBA52A;

  /* Sidebar / primary brand gradient */
  --brand-primary: #4e73df;
  --brand-primary-dark: #224abe;

  /* Text & UI colors */
  --text-muted: #ddd;
  --text-light: #fff;
  --dropdown-link: #333;

  /* Button colors */
  --btn-warning: #f6c23e;
  --btn-danger: #e74a3b;
  --btn-success: #1cc88a;
  --btn-info: #36b9cc;
  --btn-secondary: #858796;

  /* Page background and shadows */
  --page-bg: #eee;
  --shadow-color: rgba(58, 59, 69, .15);
}

.bg-gradient-primary-to-secondary {
  background: var(--hero-primary);
  background: linear-gradient(135deg, var(--hero-primary) 0%, var(--hero-secondary) 100%);
}

.text-gradient {
  background: -webkit-linear-gradient(315deg, var(--hero-primary) 0%, var(--hero-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rounded-4 {
  border-radius: 1rem !important;
}

.feature {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  font-size: 1.5rem;
}

.profile {
  position: relative;
  height: 75vw;
  width: 75vw;
  border-radius: 5vw;
  margin-top: 5vw;
  max-height: 40rem;
  max-width: 40rem;
}
.profile .profile-img {
  height: 80vw;
  max-height: 45rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 576px) {
  .profile {
    height: 60vw;
    width: 60vw;
  }
  .profile .profile-img {
    height: 65vw;
  }
  .profile .dots-1 {
    width: 3vw;
    right: 1.5vw;
  }
  .profile .dots-2 {
    width: 3vw;
    right: -4vw;
  }
  .profile .dots-3 {
    width: 3vw;
    left: 1.5vw;
  }
  .profile .dots-4 {
    width: 3vw;
    left: -4vw;
  }
}
@media (min-width: 768px) {
  .profile {
    height: 50vw;
    width: 50vw;
  }
  .profile .profile-img {
    height: 55vw;
  }
  .profile .dots-1 {
    width: 3vw;
    right: 1.5vw;
  }
  .profile .dots-2 {
    width: 3vw;
    right: -4vw;
  }
  .profile .dots-3 {
    width: 3vw;
    left: 1.5vw;
  }
  .profile .dots-4 {
    width: 3vw;
    left: -4vw;
  }
}
@media (min-width: 992px) {
  .profile {
    height: 40vw;
    width: 40vw;
  }
  .profile .profile-img {
    height: 45vw;
  }
  .profile .dots-1 {
    width: 1.5vw;
    right: 0.75vw;
  }
  .profile .dots-2 {
    width: 1.5vw;
    right: -2vw;
  }
  .profile .dots-3 {
    width: 1.5vw;
    left: 0.75vw;
  }
  .profile .dots-4 {
    width: 1.5vw;
    left: -2vw;
  }
}
@media (min-width: 1200px) {
  .profile {
    height: 35vw;
    width: 35vw;
  }
  .profile .profile-img {
    height: 40vw;
  }
  .profile .dots-1 {
    width: 1.5vw;
    right: 0.75vw;
  }
  .profile .dots-2 {
    width: 1.5vw;
    right: -2vw;
  }
  .profile .dots-3 {
    width: 1.5vw;
    left: 0.75vw;
  }
  .profile .dots-4 {
    width: 1.5vw;
    left: -2vw;
  }
}

.bg-gradient-primary{
  background-color: var(--brand-primary);
  background-image: linear-gradient(180deg, var(--brand-primary) 10%, var(--brand-primary-dark) 100%);
  background-size: cover;
}

#sidebarMenu a{
  color: var(--text-muted);
}

#sidebarMenu a:hover{
  color: var(--text-light);
}

#sidebarMenu .lead {
  color: var(--text-light);
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#sidebarMenu .dropdown-menu a{
  color: var(--dropdown-link);
}

#sidebarMenu .dropdown-menu a:hover{
  background-color: var(--brand-primary);
  color: var(--text-light);
}

#sidebarMenu {
  min-height: 100vh;
  position: sticky;
  top: 0;
  align-self: flex-start;
}

/* Mobile sidebar styles */
@media (max-width: 767.98px) {
  #sidebarMenu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1030;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }
  
  #sidebarMenu.show {
    transform: translateX(0);
  }
  
  #sidebarMenu.collapse:not(.show) {
    display: block;
  }

  #sidebarToggleTop {
    min-width: 44px;
    min-height: 44px;
    padding: 8px 12px;
    font-size: 1.25rem;
  }
}

.container-fluid > .row {
  min-height: 100vh;
}

main{
  background-color: var(--page-bg);
  min-height: 100vh;
}

.btn-primary{
  background-color: var(--brand-primary);
}

.btn-warning{
  background-color: var(--btn-warning);
}

.btn-danger{
  background-color: var(--btn-danger);
}

.btn-success{
  background-color: var(--btn-success);
}

.btn-info{
  background-color: var(--btn-info);
}

.btn-secondary{
  background-color: var(--btn-secondary);
}

.shadow {
  box-shadow: 0 .15rem 1.75rem 0 var(--shadow-color) !important;
}