@font-face {
  font-family: "Tempting";
  src: url("./Carriage/Dutch 809 BT.ttf");
}
body {
  /*font-family: "Open Sans", sans-serif;*/
  font-family: "Tempting";
  color: #34495e;
  margin: 0;
  padding: 0;
  background-color: #ecf0f1;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.background-container {
  flex: 1;
  position: relative;
  z-index: 1;
}
.background-container section {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}
.background-container section.active {
  opacity: 1;
  z-index: 2;
}
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero .overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  text-align: center;
  color: #ffffff;
}
.hero h1 {
  font-size: 48px;
  margin: 0;
}
/* Adjust .btn-secondary to include the image */
.btn-secondary {
  background-color: #e74c3c;
  color: #ffffff;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}
/* Ensure the button scales properly */
.responsive-button {
  width: 100%;
  height: auto;
  max-width: 200px; /* Adjust the max width as needed */
  display: block;
  margin: 0 auto;
  border: none;
}
@media (max-width: 600px) {
  .responsive-button {
    max-width: 150px; /* Adjust for smaller screens */
  }
}
@media (min-width: 601px) and (max-width: 1024px) {
  .responsive-button {
    max-width: 175px; /* Adjust for medium screens */
  }
}
.content-section {
  padding: 40px 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.content-section .overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  text-align: center;
  color: #ffffff;
}
h2 {
  font-family: "Tempting";
  font-size: 36px;
  margin-bottom: 20px;
}
footer {
  background-color: #0e223f;
  color: #ffffff;
  padding: 10px 0;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.footer-content p {
  margin: 0;
}
.social-icons a {
  color: #ffffff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}
#home {
  background: url("./Carriage/IMG_3143.jpeg") no-repeat center center/cover;
}
