p {
  font-family: "Helvetica Neue";
  font-size: 1rem; /* Default size */
}

@media (max-width: 1200px) { /* Adjust for mobile screens */
  p {
    font-size: 1.4rem;
  }

  li {
    font-size: 1.4rem;
  }

  a {
    font-size:1.4rem;
  }

  h1 {
    font-size:2.4rem;
  }

  div {
    font-size: 1.4rem;
  }
}


/* Stuff for my parralex thing */
.parralax {
  background-image: url("./images/IMG_0498_3.webp");
  /* min-height:100vh; */

  /* min-height:100vh; */
  width:100%;
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  overflow:hidden;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;

  /* Start fully transparent */
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

body.loaded .parralax {
  opacity: 1;
}

@media only screen and (max-device-width: 1366px) {
  .parralax {
    background-attachment: scroll;

  }
}

.welcome-content {
  background: rgba(0, 0, 0, 0.5); /* Optional dark overlay */
  padding: 20px;
  border-radius: 10px;
  margin: 15px;
  padding:20px;
}

/* Stuff for images */
.slider-images { /* we'll try it as an ID first, I guess*/

  /* transition: 0.3s; */
}

.slider-images:hover {
  opacity: 0.7;
}

.click-button-light {
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.6), 0 0 3px rgba(255, 255, 255, 0.5), 0 0 0.5rem rgba(255, 255, 255, 0.3), 0 0 2rem rgba(255, 255, 255, 0.2)
}

.modal-content {
  margin: auto;
  display: block;
  /*: 80%;*/
  max-width: 80%; /*may come back and change this*/
  max-height: 80%;
  width: auto;
  height: auto;
  animation-name: zoom;
  animation-duration: 0.6s;
}

.slider-image-unfaded {
  opacity: 0; /* Start fully transparent */
  transition: opacity 0.8s ease-in-out; /* Smooth fade-in */
}

.slider-img-fade-in {
  opacity: 1; /* Fully visible after loading */
}

.fade-in {
	opacity: 0;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
  animation-delay: 2s; /* 1-second delay */
  animation-fill-mode: forwards; /* Keeps final opacity */
	animation-timing-function: ease-in;
	animation-duration: 1s;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* The fuck does this even do? */
@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

#image-viewer .close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1; /* May also want to cut this*/
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

#image-viewer .close:hover,
#image-viewer .close:focus {
  color: #bbb;
  text-decoration: none;
}

/* Modal Background Viewer Thing */
#image-viewer {
  display: none;
  position: fixed;
  z-index: 1;
  /* padding-top: 100px; */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  /* background-color: rgb(0,0,0); */
  background-color: rgba(0,0,0, 0.9);
  align-items: center;
  justify-content-center;
}

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%
  }
}
