@import url("https://fonts.googleapis.com/css2?family=Ancizar+Serif:ital,wght@0,300..900;1,300..900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  background: #3f1b66;
  color: #f29333;
  font-family: "Barlow", sans-serif;
  line-height: 1.6;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 100vw;
  padding: 2rem 3rem;
}

main {
  flex-grow: 1;
  max-width: 75ch;
  margin: 0 auto;
  padding: 1rem;
}

h1, h2, h3, h4 {
  color: #ffa64d;
  font-weight: 800;
  position: relative;
  display: inline-block;
  margin-bottom: 1.2rem;
  padding-bottom: 0.35rem;
  user-select: text;
  text-shadow: 0 0 6px rgba(242, 147, 51, 0.7), 0 0 12px rgba(242, 147, 51, 0.4);
}

h1::after, h2::after, h3::after, h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(100% + 1.2em);
  height: 3px;
  background-color: #f29333;
  border-radius: 2px;
  filter: drop-shadow(0 0 4px #f29333);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

p {
  color: #f9a443;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-shadow: 0 0 4px rgba(242, 147, 51, 0.2);
}

a {
  color: #ffb066;
  text-decoration: underline;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: #ffffff;
}

button {
  background-color: #f29333;
  color: #3f1b66;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.6rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(242, 147, 51, 0.6666666667), inset 0 -3px 0 #c3751a;
  transition: all 0.25s ease;
  user-select: none;
}

button:hover {
  background-color: #ffa94d;
  box-shadow: 0 0 12px rgba(255, 169, 77, 0.6666666667), inset 0 -3px 0 #d78a2b;
}

button:active {
  transform: scale(0.95) translateY(2px);
  background-color: #f29333;
  box-shadow: 0 0 4px rgba(242, 147, 51, 0.6666666667), inset 0 -1px 0 #c3751a;
}

input, textarea {
  background-color: #4b2576;
  color: #f29333;
  border: 1.5px solid #f29333;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.3s ease;
  font-family: inherit;
  user-select: text;
}

input::placeholder,
textarea::placeholder {
  color: #d67b2d;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #ffa94d;
  box-shadow: 0 0 8px rgba(255, 169, 77, 0.6);
}

::selection {
  background: #f29333;
  color: #3f1b66;
}

@media (max-width: 600px) {
  body {
    padding: 1rem 1.5rem;
  }
  main {
    max-width: 100%;
  }
}
.site-footer {
  background-color: #2b1043;
  color: #f29333;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  margin-top: 4rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  border-top: 2px solid #f29333;
}

.site-footer p {
  margin: 0;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 5px rgba(242, 147, 51, 0.5);
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.footer-nav a {
  color: #f29333;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background-color: #f29333;
  transition: width 0.3s;
}

.footer-nav a:hover::after {
  width: 100%;
}

nav {
  background-color: #4b2576;
  background-image: linear-gradient(135deg, #4b2576, #5d2e94);
  border-radius: 0.75rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.2);
  padding: 1rem 2rem;
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2.5rem;
  top: 1rem;
  z-index: 9999;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  user-select: none;
  flex-wrap: wrap;
}

nav:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

nav a {
  color: #f29333;
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  white-space: nowrap;
}

nav a:hover,
nav a:focus {
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.1);
  outline: none;
}

nav a:focus-visible {
  outline-offset: 3px;
  outline: 2px solid #f29333;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
  border-radius: 1px;
  background-color: #f29333;
}

nav a:hover::after,
nav a:focus::after {
  width: 100%;
}

nav a:active {
  transform: scale(0.97);
}

@keyframes navItemAppear {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
nav a {
  animation: navItemAppear 0.5s ease forwards;
  animation-delay: calc(var(--item-index, 0) * 0.1s);
}

nav a.active {
  position: relative;
}

nav a.active::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 25%;
  width: 50%;
  height: 3px;
  border-radius: 3px;
  background-color: #f29333;
}

@media (min-width: 421px) and (max-width: 768px) {
  nav {
    flex-wrap: nowrap;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
  }
  nav a {
    font-size: 1.1rem;
    padding: 0.5rem 0.75rem;
  }
}
/* This file is where all special things that aren't in html by default will be located */
/* So far there is highlighted and underlined */
.highlighted {
  background-color: #f29333;
  color: #3f1b66 !important;
  font-weight: 500;
  text-decoration: underline;
  padding: 0.1em 0.3em;
  border-radius: 2px;
}

.underlined {
  position: relative;
  display: inline-block;
  color: #f29333;
  font-weight: 500;
  text-decoration: none;
}

.underlined::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #f29333;
  transition: all 0.3s ease;
  pointer-events: none;
}

.underlined:hover::after {
  height: 10px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5 Q2.5 0 5 5 T10 5 T15 5 T20 5 T25 5 T30 5 T35 5 T40 5 T45 5 T50 5 T55 5 T60 5 T65 5 T70 5 T75 5 T80 5 T85 5 T90 5 T95 5 T100 5' stroke='%23f29333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/*# sourceMappingURL=Aeryoric.css.map */