.site-header {
background-color: transparent;
}

html {
  scroll-behavior: smooth;
}

.hero {
    height: 350px;
    background-image: url("../images/DaydreamsAndDarkness.png");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.container {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1100px;
margin: 0 auto;
padding: 15px 20px;
}

.logo img {
width: 100px;
border-radius: 50%;
}

.logo {
    font-family: "Dank Mono", ui-monospace, monospace;
    font-size: 24px;
    color: #4f2463;
    text-decoration: none;
    margin: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

nav {
    margin-left: auto;
}


.nav-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 20px;
align-items: center;
}

.nav-list a {
text-decoration: none;
color: #8041db; 
}

.nav-list a:hover {
color: #fff894; 
}

.social-nav-item {
    display: flex;
    align-items: center;
}

.social-nav-link {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(128, 65, 219, 0.18);
    color: #8041db;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-nav-link svg {
    width: 19px;
    height: 19px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-nav-link:hover {
    background-color: rgba(128, 65, 219, 0.88);
    color: #fff894;
    transform: translateY(-1px);
}

.social-nav-link:focus-visible {
    outline: 2px solid #fff894;
    outline-offset: 3px;
}

.row {
    display: flex;
    gap: 20px;
    margin: 40px;
}

.row img {
    width: 100%; 
    height: auto;
}

.reverse {
  flex-direction: row-reverse;
}


.text {
    flex: 1;
    padding: 20px;
}

.text2 {
    flex: 1;
    padding: 20px;
    text-align: justify;
    max-width: 800px;
    margin: 0 auto;
}

.text2 h1 {
    text-align: center;
}

.centered {
    text-align: center;
}

.image {
    flex: 1;
    padding: 20px;
    align-self: flex-start;
}

.image img {
    width: 100%;
    height: auto;
    display: block;
}

footer {
    color: #fff894;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: smaller;
}




/* Style dropdown container */
.dropdown {
    display: inline-block;
    position: relative;
}

/* Style dropdown content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color:  #8041db;
  min-width: 120px;
  box-shadow: 0px 3px 3px 0px #8041db;
  z-index: 1;
  margin-top: 0;
  border-radius: 8px;
}

/* Style dropdown items */
.dropdown-content a {
  color: white;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  text-align: left;
}

/* Change color of dropdown items on hover */
.dropdown-content a:hover {
  /* background-color: #eee; */
  text-decoration-line: none;
}

/* Show the dropdown content when hovering over dropdown */
.dropdown:hover .dropdown-content {
    display: block;
}

.tighten {
    margin: 15px;
    padding: 15px;
}


/* removing the padding margin, setting the font family*/
/* we will use universal selector (used to target and apply styles to all elements on a webpage) */

* { 
    margin: 0; 
    padding: 0; 
    font-family: "Special Elite", system-ui;
    box-sizing: border-box; 
}


/* Slideshow container */ 
.slideshow-container { 
    position: relative; 
    display: block;
    max-width: 600px;
    margin: auto; 
    overflow: hidden; 
}

/* Each slide */ 
.slide { 
    display: none; 
    position: relative; 
} 

.slide img { 
    width: 100%;
    height: auto;
    display: block;
}

/* Navigation icons */ 
.prev, .next { 
    cursor: pointer; 
    position: absolute; 
    top: 50%; 
    width: 40px; 
    height: 40px; 
    margin-top: -20px; 
    color: white; 
    background-color: rgba(0,0,0,0.5); 
    border-radius: 50%; 
    text-align: center; 
    line-height: 40px; 
    font-size: 18px; 
    user-select: none; 
    z-index: 1; 
}

.prev { 
    left: 10px; 
} 

.next { 
    right: 10px; 
}

/* Caption */ 
.caption { 
    position: absolute; 
    bottom: 0; 
    background: rgba(0,0,0,0.5); 
    color: #f2f2f2; 
    width: 100%; 
    text-align: center; 
    padding: 8px 0; 
    font-size: 16px; 
}

/* Dots container */ 
.dots-container { 
    text-align: center; 
    padding: 10px 0; 
} 

.dot { 
    cursor: pointer; 
    height: 15px; 
    width: 15px; 
    margin: 0 4px; 
    background-color: #bbb; 
    border-radius: 50%; 
    display: inline-block; 
    transition: background-color 0.6s ease; 
} 
.active, .dot:hover { 
    background-color: #717171; 
}


/* Modal base styling: hidden by default */ 
.modal { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.8); 
    display: none; 
    align-items: center; 
    justify-content: center; 
}

/* Display modal when targeted */ 
.modal:target { 
    display: flex; 
} 

/* Full-size image styling within modal */ 
.modal img { 
    max-width: 90%; 
    max-height: 90%; 
    border: 5px solid #fff; 
}

/* Close button styling */ 
.close { 
    background-image: url(../images/close.jpg); 
    background-position: center; 
    background-size: cover; 
    position: absolute; 
    top: 20px; 
    right: 20px; 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    text-decoration: none; 
    opacity: 0.8; 
    transition: opacity 0.3s ease; 

} 

.close:hover { 
    opacity: 1; 
}


#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #5a078e; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #180530;
}

@media (max-width: 768px) {

    .row {
        flex-direction: column;
        margin: 20px;
    }

    .reverse {
        flex-direction: column;
    }

}

/* Gradient Scroll below 

body {  
  background: linear-gradient(to bottom, #2d0a58, #16b1ff, #FEE140, #2d0a58 );
  background-size: 100%;
  background-repeat: no-repeat;
}

body:before{
  content:'';
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
  background: linear-gradient(to right bottom, rgba(255,255,255,0.2), #5a078e 75%);
}


html {
  margin: 0;
  font-family: 'Muli', sans-serif;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.4em;
}

#container {
  background-color: #FFF;
  margin: 80px 10%;
  padding: 30px 60px;
  border-radius: 20px;
  box-shadow: 0 3px 26px 0 rgba(0,0,0,0.20);
}

main,header {
  box-sizing: border-box;
}

main {
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 10px;
  color: #180530,
  margin: 40px 0;
}

*/

span {
  background: radial-gradient(
     hsl(200 100% 60%), 
     hsl(280, 91%, 42%)
  ) fixed;
  background: conic-gradient(
    hsl(280, 91%, 42%), 
    hsl(200 100% 60%), 
    hsl(61, 92%, 56%), 
  ) fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

article {
  /*  leverage cascade for cross-browser gradients  */
  background: radial-gradient(
     hsl(200 100% 60%), 
     hsl(280, 91%, 42%)
  ) fixed;
  background: conic-gradient(
    hsl(280, 91%, 42%), 
    hsl(200 100% 60%), 
    hsl(61, 92%, 56%), 
  ) fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
} 

body {
  background: hsl(204 100% 5%);
/*   background: conic-gradient(
    hsl(100 100% 60%), 
    hsl(200 100% 60%),
    hsl(100 100% 60%)
  ) fixed; */
  color: white;
  line-height: 1.6;
}

h1, p, body {
  margin: 0;
}

h1 {
  font-size: 40px;
  line-height: 1.5;
  max-inline-size: 15ch;
  margin: auto;
}

h2 {
  font-size: 60px;
  line-height: 1.5;
  max-inline-size: 15ch;
  margin: auto;
  text-align: center;
}

h3 {
  font-size: 25px;
  line-height: 2.2;
  max-inline-size: 15ch;
  margin: auto;   
}

p {
  font-family: "Dank Mono", ui-monospace, monospace;
}

html {
  block-size: 100%;
  inline-size: 100%;
  text-align: center;
}



.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 20px;
    padding: 12px 16px;

    padding-top: 14px;
    padding-bottom: 10px;

    background-color: #8041db;
    color: white !important;
    -webkit-text-fill-color: white;

    text-decoration: none;
    border-radius: 25px;

    line-height: 1;
    min-height: 44px;

    background-clip: border-box;
    -webkit-background-clip: border-box;
}

.button:hover {
    color: #fff894 !important;
    -webkit-text-fill-color: #fff894;
}

/* image hover effect */

.image-link {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
}

.image-link img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.image-link-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 18px;

    background-color: rgba(128, 65, 219, 0.88);

    color: #fff894;
    -webkit-text-fill-color: #fff894;

    font-family: "Dank Mono", ui-monospace, monospace;
    font-size: 1.3rem;
    text-align: center;
    letter-spacing: 1px;

    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-link:hover img {
    transform: scale(1.03);
    filter: brightness(0.5);
}

.image-link:hover .image-link-title {
    transform: translateY(0);
}

.text2 h2.title-typewriter {
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid currentColor;
  animation:
    type-title 1.4s steps(9, end) both,
    blink-cursor 0.75s step-end infinite;
}

@keyframes type-title {
  from {
    width: 0;
  }

  to {
    width: 9ch;
  }
}

@keyframes blink-cursor {
  50% {
    border-color: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  .text2 h2.title-typewriter {
    width: auto;
    overflow: visible;
    border-right: 0;
    animation: none;
  }
}

.intro-subheading {
  text-align: center;
  color: #8041db;
  font-size: 1.15rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-subheading::after {
  content: "";
  display: block;
  width: 680px;
  height: 2px;
  background-color: #8041db;
  margin: 14px auto 0;
  opacity: 0.35;
}

.fireflies {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.fireflies > span {
  position: absolute;
  animation: firefly-glow 2.8s ease-in-out infinite;
}

.fireflies > span > span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff894;
  box-shadow:
    0 0 8px rgba(255, 248, 148, 0.95),
    0 0 18px rgba(128, 65, 219, 0.35);
  opacity: 0.75;
  animation: firefly-wriggle 1.8s ease-in-out infinite;
}

.fireflies > span:nth-child(1) {
  top: 18%;
  left: 8%;
  animation:
    firefly-path-one 19s ease-in-out infinite alternate,
    firefly-glow 2.4s ease-in-out infinite;
}

.fireflies > span:nth-child(2) {
  top: 32%;
  left: 78%;
  animation:
    firefly-path-two 23s ease-in-out infinite alternate,
    firefly-glow 3s ease-in-out infinite;
  animation-delay: -5s, -1s;
}

.fireflies > span:nth-child(3) {
  top: 58%;
  left: 18%;
  animation:
    firefly-path-three 21s ease-in-out infinite alternate,
    firefly-glow 2.7s ease-in-out infinite;
  animation-delay: -9s, -0.5s;
}

.fireflies > span:nth-child(4) {
  top: 72%;
  left: 88%;
  animation:
    firefly-path-four 25s ease-in-out infinite alternate,
    firefly-glow 3.2s ease-in-out infinite;
  animation-delay: -12s, -1.5s;
}

.fireflies > span:nth-child(5) {
  top: 44%;
  left: 48%;
  animation:
    firefly-path-five 27s ease-in-out infinite alternate,
    firefly-glow 2.5s ease-in-out infinite;
  animation-delay: -7s, -0.8s;
}

.fireflies > span:nth-child(6) {
  top: 84%;
  left: 34%;
  animation:
    firefly-path-six 22s ease-in-out infinite alternate,
    firefly-glow 3.4s ease-in-out infinite;
  animation-delay: -14s, -2s;
}

@keyframes firefly-path-one {
  0% { transform: translate(0, 0); }
  22% { transform: translate(22vw, -8vh); }
  47% { transform: translate(62vw, 20vh); }
  71% { transform: translate(38vw, 54vh); }
  100% { transform: translate(8vw, 18vh); }
}

@keyframes firefly-path-two {
  0% { transform: translate(0, 0); }
  18% { transform: translate(-20vw, 24vh); }
  43% { transform: translate(-58vw, 5vh); }
  68% { transform: translate(-34vw, 44vh); }
  100% { transform: translate(-72vw, 18vh); }
}

@keyframes firefly-path-three {
  0% { transform: translate(0, 0); }
  25% { transform: translate(34vw, -28vh); }
  50% { transform: translate(70vw, -6vh); }
  76% { transform: translate(18vw, 22vh); }
  100% { transform: translate(52vw, -36vh); }
}

@keyframes firefly-path-four {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-26vw, -44vh); }
  45% { transform: translate(-72vw, -18vh); }
  70% { transform: translate(-48vw, -62vh); }
  100% { transform: translate(-12vw, -30vh); }
}

@keyframes firefly-path-five {
  0% { transform: translate(0, 0); }
  24% { transform: translate(28vw, 18vh); }
  49% { transform: translate(-32vw, -22vh); }
  73% { transform: translate(36vw, -34vh); }
  100% { transform: translate(-18vw, 26vh); }
}

@keyframes firefly-path-six {
  0% { transform: translate(0, 0); }
  21% { transform: translate(18vw, -48vh); }
  46% { transform: translate(46vw, -12vh); }
  69% { transform: translate(-14vw, -32vh); }
  100% { transform: translate(30vw, -70vh); }
}

@keyframes firefly-wriggle {
  0%, 100% {
    transform: translate(0, 0) scale(0.9);
  }

  25% {
    transform: translate(4px, -3px) scale(1.1);
  }

  50% {
    transform: translate(-3px, 4px) scale(0.85);
  }

  75% {
    transform: translate(3px, 2px) scale(1.15);
  }
}

@keyframes firefly-glow {
  0%, 100% {
    opacity: 0.35;
  }

  50% {
    opacity: 0.9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fireflies > span,
  .fireflies > span > span {
    animation: none;
  }
}

.fireflies > span:nth-child(1) > span,
.fireflies > span:nth-child(6) > span {
  width: 5px;
  height: 5px;
}

.fireflies > span:nth-child(3) > span,
.fireflies > span:nth-child(8) > span {
  width: 8px;
  height: 8px;
}

.fireflies > span:nth-child(5) > span,
.fireflies > span:nth-child(10) > span {
  width: 4px;
  height: 4px;
  opacity: 0.55;
}

.fireflies > span:nth-child(7) > span,
.fireflies > span:nth-child(9) > span {
  width: 9px;
  height: 9px;
  opacity: 0.65;
}

.fireflies > span:nth-child(7) {
  top: 12%;
  left: 52%;
  animation:
    firefly-path-seven 24s ease-in-out infinite alternate,
    firefly-glow 2.9s ease-in-out infinite;
  animation-delay: -10s, -1.2s;
}

.fireflies > span:nth-child(8) {
  top: 66%;
  left: 6%;
  animation:
    firefly-path-eight 28s ease-in-out infinite alternate,
    firefly-glow 3.6s ease-in-out infinite;
  animation-delay: -16s, -2.4s;
}

.fireflies > span:nth-child(9) {
  top: 26%;
  left: 34%;
  animation:
    firefly-path-nine 20s ease-in-out infinite alternate,
    firefly-glow 2.2s ease-in-out infinite;
  animation-delay: -3s, -0.7s;
}

.fireflies > span:nth-child(10) {
  top: 92%;
  left: 72%;
  animation:
    firefly-path-ten 30s ease-in-out infinite alternate,
    firefly-glow 3.8s ease-in-out infinite;
  animation-delay: -20s, -2.8s;
}

@keyframes firefly-path-seven {
  0% { transform: translate(0, 0); }
  23% { transform: translate(28vw, 18vh); }
  48% { transform: translate(-18vw, 42vh); }
  72% { transform: translate(34vw, 58vh); }
  100% { transform: translate(-26vw, 10vh); }
}

@keyframes firefly-path-eight {
  0% { transform: translate(0, 0); }
  19% { transform: translate(38vw, -18vh); }
  44% { transform: translate(74vw, 12vh); }
  70% { transform: translate(28vw, -42vh); }
  100% { transform: translate(86vw, -10vh); }
}

@keyframes firefly-path-nine {
  0% { transform: translate(0, 0); }
  26% { transform: translate(-20vw, 34vh); }
  52% { transform: translate(26vw, 52vh); }
  78% { transform: translate(48vw, -10vh); }
  100% { transform: translate(-12vw, 20vh); }
}

@keyframes firefly-path-ten {
  0% { transform: translate(0, 0); }
  24% { transform: translate(-46vw, -26vh); }
  50% { transform: translate(-18vw, -62vh); }
  76% { transform: translate(14vw, -34vh); }
  100% { transform: translate(-58vw, -76vh); }
}





@media (max-width: 700px) {
  .container {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
  }

  nav {
    margin-left: 0;
    width: 100%;
  }

  .nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
  }

  .logo {
    justify-content: center;
    font-size: 20px;
    gap: 12px;
  }

  .logo img {
    width: 72px;
  }

  .hero {
    height: 220px;
  }

  .row,
  .row.reverse {
    flex-direction: column;
    margin: 24px 16px;
    gap: 12px;
  }

  .text,
  .text2,
  .image {
    padding: 10px 0;
    width: 100%;
  }

  .text2 {
    text-align: left;
  }

  .centered,
  .text2 h2,
  .intro-subheading {
    text-align: center;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .fireflies {
    overflow: hidden;
  }
}