/* Reset CSS with Night Mode Disabling */

/* Disable night mode */
:root {
  color-scheme: only light;
}

/* Reset default styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Set base font and background */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.5;
  background-color: #ffffff;
  color: #000000;
}

/* Reset headings */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* Reset lists */
ul, ol {
  list-style: none;
}

/* Reset links */
a {
  color: inherit;
  text-decoration: none;
}

/* Reset buttons */
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

/* Reset form elements */
input, textarea, select {
  font: inherit;
}

/* Fix for -webkit-appearance */
input[type="search"] {
  -webkit-appearance: textfield;
}

/* Ensure hamburger menu is visible */
.hamburger span {
  background-color: #000000 !important;
}

/* Ensure language selector text is black */
.current-language {
  color: #000000 !important;
}

/* Disable user-agent styles */
input, textarea, select, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Ensure consistent text rendering */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Remove default margin and padding on form elements */
form {
  margin: 0;
  padding: 0;
}

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
}
