/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

:root {
  --primary: #3c096c80;
  --secondary: black;
  --background: #240046;
  --text-primary: white;
  --text-hyperlink-primary: white;
  --text-hyperlink-primary-hover: #c27bcd;
  --text-secondary: black;
  --header-border: white;
  --primary-footer-hover: black;
  --text-primary-footer: white;
  --introduction-contents-var: #10002B;
  --transparent-black: #00000080;
  --button-inner-background: #2e0959;
  --button-outer-gradient-bottom: #2e0959;
  --button-outer-gradient-top: #7600ff;
}
@font-face {
  font-family: 'Lexend';
  src: url('Lexend.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Mulish';
  src: url('Mulish.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
body {
  background-color: var(--background);
  color: var(--text-secondary);
  margin: 0;
  padding: 0;
  font-family: Mulish, sans-serif;
  overflow: hidden;
}

a {
  color: var(--text-hyperlink-primary);
  text-decoration: none;
  transition: color .1s ease-in-out;
}
a:hover {
  color: var(--text-hyperlink-primary-hover);
}
.header {
  display: flex;
  padding: 0px 60px 0px 60px;
  text-align: center;
  background: var(--primary);
  color: var(--text-primary);
  font-size: 13px;
  justify-content: space-between;
  align-items: center;
  font-family: Lexend, sans-serif;
  position: fixed;
  top: 0;
  z-index: 99999;
  backdrop-filter: blur(10px);
  inset: 0;
  height: min-content;
  transition: background .25s ease-in-out, padding .25s ease-in-out;
}
.header.in-list {
  background: #00000080;
}
.header-title {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none; 
}
.header-contents {
  display: flex;
  gap: 20px;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none; 
}
.footer {
  display: flex;
  padding: 30px 60px 30px 60px;
  text-align: center;
  background: var(--transparent-black);
  color: var(--text-primary-footer);
  font-size: 13px;
  justify-content: center;
  font-family: Lexend, sans-serif;
  width: -webkit-fill-available;
  bottom: 0;
  transition: background .1s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none; 
}
.footer:hover {
  background: var(--primary-footer-hover);
}
#contents-container {
  display: flex;
  justify-content: center;
  z-index: 2;
  position: relative;
}
#introduction-background {
  width: -webkit-fill-available;
  height: 100vh;
  background: var(--introduction-contents-var);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
#introduction-background:after {
  background: -webkit-linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(16, 0, 43, 1) 100%);
  background: -moz-linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(16, 0, 43, 1) 100%);
  background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(16, 0, 43, 1) 100%);
  bottom: -500px;
  content: "";
  display: block;
  height: 500px;
  position: absolute;
  width: -webkit-fill-available;
}
#introduction-background:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("site-bg-1.jpg") no-repeat center/cover;
  filter: blur(8px);
  z-index: -1;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  mask-repeat: no-repeat;
  mask-size: cover;
  mix-blend-mode: overlay;
}
#click-elem {
  width: 600px;
  height: 600px;
  align-items: center;
  text-align: center;
  border-radius: 30px;
  margin: 60px;
  background: linear-gradient(180deg, var(--button-inner-background), var(--button-inner-background)) padding-box, linear-gradient(to top, var(--button-outer-gradient-bottom), var(--button-outer-gradient-top)) border-box;
  box-shadow: 0px 5px 20px 0px #00000080;
  color: white;
  border: transparent 3px solid;
  transition: filter .25s ease-in-out, transform .25s ease-in-out
}
#introduction-text {
  padding: 60px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 100px;
    user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none; 
}
#text-title {
    color: white;
    font-family: Lexend;
    font-size: 70px;
    animation: entry 1.5s ease-out forwards;
    user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  text-shadow: 0px 5px 20px var(--transparent-black);
}
#text-subtitle {
  color: white;
  animation: entry 1.5s ease-out forwards;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none; 
  font-size: 16px;
  text-shadow: 0px 5px 20px var(--transparent-black);
}
#scroll-button {
      appearance: none;
    border: transparent 3px solid;
    border-radius: 50px;
    background: linear-gradient(var(--button-inner-background), var(--button-inner-background)) padding-box, linear-gradient(to top, var(--button-outer-gradient-bottom), var(--button-outer-gradient-top)) border-box;
    color: white;
    font-family: 'Lexend';
    font-size: 25px;
    padding: 0.75rem 1.5rem;
    transition: filter .25s ease-in-out, box-shadow .25s ease-in-out, transform 0.25s ease-out;
    user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none; 
}
#scroll-button:hover {
  filter: brightness(1.5);
  cursor: pointer;
  transform: scale(1.05)
}
.entry {
  animation: entry 1.5s ease-out forwards;
}
  .scroll-button-entry {
  animation: entry-reverse 1.5s ease-out forwards;
}
@keyframes entry {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes entry-reverse {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes entry-top {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header-title h1 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-title h1 img {
    width: 2rem;
    height: 2rem;
    border-radius: 20px;
    mix-blend-mode: overlay;
}
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #252525, #0e0e0e);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    flex-direction: column;
    color: #fff;
    font-family: Lexend;
  }
  .spinner {
    border: 5px solid rgb(255 255 255);
    width: 32px;
    animation: spin 1s ease-out infinite, pulse 1s ease infinite;
    height: 32px;
  }
  .spinner-container {
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @keyframes spin {
    0% { transform: rotate(0deg);}
    40% { transform: rotate(90deg);}
    100% { transform: rotate(90deg);}
  }
  @keyframes pulse {
    0% { border-width: 10px; }
    100% { border-width: 5px;}
  }
  .top-image {
    height: 50%;
    background-image: url(site-bg-1.jpg);
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  mask-repeat: no-repeat;
  mask-size: cover;
  }
  .bottom-text {
    text-align: left;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: "Mulish";
  }
  .click-header {
    display: inline-block;
    font-family: 'Lexend';
    font-size: 40px;
    white-space: nowrap;
    transform-origin: left center;
  }
  .click-desc {
    font-size: 25px;
}
.click-view-button, .click-more-button {
    width: fit-content;
    padding: 0.5rem 2rem;
    border-radius: 30px;
    font-size: 30px;
    font-family: 'Lexend';
    transition: filter .25s ease-in-out;
}
.click-view-button:hover, .click-more-button:hover  {
  filter: brightness(1.1);
  cursor: pointer;
}
.click-view-button {
    border: none;
    background: #a6ffa6;
    color: #027b00;
}
.click-more-button {
    border: none;
    background: #939393;
    color: #000000;
    background-image: url(dots.png);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
}
.header:hover {
  background: #3c096c;
  padding: 10px 60px 10px 60px;
  transition: background .25s ease-in-out, padding .25s ease-in-out;
}

@container (max-width: 300px) {
  .text {
    font-size: 12px;
  }
}

@container (min-width: 301px) {
  .text {
    font-size: 18px;
  }
}
  
#contents-master-container {
  z-index: 10;
  position: relative;
}
#click-elem:hover, #content-hover:hover {
  filter: brightness(1.05);
  transform: scale(1.01)
}
.contents-header-container {
    display: flex;
    justify-content: center;
    width: 100%;
    color: white;
    z-index: 10;
    position: relative;
    text-align: center;
    flex-direction: column;
}
.contents-header {
      font-size: 60px;
    font-family: 'Lexend';
}
.contents-sub-header {
      font-size: 20px;
    max-width: 500px;
    align-self: center;
}
.main-container {
  height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px
}
.content-bg-left, .content-bg-top-right, .content-bg-bottom-right {
  background: linear-gradient(180deg, var(--button-inner-background), var(--button-inner-background)) padding-box, linear-gradient(to top, var(--button-outer-gradient-bottom), var(--button-outer-gradient-top)) border-box;
    box-shadow: 0px 5px 20px 0px #00000080;
    border: transparent 3px solid;
    color: white;
}
.content-bg-left {
  width: 300px;
    height: 600px;
    border-radius: 30px;
}
.content-bg-right {
  width: 600px;
    height: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start
}
.content-bg-top-right {
  width: fit-content;
    height: 50px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.content-bg-bottom-right {
  width: 600px;
    height: 550px;
    border-radius: 30px;
}
.content-bg-left > .top-image {
  height: 25%;
  background: url(site-bg-1.jpg)
}
.content-navbar {
      gap: 20px;
    display: flex;
    padding: 20px;
    font-size: 20px;
    font-family: Lexend;
}
.content-bottom-right-header {
  padding: 20px
}
.cbr-header-text {
      font-size: 30px;
    font-family: Lexend;
}
.composite-divider {
  height: 0.2rem;
    background: #6212c1;
}
.click-button-container {
  display: flex;
  gap: 10px
}
.tm-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    font-style: italic;
}
.tm-logo-scripts {
  filter: invert(1);
  width: 24px;
}