@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Roboto+Slab:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html, body {
  scroll-behavior: smooth;
}

header {
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}
header .logo {
  font-size: 2em;
}
header .logo a {
  color: #000;
  text-decoration: none;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 3.5rem;
}
header nav a {
  color: #000;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
header nav a::after {
  content: "";
  height: 2px;
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  transition: 0.25s ease;
}
header nav a:hover::after, header nav a.active::after {
  width: 70%;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .ham svg {
  height: 35px;
  width: 35px;
  color: #000;
  stroke-width: 2.5;
}
header .logout__btn {
  background: none;
  border: none;
}
header .logout__btn a {
  color: #000;
  text-decoration: none;
}
header .logout__btn a svg {
  color: #000;
  height: 30px;
  width: 30px;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 40;
  background: #101010;
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #fff;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 2px solid #000;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 900px) {
  header .logo {
    font-size: 1.5em;
  }
  header nav {
    gap: 1.75rem;
  }
  header nav a {
    font-size: 0.9em;
  }
  header nav a::after {
    bottom: -3px;
  }
}
@media only screen and (max-width: 700px) {
  header {
    padding: 0 10%;
  }
  header nav {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
}
.btn a {
  font-size: 1em;
  border: 3px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  border-radius: 15px;
  text-decoration: none;
  padding: 0.75em 1.5em;
  font-weight: 500;
  transition: 0.2s ease;
}
.btn:hover a {
  outline: 1px solid #fff;
}

footer {
  padding: 5rem 7.5%;
  background: #181818;
}
footer .footer__content {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: start;
}
footer .footer__content .left {
  width: 40%;
}
footer .footer__content .left h2 {
  font-size: 3.5em;
  color: #fff;
  margin-bottom: 1rem;
}
footer .footer__content .left p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.75em;
}
footer .footer__content .right {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 1.15rem;
}
footer .footer__content .right a {
  text-decoration: none;
  color: #fff;
  font-size: 1.25em;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1px;
}
footer .footer__content .right a svg {
  height: 1.35em;
  width: 1.35em;
  color: #fff;
  stroke-width: 3;
}

@media only screen and (max-width: 1300px) {
  footer .footer__content .left h2 {
    font-size: 2.5em;
  }
  footer .footer__content .left p {
    font-size: 0.85em;
  }
  footer .footer__content .right {
    justify-content: center;
  }
  footer .footer__content .right a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 850px) {
  footer .footer__content .left h2 {
    font-size: 2em;
  }
  footer .footer__content .left p {
    font-size: 0.7em;
  }
  footer .footer__content .right a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 700px) {
  footer .footer__content {
    flex-flow: column;
    row-gap: 4rem;
  }
  footer .footer__content .left {
    width: 100%;
  }
}
body {
  background: url("../../img/bg.jpg");
  background-size: cover;
}

.advent__calendar {
  min-height: 100vh;
  width: 1000px;
  margin: 5rem auto 0;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
}
.advent__calendar .header {
  width: 100%;
}
.advent__calendar .header h1 {
  font-size: 8em;
  color: #fff;
  font-family: "Dancing Script", cursive;
  text-align: center;
  font-weight: 800;
}
.advent__calendar .header p {
  font-size: 1.2em;
  color: #fff;
  font-family: "Roboto Slab", serif;
  text-align: center;
}
.advent__calendar .content {
  margin-top: 3rem;
  width: 100%;
}
.advent__calendar .content .row {
  height: 300px;
  width: 100%;
  position: relative;
}
.advent__calendar .content .row .line {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none; /* Allow clicks to pass through */
}
.advent__calendar .content .row .icon {
  position: absolute;
}
.advent__calendar .content .row .icon:nth-of-type(2) {
  top: 21%;
  left: 2.5%;
}
.advent__calendar .content .row .icon:nth-of-type(3) {
  top: 28%;
  left: 18%;
}
.advent__calendar .content .row .icon:nth-of-type(4) {
  top: 27%;
  left: 33%;
}
.advent__calendar .content .row .icon:nth-of-type(5) {
  top: 19%;
  left: 48%;
}
.advent__calendar .content .row .icon:nth-of-type(6) {
  top: 11%;
  left: 62.5%;
}
.advent__calendar .content .row .icon:nth-of-type(7) {
  top: 10%;
  left: 77%;
}
.advent__calendar .content .row .icon:nth-of-type(8) {
  top: 12%;
  left: 90%;
}
.advent__calendar .content .row .icon:nth-of-type(9) {
  top: 60%;
  left: 15%;
}
.advent__calendar .content .row .icon:nth-of-type(10) {
  top: 56%;
  left: 33%;
}
.advent__calendar .content .row .icon:nth-of-type(11) {
  top: 50%;
  left: 48%;
}
.advent__calendar .content .row .icon:nth-of-type(12) {
  top: 37%;
  left: 62.5%;
}
.advent__calendar .content .row .icon:nth-of-type(13) {
  top: 34%;
  left: 75%;
}

/* Popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.popup-content {
  position: relative; /* Enable positioning of the close button */
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  width: auto;
  z-index: 50;
}

.popup-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.popup-button {
  display: inline-block;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 10px;
  font-size: 16px;
}

.popup-button:hover {
  background: #0056b3;
}

.close-button:hover {
  color: #f44336;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}/*# sourceMappingURL=style.css.map */