:root {
  --scale: calc(100vw / 1440); /* Dynamically scales based on 1440px design */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'SolareVF', sans-serif;
}

@font-face {
  font-family: 'SolareVF';
  src: url('fonts/SolareVF.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'PPNeueMontreal';
  src: url('fonts/PPNeueMontreal-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

html,
body {
  width: 100vw;
  height: 400vh;
  background: radial-gradient(circle, #FEF2F2 0%, #F9C0BC 100%);
  color: #fff;
  overflow-x: hidden;
}

nav {
  position: fixed;
  width: 100%;
  padding: 2.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3em;
  z-index: 10;
}

.nav-item a {
  position: relative;
  top: 20px;
  text-decoration: none;
  color: #fff;
  opacity: 0.35;
  font-weight: bold;
}

.nav-item a#active {
  opacity: 1;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers content vertically */
  align-items: center; /* Centers content horizontally */
  height: 100vh; /* Full viewport height */
  position: relative;
  text-align: center;
}

.title h1{
  text-align: center;
  font-size: calc(230 * var(--scale));
  font-family: 'SolareVF', sans-serif;
}

.first h1{
  position: relative;
  z-index: 1;
}

.second h1{
  position: relative;
  z-index: 3;
}

.artwork {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.flower-img {
  position: relative;
  width: calc(290px * var(--scale)); /* Adjust size as needed */
  height: auto; /* Maintain aspect ratio */
}


.description {
  position: absolute;
  width: 100%;
  text-align: left;
  color: #fff;
}

.description p {
  position: relative;
  top: -100px;
  left: 5%;
  max-width: 300px;
  text-align: justify;
}

.checkWork{
  position: absolute;
  bottom: 8%; /* Position it near the bottom */
  left: 75%; /* Center horizontally */
  transform: translateX(-50%); /* Adjust for centering */
  width: 200px; /* Define the width of the button */
  height: 50px; /* Define the height of the button */
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  border: 1px solid white; 
  border-radius: 15px;
  display: flex; 
  justify-content: center; 
  align-items: center; 
  background: rgba(255, 255, 255, 0.1); /* Optional: Add a background */
  transition: all 0.3s ease; /* Smooth hover effects */
  z-index: 10;
}

.checkWork:hover {
  background: rgba(255, 255, 255, 0.2); /* Highlight on hover */
  transform: translateX(-50%) scale(1.05); /* Slight zoom effect */
}

.checkWork a {
  text-decoration: none;
  color: white;
  margin: 0; 
  font-size: 16px; 
  text-align: center; 
  top: -100px;
  left: 70%;
}


h1 {
  text-transform: uppercase;
  font-size: 140px;
  line-height: 0.85;
  font-family: 'SolareVF', sans-serif;
  font-weight: bold;
}

a,
p {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 0.9;
}

p span {
  font-family: "Gascogne Serial";
}

.model {
  position: fixed;
  z-index: 2;
}

section {
  width: 100vw;
  height: 100vh;
}

.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1em;
}

.header-row {
  display: flex;
  gap: 19em;
  align-items: center;
}

.header-row p {
  text-transform: uppercase;
  width: 20%;
}

.intro2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1em;
}

.header-row2 {
  display: flex;
  gap: 19em;
  align-items: center;
}

.header-row2 p {
  text-transform: uppercase;
  width: 20%;
}

.header-row2 h1 {
  text-transform: uppercase;
  font-size: 130px;
  font-weight: 400;
  line-height: 0.85;
}

.archive {
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 3em;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.impactText{
  height: 200vh;
  display: flex;
  flex-direction: column;
  gap: 3em;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.impactText p{
  font-size: 60px;
}

.archive-header p {
  font-style: italic;
}

.archive h2 {
  font-size: 60px;
  font-weight: 300;
  color: white;
}

.archive-info {
  width: 100%;
  padding: 1em;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.archive-info p {
  text-transform: uppercase;
  color: white;
  font-size: 16px;
}

.learnText p{
  padding: 16px;
}

.outro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2em;
}

.outro-copy h2 {
  width: 85%;
  text-transform: uppercase;
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.5em;
}

.outro-copy h2 .line {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
  display: block;
}

.outro-copy h2 .line span {
  position: relative;
  will-change: transform;
  display: block;
  transform: translateY(70px);
}

.outro-copy p {
  display: flex;
  margin: 1em 0;
  gap: 2em;
  text-transform: uppercase;
}

.outro-copy p span {
  font-family: "Akkurat Trial TT";
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-transform: uppercase;
}

.footer img{
  height: 20px;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}