/* === Layout / viewport === */
html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body, HTML { /* keeping your selector style, but corrected */
  min-height: 100vh;
  max-height: 100vh;
}

/* === Swiper: make every slide exactly viewport height === */
.swiper,
.swiper-wrapper,
.swiper-slide {
  height: 100svh; /* more stable on mobile browsers */
  height: 100vh;  /* fallback */
}

.swiper-slide {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}

/* Base banner (static by default) */
.slide-banner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 25px 25px;
  font-family: Georgia;
  font-size:1rem;
  text-align: center;
  backdrop-filter: blur(6px);
  color: #000;
  z-index: 5;
}

.slide-banner a {
  color: blue;
  text-decoration: underline;
}





/* === Images: force identical rendered size everywhere === */
img.full {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* switch to 'contain' to avoid cropping */
  object-position: center;
  display: block;
}

/* === Social icons bar === */
.social-icons {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2147483647; /* above everything */

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  padding: 8px 12px;
  width: max-content;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  border-radius: 999px;
}

.social-icons i {
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  color: #fff;
}

/* When ANY element is fullscreen, keep icons pinned in that fullscreen viewport */
:fullscreen .social-icons {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/* WebKit fullscreen (Safari) */
:-webkit-full-screen .social-icons {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}