@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family:  "Poppins", sans-serif;
}

nav{
  font-size: 16px
}

.hero {
  background: url(image/steam-train-Background.jpg) no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  object-fit: fill;
}
.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* optional dark overlay */
  width: 100%;
}

.hero .hero-overlay{
  object-fit: contain;
}

.object {
  background: rgb(63, 63, 63, 72%);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 380px;

}

.input-group {
  margin-bottom: 10px;
}

label {
  display: block;
  border-radius: 5px
}

input {
  width: 94%;
  padding: 8px;
  margin-top: 4px;
  border: none;
  border-radius: 5px !important;
}

.error {
  color: red;
  font-size: 12px;
  margin: 0px;
}

button {
  /* width: 94%; */
  padding: 10px;
  margin-top: 10px;
  background-color: rgb(0, 194, 113);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:disabled {
  background-color: gray;
}


.about-section{
  padding: 40px 0px;
}

.about-section img{
  width: 500px !important;
  border-radius: 5px;
}


/* cta-banner */

.cta-banner{
  background-image: url(image/cta-banner.png);
  border-radius: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 64px 32px;
  color: white;
}

.white-btn{
  background-color: white;
  color: black;
  padding: 12px 28px;
  border: 1px solid white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.5s;
}

.container {
  padding: 20px;
}

.book-now{
  background-color: rgb(247, 245, 242);
}

.book-now p{
  color: rgb(16, 16, 16);
}

.footer{
  font-size: 14px;
  background-color: #0d1b2a;
}


/* Responsive */
@media only screen and (min-device-width : 360px) and (max-device-width : 480px) {
  .container-fluid img{
    width: 160px;
  }
  .about-section{
    font-size: 12px;
    padding: 40px 0px;
  } 

  .object{
    width: 350px;
  }

  .footer{
    font-size: 12px;
  }

  #book-now h4{
    font-size: 14px;
  }

}

