
/* Make sure the slides images are responsive */
.slides img:not(.footer-logo) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

swiper-container{
    width: 100%;
    height: 90vh;
    margin-top: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.slide-caption-left {
  position: absolute;
  bottom: 36vh;
  padding-left: 10vh;
  color: white;
  font-family: "Inter";
  font-size: 6vh;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.slide-caption-right {
  position: absolute;
  bottom: 36vh;
  right: 10vh; 
  text-align: right;
  color: white;
  font-family: "Inter";
  font-size: 6vh;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.slide-text-left {
  position: absolute;
  top: 65vh;
  padding-left: 10vh;
  padding-right: 60vh;  
  color: white;
  font-family: "Inter";
  font-size: 4vh;
  font-weight: 200;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.slide-text-right {
  position: absolute;
  top: 65vh;
  right: 10vh;              
  max-width: 160vh;          
  text-align: right;         
  color: white;
  font-family: "Inter";
  font-size: 4vh;
  font-weight: 200;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Footer Slide */
.footer-caption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;         /* Center logo + text container */
  justify-content: center;     /* Vertically center in slide */
  height: 100vh;               /* Take full slide height */
  background-color: #19171b;
  padding-left: 8rem;
  padding-right: 8rem;
  color: white;
  font-family: "Inter", Arial;
  font-size: 1.4rem;
  box-sizing: border-box;
  text-align: left;
}

.footer-logo {
  height: 5rem;
  width: auto;
  margin-bottom: 1.4rem;
}


/* Wrap text in a container for alignment */
.footer-text {
  margin: 0;
  margin-top: 1rem;
  line-height: 1.2;
  max-width: 100rem;
  text-align: left;
  display: flex;
  gap: 0.5rem;
  font-weight: 200;
}


.footer-text p{
  margin: 0 0 1rem 0; /* Only bottom margin */
  line-height: 1.5;
}

.bold-line{
  font-weight: 600;
  margin-top: 2rem;
  display: block;
}

@media screen and (max-width: 768px) {
  .slide-caption-left,
  .slide-caption-right {
    font-size: 4vh;
    top: 1rem;
    margin: 0;
    padding: 1vh 1vw 1vh 1vw;
    right: 1vw;
    text-align: center;
    width: 90%;
    position: relative;
    top: auto; /* Remove fixed positioning */
  }

  .slide-text-left,
  .slide-text-right {
    font-size: 2vh;
    margin: 0;
    padding: 0vh 5vw 1vh 5vw;
    right: 3vw;
    text-align: center;
    width: 90%;
    position: relative;
    top: auto; /* Remove fixed positioning */
  }
}

@media screen and (max-width: 768px) {
  .footer-caption {
    padding: 2rem 1.5rem;
    height: 100vh; /* Keeps it full screen */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center */
    align-items: center;     /* Horizontally center */
    text-align: center;
    font-size: 1rem;
    box-sizing: border-box;
  }

  .footer-logo {
    height: 3.5rem;
    margin-bottom: 1rem;
  }

  .footer-text {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    max-width: 100%;
    text-align: center;
  }

  .bold-line {
    margin-top: 1.5rem;
  }
}
