/* Reset default margins and paddings */
body, h1, h2, h3, p {
  margin: 0;
  padding: 0;
}

/* Apply a background color to the body */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
}

/* Form Styles */
form {
  background: white;
  padding: 0 5%;
}

/* Header Styles */
header {
  background-color: #ffffff;
  width: 100%;
  height: 100px;
  box-shadow: inset 5px 5px 8px rgb(255, 255, 255),
              inset -2px -2px 4px rgba(12, 14, 17, 0.29);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
}

.logo {
  position: relative;
  top: 20px;
}

.searchbar{
  position: relative;
  right: 700px; 
}

.searchbar input::placeholder {
  color: rgb(138, 135, 135);
  font-family: 'raleway', sans-serif;
  font-size: 1.1em;
  font-weight: 600;
}

.searchbar input {
  padding: 12px 12px 12px 50px;
  width: 100%;
  border-radius: 50px;
  border: none;
  background-color: rgb(223, 223, 226);
  outline: none;
}

#search-sharp {
  display: flex;
  color: rgb(138, 135, 135);
  font-size: 1.6em;
}

/* Navigation Styles */
.navbar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: blue;
  padding: 10px 0;
}

.navbar a {
  text-decoration: none;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.navbar a:hover,
.navbar a:active {
  background-color: black;
  color: white;
}

/* Slider Styles */
#slider {
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}

#slider figure {
  position: relative;
  width: 500%;
  margin: 0;
  left: 0;
  animation: 20s slider infinite;
}

#slider figure img {
  float: left;
  width: 20%;
}

@keyframes slider {
  0% {
      left: 0;
  }
  20% {
      left: 0;
  }
  25% {
      left: -100%;
  }
  45% {
      left: -100%;
  }
  50% {
      left: -200%;
  }
  70% {
      left: -200%;
  }
  75% {
      left: -300%;
  }
  90% {
      left: -300%;
  }
  100% {
      left: -400%;
  }
}

/* Content Section Styles */
.join,
.reasons,
.places {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Button Styles */
#button {
  background: blue;
  color: white;
  font-size: 1.2em;
  height: 40px;
  width: 150px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

#button:hover {
  background-color: black;
}

/* Container Styles */
.container {
  position: relative;
  text-align: center;
  color: white;
  margin-bottom: 20px;
}

.container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 10px;
}

b {
  font-size: 1.2em;
  color: #ffffff;
}

/* Footer Styles */
footer {
  background: blue;
  width: 100%;
  padding: 20px 0;
  color: white;
  text-align: center;
}

.icons {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.icons img {
  margin: 0 10px;
  height: 40px;
}

.footerp a {
  text-decoration: none;
  font-size: 1.2em;
  color: white;
}

.footerp {
  font-size: 1em;
}

#bottom_menu {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#bottom_menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

#bottom_menu ul li a {
  text-decoration: none;
  font-size: 1em;
  color: white;
}

.bottom_align a {
  margin-left: auto;
}

.reserved {
  text-align: center;
  margin-top: 20px;
}

/* Media Queries */
@media (max-width: 768px) {
  /* Adjustments for smaller screens */
  header {
      padding: 10px 5%;
  }
  .logo {
      top: 10px;
  }
  .searchbar input {
      padding: 10px;
  }
  .navbar {
      flex-direction: column;
  }
  .navbar a {
      margin: 5px 0;
  }
}
