@font-face {
  font-family: "Velvelyne";
  src: url("Fonts/Velvelyne-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Velvelyne", sans-serif;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.info {
  position: fixed;
  top: clamp(2px, 2vw, 20px);
  left: clamp(10px, 2vw, 70px);
  text-align: left;
  line-height: 1.1;
  z-index: 10;
  font-size: clamp(30px, 4vw, 180px);
  mix-blend-mode: difference;
  line-height: 1.1;
}

.info a {
  transition: opacity 0.3s;
  color: #ffffff;
  text-decoration: none;
}
.info a:hover {
  border-bottom: 5px solid;
  padding-bottom: 1px;
}

/* -----------------------------
   Swiper Mobile
----------------------------- */
.iphone-swiper {
  width: 100vw;
  height: 100vh;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  bottom: clamp(5px, 1vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  mix-blend-mode: difference;

  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  /* opacity: 0;
  transition: opacity 0.3s ease; */
  font-size: clamp(10px, 2vw, 90px);

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (hover: hover) and (pointer: fine) {
  .caption {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
}

.img-container:hover .caption {
  opacity: 1;
}

@media (hover: none) and (pointer: coarse) {
  .caption {
    opacity: 1 !important;
  }
}

/* -----------------------------
   Desktop Galerie
----------------------------- */
.desktop-gallery {
  display: flex;
  width: 100vw;
  height: 100vh;
}

.desktop-gallery .img-container {
  width: 50vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.desktop-gallery .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
