/* General Styles */
body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

/* Fixed Header */
header {
  box-shadow: 0px 0px 5em #ffdc2c;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #847112;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  z-index: 10;
}

.website-name {
  display: inline;
  margin: 0;
  font-size: 1.5rem;
}

/* Hero Section with Carousel */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  color: #fff;
  padding-top: 50px;
  /* Adjust for header */
}

.carousel {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2.5s ease-in-out;
  z-index: 1;
}

.carousel-item.active {
  z-index: 2;
  opacity: 0.7;
}

/* Hero Overlay */
.hero-overlay {
  position: relative;
  z-index: 3;
  text-align: center;
}

.login-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 8px;
  color: #847112;
  width: 20em;
}

.login-form h2 {
  margin-bottom: 10px;
}

.login-form input {
  width: 90%;
  padding: 10px;
  margin: 5px 0;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.login-form button {
  padding: 10px;
  width: 100%;
  background: #847112;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.25s ease-in-out;
}

.login-form button:hover {
  background-color: #3f3609;
}

footer {
  /* position: fixed; */
  bottom: 0;
  width: 100%;
  background-color: #847112;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  z-index: 10;
  font-weight: bold;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive */
@media only screen and (max-width: 768px) {
  .login-form {
    width: 90%;
  }

  .website-name {
    font-size: 1.2rem;
  }
}

/* Toast CSS start */
#simpleToast {
  visibility: hidden;
  min-width: 250px;
  /* margin-left: -125px; */
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 10;
  left: 41%;
  top: 7em;
  display: inline-flex;
  line-height: 12px;
}

#simpleToast span {
  margin-left: 12px;
  margin-top: 2px;
}

#simpleToast.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }

  to {
    top: 7em;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }

  to {
    top: 7em;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    top: 7em;
    opacity: 1;
  }

  to {
    top: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    top: 7em;
    opacity: 1;
  }

  to {
    top: 0;
    opacity: 0;
  }
}

/* Toast CSS end */

.photo-criteria {
  color: red;
}
