html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: rgb(20, 0, 0);
}

main {
  height: 100vh;
}

.button {
  width: fit-content;
  min-width: 150px;
  color: darkred;
  text-decoration: none;
  height: 50px;
  display: flex;
  padding: 0px 10px 0px 10px;
  justify-content: center;
  align-items: center;
  background-color: black;
  border-color: darkred;
  border-style: solid;
  border-width: 2px;
  border-radius: 15px;
  font-family: "Inclusive Sans", sans-serif;
  margin: 5px;
}
.button a {
  color: darkred;
  text-decoration: none;
}

.button:hover {
  background-color: darkred;
  border-color: black;
  border-style: solid;
  color: black;
  cursor: pointer;
}
.button:hover a {
  color: black;
}

footer {
  height: 100px;
}
footer div {
  margin-left: 10vw;
}
footer div a {
  color: rgb(39, 39, 39);
  font-family: "capellina-caps", serif;
  text-decoration: none;
}
footer nav {
  margin: 10px auto 10px auto;
}

@font-face {
  font-family: "mazius";
  src: url("../../fonts/mazius-display-main/fonts/MaziusDisplay-Regular.woff") format("woff");
}
.title-font {
  color: darkred;
  font-family: "capellina-caps", serif;
  font-size: 30px;
}

.plain-text {
  text-decoration: none;
}

.paragraph-text {
  color: darkred;
  font-family: "mazius", serif;
  font-size: 25px;
}

.header {
  position: sticky;
  top: 0px;
  z-index: 100;
  margin: 0;
  width: 100vw;
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#logo {
  opacity: 0.3;
  display: flex;
  width: 50px;
  height: 50px;
  margin-left: 10px;
  background-image: url("../images/TDALogo.svg");
  background-repeat: no-repeat;
}

#tda-title {
  margin-right: auto;
  opacity: 0.3;
}

.m-l-nav-item {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0.3;
  width: 30px;
  height: 20px;
  margin: 0 20px 0 auto;
  position: relative;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: darkred;
  border-radius: 2px;
}

nav:hover {
  background: rgb(0, 0, 0);
}
nav:hover .hamburger {
  opacity: 100%;
}
nav:hover .hamburger:hover {
  animation: neonFlicker 1.5s infinite alternate;
}
nav:hover .m-l-nav-item {
  opacity: 100;
}
nav:hover .m-l-nav-item:hover {
  animation: neonFlicker 1.5s infinite alternate;
}
nav:hover #tda-title {
  opacity: 100;
}
nav:hover #tda-title:hover {
  animation: neonFlicker 1.5s infinite alternate;
}
nav:hover #logo {
  opacity: 100;
}
nav:hover #logo:hover {
  animation: neonFlickerObject 1.5s infinite alternate;
}

@keyframes neonFlicker {
  0%, 100% {
    text-shadow: 0 0 30px red;
  }
  50% {
    text-shadow: 0 0 45px red;
  }
}
@keyframes neonFlickerObject {
  0%, 100% {
    filter: drop-shadow(0 0 20px red);
  }
  50% {
    filter: drop-shadow(0 0 25px red);
  }
}
.hamburger-dropdown {
  z-index: 100;
  display: none;
  position: absolute;
  background-color: black;
  padding: 1px;
  top: 80px;
  right: -100%;
  width: 200px;
  list-style: none;
}
.hamburger-dropdown li A {
  display: flex;
  text-decoration: none;
  color: darkred;
  margin: 0px 20px 0px 20px;
  font-family: "capellina-caps", serif;
  font-size: 40px;
  padding: 10px;
}
.hamburger-dropdown li a:hover {
  animation: neonFlickerObject 1.5s infinite alternate;
}

.slide-out {
  animation: slide-out 0.25s forwards;
}

.slide-back {
  animation: slide-back 0.25s forwards;
}

@keyframes slide-out {
  0% {
    right: -100%;
  }
  100% {
    right: 0%;
  }
}
@keyframes slide-back {
  0% {
    right: 0%;
  }
  100% {
    right: -100%;
  }
}
.open {
  display: block;
}

.header:has(.hamburger-dropdown.open) {
  background-color: rgb(0, 0, 0);
}

.hamburger.X span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
  position: absolute;
}

.hamburger.X span:nth-child(2) {
  opacity: 0;
}

.hamburger.X span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
  position: absolute;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
  .hamburger-dropdown {
    display: none;
  }
  .m-l-nav-item {
    display: flex;
    text-decoration: none;
    color: darkred;
    opacity: 0.4;
    margin: 0px 20px 0px 20px;
    font-family: "capellina-caps", serif;
    font-size: 40px;
  }
}
#contact-body {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#contact-section {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

#contactTitle {
  margin: 10px 0 10px 0;
}

.input-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-box {
  background-color: black;
  border-color: darkred;
  color: darkred;
  border-style: solid;
  border-radius: 4px;
  padding: 10px;
  height: auto;
  overflow: hidden;
  text-align: center;
  margin: 10px 0 10px 0;
  width: 300px;
}

#send-button {
  margin: 10px 0 10px 0;
}

#feedback {
  color: darkred;
}

#about-section {
  display: flex;
  flex-direction: column;
  width: 80vw;
  justify-content: center;
  margin: 100px auto 10px auto;
}

#about-title {
  margin: 0 auto 0 auto;
}

#about-con {
  display: flex;
  justify-content: center;
}
#about-con #zoe-box {
  margin-right: 20px;
}
#about-con img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
#about-con #description-box {
  margin: 0;
}
#about-con #description-box #about-desc {
  margin: 0;
}

@media (max-width: 900px) {
  #zoe-selfie {
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
  #zoe-selfie div {
    text-align: center;
    margin: 50px auto 50px auto;
  }
  #zoe-selfie img {
    margin: 0;
  }
  #about-con {
    flex-direction: column;
  }
  #about-con img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    margin-right: 20px;
  }
  #about-con #description-box {
    margin-top: 30px;
  }
  #about-con #description-box #about-desc {
    text-align: center;
  }
  #smooth-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#hero-section {
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: center;
  margin: 20px auto 20px auto;
}

#hero-title-header {
  position: relative;
  display: flex;
  width: 100vw;
}
#hero-title-header #hero-title {
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  background-color: rgb(20, 0, 0);
  padding: 15px 0;
  z-index: 1;
}
#hero-title-header #hero-title h3 {
  margin: 0;
  padding-left: 10%;
}
#hero-title-header img {
  min-width: 100%;
  object-fit: cover;
  max-height: 300px;
  object-position: bottom;
  display: block;
}

#bottom-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#bottom-nav h3 a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0);
  color: darkred;
  font-weight: bold;
  padding: 10px;
  border-radius: 15px;
  border: solid 1px darkred;
}
#bottom-nav h3 a:hover {
  background-color: darkred;
  color: black;
  border: solid 1px black;
}

.info-section {
  position: relative;
  display: flex;
  width: 90vw;
  flex-direction: column;
}

@media (max-width: 500px) {
  #hero-title-header #aboutTitle {
    padding: 0;
  }
  #hero-title-header img {
    max-height: 150px;
  }
}
@media (min-width: 500px) {
  #bottom-nav {
    width: 300px;
    margin: auto;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (max-width: 900px) {
  #hero-title-header img {
    max-height: 200px;
  }
}