@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;
}

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;
}

h1{
	font-family: "Playfair Display", cursive;
	font-size: 2.2vw;
	color: #bf2c6a;
	font-weight: 600;
	padding-left: 100px;
	padding-top: 150px;
}

h2{
  font-family: "Poppins", sans-serif;
/*  font-style: italic;*/
  font-size: 1.1vw;
  color: #c79c97;
  font-weight: 500;
  text-align: left;
  padding-left: 100px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 155px;
}


.gallery{
  padding-left: 100px;
  padding-top: 20px;
  padding-bottom: 30px;
}

.image-box {
  position: relative;
  width: 80vw;
  height: 80vh;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.95s ease;
}

.overlay-text {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: #fcf1f0;
  color: black;
  padding-left: 80px;
  padding-right: 200px;
  box-sizing: border-box;
  transition: left 0.85s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h3{
  font-family: "Poppins";
  font-size: 6vw;
  color: #fcf1f0;
  font-weight: 600;
  text-shadow: 2px 4px 6px #ccb4b1;
}

p{
  font-family: "Poppins";
  font-size: 1.2vw;
  color: #ccb4b1;
  font-weight: 400;
}

.image-box:hover img {
  transform: translateX(-100%);
}

.image-box:hover .overlay-text {
  left: 0;
}





















