body {
  margin-left: 15%;
  margin-right: 15%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  background-color:rgb(176, 203, 228);
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

@media (max-width: 992px) {
  body {
    margin-left: 0;
    margin-right: 0;
  }
}

.banner {
  background-image: url("../images/branding/img1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
}

.banner-content {
  /* background-color: rgba(0, 0, 0, 0.5); */
  padding: 20px 30px;
  border-radius: 10px;
}

.banner-content h1 {
  margin: 0;
  font-size: 48px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-content p {
  margin-top: 10px;
  font-size: 20px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.book-button {
  margin-top: 100px;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  background-color: #6699CC;
  color: white;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition:
    background-color 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.book-button:hover {
  background-color: #4d84b8;
  transform: translateY(-2px);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.navbar {
  background-color: #003B6D;
  padding: 10px;
  overflow: hidden;
  text-align: center;
}

.navbar a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  transition: background-color 0.3s;
  margin: 0 10px;
  border-radius: 5px;
}

.navbar a:hover {
  background-color: #6699CC;
}

.breadcrumb {
  padding: 3px;
  background-color: #003B6D;
  font-size: 18px;
  color: black;
  text-align: center;
}

.breadcrumb a {
  color: white;
  text-decoration: underline;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #003B6D;
}

.text-section {
  padding: 20px;
  font-size: 16px;
  color: rgb(0, 0, 0);
  line-height: 1.4;
  text-align: left;
  padding-left: 20px;
  margin-left: 50px;
  margin-right: 50px;
  text-align: center;
}

.text-section h2 {
  text-align: center;
}

.text-section a {
  font-size: 20px;
}

.image-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.image-card {
  width: 250px;
  text-align: center;
}

.image-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;

  border: 2px solid #6699CC;
  border-radius: 8px;
}

.image-card p {
  font-size: 12px;
  margin-top: 8px;
}

.brand-logo {
  max-height: 50px;
  padding-right: 15px;
}

input,
select {
  margin-bottom: 10px;
}

.footer {
  background-color: #003B6D;
  padding: 10px;
  color: white;
  text-align: center;
  padding-left: 20px;
  font-size: 14px;
}

.attractions-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 10px;
}

.attraction-card {
  width: 300px;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.attraction-card:hover {
  /*transform: translateY(-5px);*/
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}



.attraction-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.form-content {
  display: flex;
  justify-content: center;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h2 {
  margin-top: 0;
  text-align: center;
  color: #003B6D;
}

.card-content p {
  color: rgb(97, 96, 96);
  line-height: 1.5;
}

.card-content a {
  margin-top: auto;
  display: inline-block;
  background-color: #6699CC;
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
  text-align: center;
  transition: background-color 0.3s;
}

.card-content a:hover {
  background-color: #4d84b8;
}

.credit {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 1px;
  flex-wrap: wrap;
  line-height: 1;
}