@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body{
  background: #fcf1f0;
  overflow: hidden;
}

nav {
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
  background: #fcf1f0;
  padding-top: 8px;
  z-index: 100;
}
nav .wrapper{
  position: sticky;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px;
  line-height: 50px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo a{
  color: #f9ca24;
  font-size: 40px;
  font-weight: 800;
  font-family: "Playfair Display";
  text-decoration: none;
}
.wrapper .logo a:hover{
  content: url(../kaleidoscope.png);
  width: 6%;
  position: absolute;
  top: 0px;
  left: 20px;
}

.wrapper .nav-links{
  display: inline-flex;
  position: relative;
}
.nav-links li{
  list-style: none;
  position: relative;
}
.nav-links li a{
  color: #f0932b;
  text-decoration: none;
  font-size: 1.15em;
  font-weight: 700;
  display: inline;
  padding-left: 100px;
  width: 175px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.nav-links li a:hover{
  color: #f9ca24;
}

.nav-links .dot {
  width: 8px;
  height: 8px;
  background: #f9ca24;
  border-radius: 50%;
  opacity: 0;
  position: absolute;
  bottom: -1px; /* positions dot below text */
  left: 20%;
  transform: translateX(-50%);
  opacity: 0; /* hidden by default */
  transition: opacity 0.2s ease-in-out;
}

.nav-links a:nth-child(1):hover ~ .dot {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.nav-links a:nth-child(2):hover ~ .dot {
  -webkit-transform: translateX(210px);
  transform: translateX(210px);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 1;
}

.nav-links a:nth-child(3):hover ~ .dot {
  -webkit-transform: translateX(380px);
  transform: translateX(380px);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 1;
}

.about-container {
  display: flex;
/*  min-height: 200vh;*/
  padding: 2rem;
  gap: 2rem;
}

.left-column {
  width: 50%;
  display: flex;
  padding-left: 70px;
  flex-direction: column;
  justify-content: center;
  padding-right: 1rem;
  position: sticky;
  top: 0;
  padding-top: 100px;
  height: 85vh;
}

.words {
  color: #fcf1f0;
  font-size: 0;
  font-weight: bold;
  line-height: .75;
  letter-spacing: 1.5px;
  padding-left: 10px;
}

.words:hover{
  cursor: default;
}

.words span {
  font-size: 4.2vw;
  display: inline-block;
  animation: move 8s ease-in-out infinite;
  animation-delay: .5s;
}

@keyframes move {
  0% {
    transform: translate(-10%, 0);
  }
  50% {
    text-shadow: 0px 10px 20px #b5a8a8;
  }
  100% {
    transform: translate(10%, 0);
  }
}

.words span:nth-child(2) {
  animation-delay: 0.2s;
}

.words span:nth-child(3) {
  animation-delay: .3s;
}

.words span:nth-child(4) {
  animation-delay: .4s;
}

.words span:nth-child(5) {
  animation-delay: .5s;
}

.words span:nth-child(6) {
  animation-delay: .6s;
}

.words span:nth-child(7) {
  animation-delay: .7s;
}

/*.words span:nth-child(8) {
  animation-delay: .8s;
}*/

/*.left-column h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}*/

.left-column h1{
  font-family: "Playfair Display", cursive;
  font-size: 2.6vw;
  color: #bf2c6a;
  font-weight: 600;
  padding-left: 5px;
  padding-top: 60px;
}
/*
.left-column p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}*/

.left-column p{
  padding-left: 2px;
  justify-content: center;
  float: left;
  color: #c79c97;
  font-size: 1.05vw;
  /*line-height: 1.5;*/
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  padding-top: 30px;
  margin-bottom: 2rem;
/*  font-style: italic;*/
}

.hyperlink {
  color: #c79c97;
  font-weight: 800;
}

.button-group {
  display: flex;
  gap: 2rem;
  padding-top: 1px;
}

.btn {
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: white;
  background: #d6b4b0;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #bf2c6a;
}

.btn.secondary {
  background: transparent;
  color: #d6b4b0;
  border: 2px solid #d6b4b0;
}

.btn.secondary:hover {
  background: #bf2c6a;
  color: #fff;
  border: 2px solid #bf2c6a;
}

.right-column {
  width: 50%;
  position: relative;
  height: 100vh;
  overflow-y: auto;
  padding-left: 1rem;
}

.image-deck {
  height: 1500vh;
  position: relative;
}

.deck-img {
  position: sticky;
  top: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  z-index: 1;
  transform: scale(0.95);
  transition: transform 0.4s ease, z-index 0.2s ease;
}

.deck-img img {
  max-width: 60%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.deck-img:hover {
  transform: scale(1.01);
}

/* Image stacking z-index */
.img1  { z-index: 1; }
.img2  { z-index: 2; }
.img3  { z-index: 3; }
.img4  { z-index: 4; }
.img5  { z-index: 5; }
.img6  { z-index: 6; }
.img7  { z-index: 7; }
.img8  { z-index: 8; }
.img9  { z-index: 9; }
.img10 { z-index: 10; }
.img11 { z-index: 11; }
.img12 { z-index: 12; }
.img13 { z-index: 13; }
.img14 { z-index: 14; }
.img15 { z-index: 15; }
.img16 { z-index: 16; }















