@import url("https://fonts.cdnfonts.com/css/pp-neue-montreal");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --bg: #D6D6D6;
  --fg: #121212;
  --menu-bg: #D6D6D6;
  --menu-fg-secondary: #5F4394;
  --hamburger-icon-border: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "PP Neue Montreal", "Inter", sans-serif;
	overflow-x: hidden;
	background: var(--bg);
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  font-size: 5.5rem;
  font-weight: 500;
  letter-spacing: -0.2rem;
  line-height: 1;
}
h1 span{
    color: var(--menu-fg-secondary);
}

p {
  font-size: 0.95rem;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: var(--fg);
  font-size: 1.5rem;
  font-weight: 500;
}

/*.container {
  position: relative;
  transform: translateY(0svh);
  background-color: var(--bg);
  color: var(--fg);
}*/

section.outro,
section.hero,
section.info {
  position: relative;
  width: 100%;
  height: 100svh;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  overflow: hidden;
  /*z-index: -1;*/
  flex-wrap: wrap;
}

section h1 {
  width: 75%;
}

section img {
}

section h2 {
}

section p {
}

section img {
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.menu-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: all;
  color: var(--menu-fg-secondary);
  z-index: 2;
}

.gradient-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.menu-logo {
  width: 2rem;
  height: 2rem;
}

.menu-toggle-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.menu-toggle-label {
  overflow: hidden;
}

.menu-toggle-label p {
  position: relative;
  transform: translateY(0%);
  will-change: transform;
}

.menu-hamburger-icon {
  position: relative;
  width: 3rem;
  height: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid var(--hamburger-icon-border);
  border-radius: 100%;
}

.menu-hamburger-icon span {
  position: absolute;
  width: 15px;
  height: 1.25px;
  background-color: var(--fg);
  transition: all 0.75s cubic-bezier(0.87, 0, 0.13, 1);
  transform-origin: center;
  will-change: transform;
}

.menu-hamburger-icon span:nth-child(1) {
  transform: translateY(-3px);
}

.menu-hamburger-icon span:nth-child(2) {
  transform: translateY(3px);
}

.menu-hamburger-icon.active span:nth-child(1) {
  transform: translateY(0) rotate(45deg) scaleX(1.05);
}

.menu-hamburger-icon.active span:nth-child(2) {
  transform: translateY(0) rotate(-45deg) scaleX(1.05);
}

.menu-overlay,
.menu-overlay-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  color: var(--fg);
  overflow: hidden;
  z-index: 1;
}

.menu-overlay {
  background-color: var(--menu-bg);
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  will-change: clip-path;
}

.menu-overlay-content {
  display: flex;
  transform: translateY(-50%);
  will-change: transform;
  pointer-events: all;
}

.menu-media-wrapper {
  flex: 2;
  opacity: 0;
  will-change: opacity;
}

.menu-media-wrapper img {
  opacity: 0.25;
}

.menu-content-wrapper {
  flex: 3;
  position: relative;
  display: flex;
}

.menu-content-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu-footer {
  margin: 0 auto;
}

.menu-content-main,
.menu-footer {
  width: 75%;
  padding: 2rem;
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}

.menu-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-col:nth-child(1) {
  flex: 3;
}

.menu-col:nth-child(2) {
  flex: 2;
}

.menu-link a {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.menu-tag a,
.menu-footer p,
.menu-footer p a {
  color: var(--menu-fg-secondary);
  font-size: 1em;
}

.line {
  position: relative;
  will-change: transform;
}

.menu-link.active a{
	opacity: 0.5;
}


@media (max-width: 1000px) {
  h1 {
    font-size: 2.5rem;
    letter-spacing: -0.05rem;
  }

  section h1 {
    width: 100%;
  }

  .menu-media-wrapper {
    display: none;
  }

  .menu-content-main,
  .menu-footer {
    width: 100%;
  }

  .menu-content-main {
    top: 50%;
    flex-direction: column;
    align-items: flex-start;
    gap: 5rem;
  }

  .menu-link a {
    font-size: 3rem;
  }

  .menu-tag a {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  
  .menu-link a {
    font-size: 2.2rem;
  }

  .menu-tag a {
    font-size: 1.25rem;
  }
}


@media (min-width: 1440px) and (min-height: 680px) {
  h1 {
    font-size: 7.5rem;
    letter-spacing: -0.2rem;
  }
}

section.info{
    justify-content: center;
}
section.info .content{
    width: 100%; display: flex; flex-wrap: wrap; justify-content: flex-start;
    gap: 0.5rem;
}
section.info h2{
    width:100%;
    font-size: 2rem;
}
section.info h2 span{
    color: var(--menu-fg-secondary);
}
section.info p{
    font-size: 1.3rem;
}
.btn {
  line-height: 3rem;
  height: 3rem;
  text-align: center;
  width: auto;
  cursor: pointer;
  font-size: 1.3rem;
}
.btn .fa-light {
    margin-right: 5px; color: var(--menu-fg-secondary);
}
.btn-one {
  color: var(--fg);
  transition: all 0.3s;
  position: relative;
}
.btn-one span {
  transition: all 0.3s;
}
.btn-one::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border-top-width: 0px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: rgba(18,18,18,0.5);
  border-bottom-color: rgba(95,67,148,0.5);
  transform: scale(0.1, 1);
}
.btn-one:hover span {
  letter-spacing: 1px;
}
.btn-one:hover::before {
  opacity: 1; 
  transform: scale(1, 1); 
}
.btn-one::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s;
  background-color: rgba(255,255,255,0);
}
.btn-one:hover::after {
  opacity: 0; 
  transform: scale(0.1, 1);
}

@media (min-width: 768px) and (min-height: 580px) {
    section.info h2{
        font-size: 3rem;
    }
    section.info p{
        font-size: 1.5rem;
    }
    .btn {
      line-height: 4rem;
      height: 4rem;
      font-size: 1.6rem;
    }
}
@media (min-width: 1000px) and (min-height: 580px) {
    section.info .content{
        width: 75%; gap: 1rem;
    }
    section.info h2{
        font-size: 3rem;
    }
    section.info p{
        font-size: 1.5rem;
    }
    .btn {
    }
}
@media (min-width: 1280px) and (min-height: 680px) {
    section.info .content{
    }
    section.info h2{
        font-size: 4rem;
    }
    section.info p{
        font-size: 1.7rem;
    }
    .btn {
      font-size: 1.6rem;
    }
}
@media (min-width: 1440px) and (min-height: 680px) {
    section.info .content{
    }
    section.info h2{
        font-size: 4rem;
    }
    section.info p{
        font-size: 1.9rem;
    }
    .btn {
      font-size: 1.6rem;
    }
}



section.info .word.keyword-wrapper {
    color: rgba(95, 67, 148, 1); text-decoration: underline!important;
}
/*
section.info .word {
    display: inline-block;
    position: relative;
    margin-right: 0.1rem;
    margin-bottom: 0.1rem;
    padding: 0.1rem 0rem;
    border-radius: 2rem;
    will-change: background-color, opacity;
}
section.info .word.keyword-wrapper {
    margin: 0 0.1rem 0.2rem 0.2rem;
    padding: 0.1rem 0.9rem 0.1rem 0.9rem;
    background-color: rgba(95, 67, 148, 1);
    color: rgba(95, 67, 148, 1);
    color: #D6D6D6;
}
@media (max-width: 1000px) {
    section.info .word {
        margin-right: 0.1rem;
        margin-bottom: 0rem;
        padding: 0.1rem 0rem;
    }
    
    section.info .word.keyword-wrapper {
        margin: 0 0.2rem 0.1rem 0.1rem;
        padding: 0.1rem 0.5rem 0.1rem 0.5rem;
    }
}

*/






section.hero {
  flex-direction: column;
  transition: background-color 0.3s ease;
}

.hero-header {
  position: absolute;
  top: 0%; padding: 2rem;
  left: 0%;
  width: 100%;
  text-align: center;
  display: flex;
  gap: 0px;
  will-change: transform, opacity;
    justify-content: center; height: 100%; align-content: center; align-items: center;
}
.hero-header h1{
    font-weight: 600;
}


.animated-icons {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
	justify-content: center;
  gap: 1rem;
  will-change: transform;
  z-index: 2; height: 80px;
    padding: 0px 0%;
}

.animated-icon {
  flex: 1;
  aspect-ratio: 1;
  will-change: transform;
  display: flex; justify-content: center; align-content: center; align-items: center;
  max-width: 80px;
}
.animated-icon svg,
.duplicate-icon svg{
	width: 100%; height: auto;
	aspect-ratio: 1;
}

.duplicate-icon {
  	display: flex; justify-content: center; align-content: center; align-items: center;
}

.animated-text {
  position: relative;
  max-width: 1000px;
  text-align: center;
  color: #141414;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.animated-text a {
  color: var(--menu-fg-secondary);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
}
h1.animated-text span{
	color: var(--fg);
}

.text-segment {
  opacity: 0;
}

.placeholder-icon {
  margin-top: -10px;
  width: 60px;
  height: 60px;
  display: inline-block;
  vertical-align: middle;
  will-change: transform;
  visibility: visible;
}
#duplicateContainer{
	position:absolute; top: 50rvh; left: 0px; width: 100%; background: none; height: 50rvh;
}


@media (max-width: 1000px) {
	.placeholder-icon {
		margin-top: -6px;
		width: 30px;
		height: 30px;
	}
	.duplicate-icon {
	}
	.animated-icon svg,
	.duplicate-icon svg{
		width: 80%; height: auto;
		aspect-ratio: 1;
	}

}
