/*Logo*/
img.logo {
  max-width: 400px; /* Adjust the size as per your preference */
  display: block;
  margin: 0 auto; /* Center the image */
  /*border-radius: 100px; /* Adds a slight rounding effect */
  /*margin-left: 548px; /*Moves image slightly to the left*/
}

body {
  background-image: url("/images/background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.content-container {
  opacity: 0.1;
}

.map-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px; /* Adjust the height as needed */
}

.map-container iframe {
  max-width: 100%;
  height: 100%;
}

header {
  text-align: center; /* Added to center the content */
}

nav {
  display: flex;
  justify-content: center;
}

.nav-button {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  text-decoration: none;
  color: rgb(0, 0, 0);
  background-color: rgba(255, 255, 255, 0.156);
  border: solid black;
  border-radius: 5px;
  font-size: 16px;
}

.nav-button:hover {
  background-color: #81ddff6c;
}


/*Adjusts header style*/
.header1 {
  text-align: center;
  margin-left: -58px;
}

.header2 {
  text-align: center;
  font-size: 60px;
  margin-left: -58px;
}

h1 {
  font-weight: bold;
}

/*Adjusts subtext style*/
.subtext1 {
  text-align: center;
  margin-left: -58px;
  font-size: 18px;
}

.subtext2 {
  text-align: center;
  margin-left: -58px;
  font-size: 20px;
}

.subtext3 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin: 50px;
  padding: 50px;
  display: inline-block;
  font-size: 25px;
}

.trueblue {
  text-align: center;
  margin-left: -58px;
  font-size: 20px;
  color: blue;
}

/* Adjusts slideshow */

.slideshow-container {
  border-radius: 30px;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 20px;
}

.slide {
  display: none;
  height: 400px;
  border-radius: 30px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.slide.active {
  display: block;
}

/* Navigation Buttons */
.slideshow-container .prev,
.slideshow-container .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slideshow-container .prev:hover,
.slideshow-container .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.slideshow-container .prev {
  left: 10px;
}

.slideshow-container .next {
  right: 10px;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}

.slide.fade-in {
  animation: slideIn 0.5s forwards;
}

.slide.fade-out {
  animation: slideOut 0.5s forwards;
}

.aboutborder {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin: 50px;
  padding: 50px;
  display: inline-block;
  font-size: 25px;
  border: 2px solid black;
  background-color: rgba(255, 255, 255, 0.211);

}

.hours {
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(255, 255, 255, 0.211);
  border: 2px solid black;
  margin: 50px;
  padding: 50px;
}

.container {
  text-align: center;
}

.phone-button {
  display: inline-block;
  padding: 30px 60px;
  background-color: #f4f4f481;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #333;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  margin-left: -50px;
  font-size: 20px;
}

.phone-button:hover {
  background-color: #81ddff6c;
  color: #f4f4f4;
}

.email-button {
  display: inline-block;
  padding: 30px 60px;
  background-color: #f4f4f481;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #333;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  margin-left: -50px;
  font-size: 20px;
}

.email-button:hover {
  background-color: #81ddff6c;
  color: #f4f4f4;
}