/* Modern minimal CSS reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

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

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

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

/* 
    App Styles
*/

* {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.header-wrapper {
}

.banner-right {
  display: none;
}

@media screen and (min-width: 992px) {
  .header-wrapper {
    min-height: 100vh;
  }

  .banner-right {
    display: block;
  }
}

.text-accent {
  color: #d10057 !important; /* Darker shade for better contrast */
}

.btn-accent {
  background-color: #d10057 !important; /* Darker shade for better contrast */
  color: #fff !important;
  border-color: #d10057 !important;
}

/* Improve contrast for text-muted elements */
.text-muted {
  color: #5a5a5a !important; /* Darker than default text-muted for better contrast */
}
