html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Premium Footer Styles */
.premium-footer {
    background-color: #1a1e21;
    color: #adb5bd;
    padding-top: 3rem;
    border-top: 1px solid #2c3034;
}

.premium-footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.premium-footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.premium-footer a:hover {
    color: #0d6efd;
    padding-left: 5px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #2c3034;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: #0d6efd;
    color: white !important;
    padding-left: 0 !important;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #111416;
    padding: 1.5rem 0;
    margin-top: 3rem;
}