@charset "UTF-8";

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&family=Funnel+Sans:ital,wght@0,300..800;1,300..800&family=Pathway+Gothic+One&display=swap');

@font-face {
  font-family: "monument_extendedregular";
  src: url("https://www.yudiz.com/codepen/photography-banner/monumentextended-regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Extenda Trial 20 Micro";
  src: url("https://www.yudiz.com/codepen/photography-banner/Extenda-20Micro.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Extenda Trial 30 Deca";
  src: url("https://www.yudiz.com/codepen/photography-banner/Extenda-30Deca.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

html {
  font-size: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  padding-top: 60px;
  font-family: 'Funnel Sans', sans-serif;
  background-color: #212121;
  overflow-x: hidden;
  font-size: 100%;
  width: 100%;
  position: relative;
  color: white;
}

::selection {
  color: #ffffff;
  background: #EE4036;
}

/* Loader Styles */
#splash {
  background: #EE4036;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: 
    bgStay 1s ease-out forwards,
    bgSlideUp 1s ease-in 1s forwards;
}

#loader {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

#loader:after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -8px;
  bottom: -170px;
  width: 3px;
  background: #fff;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
  height: 200px;
}

#loader:before {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: 8px;
  bottom: -190px;
  width: 3px;
  background: #000;
  background: linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,0) 100%);
  height: 200px;
}

#splash .anim {
  height: 100%;
  position: absolute;
  left: 50%;
  width: 100px;
  transform: translate(-50%, 100%);
  animation: planeRise 3s ease-out forwards;
}

@keyframes planeRise {
  0% { transform: translate(-50%, 100%); }
  50% { transform: translate(-50%, 50%); }
  100% { transform: translate(-50%, 0%); }
}

@keyframes bgStay {
  0%, 100% { transform: translateY(0); }
}

@keyframes bgSlideUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
  background: linear-gradient(-45deg, #767488, #EF4136, #413F4C, #767488, #BBBCCC);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
  display: flex;
  align-items: center;
}

.logo a {
  display: inline-block;
  height: 100%;
}

.logo img {
  height: 100%;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin-left: 2rem;
  text-decoration: none;
  color: white;
  font-family: 'funnel display';
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #FD2E0D;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.nav-links a:hover {
  color: #000000;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
}

/* Main Content Styles */
.content-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  gap: 1rem;
}

.info-section {
  height: auto;
  min-height: 100svh;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  user-select: none;
}

.info-section::before {
  content: "";
  border-radius: 197.5px 0px;
  opacity: 0.4;
  background: var(--red, #AFB1BC);
  filter: blur(162px);
  height: 35%;
  width: 55%;
  position: absolute;
  top: -40%;
  left: -66%;
  transform: translate(50%, 50%);
  z-index: -1;
}

/* Left Part - Text Content */
.left-part {
  width: 50%;
  padding: 2rem;
}

.left-part h1 {
  margin: 0;
  padding: 0;
  color: #fff;
  font-family: "Extenda Trial 30 Deca";
  font-size: clamp(120px, 14vw, 180px);
  line-height: 0.70;
  font-weight: normal;
  font-style: normal;
  text-transform: uppercase;
  height: calc(0.70em * 2); /* Exactly 2 lines tall */
  overflow: visible;
}

.left-part h1 .static-text,
.left-part h1 .text {
  display: block;
  height: auto;
}

.left-part h1 .text {
  color: #EE4036;
}

.left-part h1 .d-flex {
  display: flex;
  align-items: center;
}

.left-part h1 .char {
  transform: translateY(-515px);
  transition: transform 0.5s;
}

.typed-cursor {
  display: none !important;
}

.left-part p {
  width: 100%;
  margin: 20px 0 0; /* Consistent 20px gap */
  padding: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 100;
  line-height: 1.5;
  font-family: "Funnel Sans";
  opacity: 0.7;
}

/* Right Part - Slideshow */
.right-part {
  width: 50%;
  padding-right: 1rem;
  margin-top: 0rem; 
}

.slideshow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  background-color: #212121;
}

.slideshow img.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out, filter 1s ease-in-out;
}

.slideshow img.slide.active {
  opacity: 1;
  filter: brightness(1) contrast(1);
}

.vignette-mask {
  position: absolute;
  top: -1px; 
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  pointer-events: none;
  z-index: 10;
}

/* Button Styles */
.book-link {
  margin: 40px 0 0;
  padding: 0;
  border: 0;
  font-size: 40px;
  line-height: 1;
  color: #f1f1f1;
  font-family: "Pathway Gothic One";
  font-weight: 100;
  font-style: normal;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  position: relative;
  text-decoration: none;
}

.book-link .linktext {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.book-link .linktext::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  transform: scaleX(1);
  transition: transform 250ms ease-in-out;
  transform-origin: 0 0;
}

.book-link:hover .linktext:before {
  transform: scaleX(0);
  transform-origin: 100% 100%;
}

.book-link .arrow {
  height: 36px;
  width: 36px;
  top: -5px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.book-link .arrow::before,
.book-link .arrow::after {
  position: absolute;
  content: "";
  background-color: #EE4036;
  transition: all ease-in-out 0.35s;
  transform-origin: 0 0;
  border-radius: 30px;
}

.book-link .arrow::before {
  height: 3px;
  width: 100%;
  top: 0;
  right: 0;
}

.book-link .arrow::after {
  width: 3px;
  height: 100%;
  top: 0;
  right: 0;
}

.book-link:hover .arrow::before {
  width: 65%;
}

.book-link:hover .arrow::after {
  height: 65%;
}

.book-link .arrow span {
  background-color: #EE4036;
  height: 3px;
  width: 100%;
  display: inline-block;
  transform: rotate(-45deg) translate(-3px, -1px);
  transform-origin: right top;
  border-radius: 30px;
  transition: all ease-in-out 0.35s;
  position: absolute;
  top: 0;
  left: 0;
}

.book-link .arrow span::before {
  background-color: #EE4036;
  content: "";
  height: 100%;
  width: 15px;
  left: -15px;
  top: 0;
  position: absolute;
}

hfoot {
  color: #9C9FB2;
  font-size: 12px;
  font-family: 'Funnel Sans', sans-serif;
}

.footer {
  width: 100%;
  display: inline-block;
  text-align: center;
  margin-bottom: 10px;
}

/* Responsive Styles */
@media screen and (max-width: 1000px) {
  .right-part {
  width: 45%;
  }
	
 .left-part {
  width: 55%;
	 padding: 1rem;
  }
	
  .left-part p {
    font-size: 14px;
    line-height: 1.5;
    width: 100%;
  }

  .book-link {
    font-size: 35px;
    gap: 24px;
  }

  .book-link .arrow {
    height: 28px;
    width: 28px;
  }
}

@media screen and (max-width: 767px) {
  .navbar {
    padding: 0 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0rem;
    background-color: #FFF;
    box-shadow: 0 14px 10px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .nav-links a {
    margin: 0.5rem 0;
    color: #333;
  }

  .nav-links.active {
    display: flex;
  }

  .content-wrapper {
    flex-direction: column;
    padding: 0 1rem;
    gap: 1rem;
  }
  
  .left-part, 
  .right-part {
    width: 100%;
    padding: 0 1rem;
  }
  
  .left-part {
    order: 1;
    padding-top: 2rem;
    padding-bottom: 0;
  }
  
  .right-part {
    order: 2;
    height: 300px;
    width: 100%;
    margin-bottom: 10px;
  }
  
  .slideshow {
    padding-bottom: 100%;
    height: 300px;
  }
  
  .left-part h1 {
    font-size: 110px;
    line-height: 0.75;
    height: calc(0.75em * 2);
  }
  
  .left-part p {
    margin-top: 20px;
    font-size: 14px;
  }
  
  .book-link {
    font-size: 30px;
    gap: 20px;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }

  .book-link .arrow {
    height: 20px;
    width: 20px;
  }
}