/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Work Sans", sans-serif;
}

/* Colors */
:root {
  --color-default: black;
  --color-primary: #d5ac63;
  --color-secondary: #ffffff;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/* General */
body {
  font-family: var(--font-default);
  color: var(--color-default);
  background-color: #d5ac63;
  overflow-x: hidden;
}


.layout-container a {
  text-decoration: none;
}

.layout-container a:hover {
  text-decoration: none;
}

.layout-container h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

.social-links a i:hover {
  color: #d5ac63;
}

.contact-links a i:hover {
  color: #d5ac63;
}

/* Scroll To Top */
.scrolltop {
  position: fixed;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  right: 10px;
  bottom: 10px;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  opacity: 0.5;
  color: #ffffff;
  border-radius: 6px;
  z-index: 20;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  text-align: center;
}

.scrolltop i {
  font-size: 1.6rem;
  line-height: 1;
}

.scrolltop:hover {
  background: var(--color-primary);
  opacity: 1;
}

/* Buttons */
input.form-submit:hover {
  background-color: #d5ac63;
}
