* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  text-transform: uppercase;
}

@font-face {
  font-family: "TT Norms Light";
  src: url("../TTNorms-Light.woff");
}
@font-face {
  font-family: "TT Norms Regular";
  src: url("../TTNorms-Regular.woff");
}
@font-face {
  font-family: "TT Norms Medium";
  src: url("../TTNorms-Medium.woff");
}
a {
  text-decoration: none;
  color: white;
}

.box {
  display: block;
  text-align: center;
  background-color: transparent;
  border: solid 1.5px black;
  font-family: "TT Norms Light", sans-serif;
  position: relative;
  overflow: hidden;
  color: black;
  padding: 15px 0px;
  transition: color 0.3s;
  border-radius: 30px;
}
.box span {
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.box::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1%;
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: white;
  box-shadow: 0px 0px 0px 0px white;
  transition: all 0.3s;
  z-index: 0;
}
.box:hover {
  color: black;
}
.box:hover::after {
  width: 35%;
  box-shadow: 0px 0px 100px 200px white;
  transition-duration: 0.5s;
}
.box.top::after {
  bottom: unset;
  top: -20%;
}

::selection {
  background-color: #B0B0B0;
  color: white;
}

body {
  width: 100%;
  height: 100%;
  background-image: url("../../../../uploads/2024/04/haddad4.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  background-color: #f5f5f5;
}
@supports not (height: 100svh) {
  body {
    height: 100vh;
  }
}

main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main #image-container {
  width: 90%;
  max-width: 450px;
  margin: auto;
  margin-top: 7vh;
}
main #image-container img {
  width: 55%;
  height: auto;
}
main #content {
  width: 90%;
  max-width: 260px;
  margin: auto;
  margin-bottom: 3vh;
}
main #content h1 {
  font-family: "TT Norms Light", sans-serif;
  font-size: 27px;
  color: black;
  text-align: center;
}
main #content .box {
  width: 100%;
  margin-top: 20px;
}
main #content .box:first-of-type {
  margin-top: 0px;
}

footer {
  width: 100%;
  padding: 30px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}
footer p, footer .multi {
  color: black;
  font-size: 12px;
  font-family: "TT Norms Regular", sans-serif;
}
footer #single a:hover, footer a.multi:hover {
  text-decoration: underline !important;
}
footer a {
  color: black;
}
footer .multi {
  display: none;
}
footer #socials {
  display: flex;
  gap: 15px;
  list-style-type: none;
}
footer #socials svg, footer #socials path {
  fill: white;
  width: 100%;
  height: 100%;
}
footer #socials svg {
  width: 14px;
  height: 14px;
  filter: drop-shadow(0px 0px 0px black);
  transition: filter 0.5s;
}
footer #socials svg:hover {
  filter: drop-shadow(0px 0px 2px #fefefe);
}
footer #socials .sign-up {
  margin-left: 15px;
  font-family: "TT Norms Regular", sans-serif;
  font-size: 12px;
}
footer #socials .sign-up:hover {
  text-decoration: underline;
  text-decoration-color: white;
}

#dates .content {
  background-color: black;
  max-width: 1050px;
}

@media (max-width: 760px) {
  footer {
    justify-content: center;
    flex-direction: column-reverse;
    gap: 15px;
    padding: 30px 10px;
  }
  footer .multi {
    display: inline-block;
    margin: auto;
  }
  footer #single {
    display: none;
  }
  footer #socials {
    margin: auto;
  }
  footer #socials .sign-up {
    margin-left: 0px;
  }
}
.popup {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.7);
  display: grid;
  place-items: center;
  opacity: 1;
  transition: opacity 0.5s;
  z-index: 999;
}
@supports not (height: 100svh) {
  .popup {
    height: 100vh;
  }
}
.popup.hide {
  opacity: 0;
  pointer-events: none;
}
.popup#map-popup .content {
  background-color: #fff;
  max-width: 90%;
  width: auto;
}
.popup#map-popup .content p {
  text-align: center;
  font-size: 14px;
  margin-bottom: 10px;
}
.popup#map-popup .content #map-link {
  width: auto;
  height: auto;
  margin: auto;
  display: table;
}
.popup#map-popup .content #map-link img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 50vh;
  object-fit: contain;
  object-position: center;
}
.popup#map-popup .content #button-link {
  margin: 30px auto 15px;
  display: table;
  text-align: center;
  text-transform: uppercase;
}
.popup .close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 80px;
  line-height: 0.6em;
  transform: rotate(45deg);
  background-color: transparent;
  border: none;
  color: white;
  text-shadow: 0px 0px 30px black;
  transition: transform 0.3s;
  cursor: pointer;
}
.popup .close:hover {
  transform: rotate(-45deg);
}
.popup .content {
  width: 90%;
  max-height: 90%;
  overflow: auto;
  padding: 20px;
  border-radius: 10px;
  background-color: #FFFCED;
  box-shadow: 0px 0px 20px -10px black;
}
.popup .content h1, .popup .content p, .popup .content ul, .popup .content li, .popup .content a {
  font-family: "TT Norms Regular", sans-serif;
  text-transform: none;
}
.popup .content h1 {
  margin-top: 30px;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: bold;
}
.popup .content h1:first-of-type {
  margin-top: 0px;
}
.popup .content ul {
  list-style-position: inside;
}
.popup .content a {
  color: black !important;
}
.popup .content a:hover {
  text-decoration: underline !important;
}/*# sourceMappingURL=style.css.map */