/* Define the font-face rule to load your custom font */
@font-face {
  font-family: 'PlayfairDisplay';
  src: url('../assets/PlayfairDisplay-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'CFModGrotesk-Regular';
  src: url('../assets/CFModGrotesk-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Apply the custom font to the entire document */
body {
  font-family: 'CFModGrotesk-Regular', sans-serif;
  letter-spacing: 0.5px;
  line-height: 23px;
  font-size: 17px;

  font-feature-settings: normal;
  font-variant-alternates: normal;
}


body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1.5s ease-in;
  opacity: 0;
  z-index: -100;

}

.caption-container {
  position: absolute;
  bottom: 30px;
  right: 40px;
}

.caption {
  position: fixed;
  bottom: 30px;
  right: 40px;

  text-align: right;
  width: 200px;
  height: 30px;
  border: none;
  background: none;
  color: white;
  font-family: 'CFModGrotesk-Regular', sans-serif;
  letter-spacing: 0.5px;
  font-size: 17px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out;
}

.logo-container {
  position: absolute;
  top: 30px;
  left: 40px;
}

.logo-container img {
  max-width: 100px;
  max-height: 100px;
}

.info-container {
  position: absolute;
  bottom: 30px;
  left: 40px;
  color: white;
}


a {

  font-feature-settings: normal;
  font-variant-alternates: normal;

  text-decoration: none;
  color: white;
}

a:hover  {
  color: #B99B80;
}

.shade {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  /* background: #B99B80; */
  background: linear-gradient(0deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.20) 70%, rgba(0,0,0,0.70) 100%);
}


@media screen and (max-width: 768px) {
  /* Adjust the position for tablet and mobile */

  .caption-container {
    position: absolute;
    bottom: 160px;
    left: 20px;
  }
  
  .caption {
    position: fixed;
    bottom: 160px;
    left: 20px;
    text-align: left;
  }  
	
	.info-container {
		left: 20px;
		    bottom: 115px;
	}
}