* {
    margin: 0;
    padding: 0;
}

/* HERO */
.booking-hero {
  height: 350px;
  background: url('/Banner-img/Banner\ 1.jpeg') center/cover no-repeat;
}

.booking-hero .overlay {
  background: rgba(0,0,0,0.6);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
}

/* NAVBAR */
.header {
    height: 100%;
    position: relative;

}

.nav-item a {
    font-size: 17px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
    background: #121212;
    color: #fff;
}

/* FORM */
.booking-section {
  padding: 60px 20px;
}

.booking-form {
  max-width: 600px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row div {
  flex: 1;
}

/* SUMMARY */
.booking-summary {
  padding: 60px 20px;
  background: #f5f2ee;
  text-align: center;
}

.summary-grid {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.summary-card {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .summary-grid {
    flex-direction: column;
  }
}


/* Footer start */
body {
    font-family: 'Signika', sans-serif;
}

.bg-grey {
    background: #121212;
}

.logo-footer {
    margin-bottom: 40px;
}

footer {
    color: grey;
}

footer p,
a {
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
}

footer h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 40px;
    position: relative;
}

footer h6:after {
    position: absolute;
    content: "";
    background: grey;
    width: 12%;
    height: 1px;
    left: 0;
    bottom: -20px;
}

.btn-footer {
    color: grey;
    text-decoration: none;
    border: 1px solid;
    border-radius: 43px;
    font-size: 13px;
    padding: 7px 30px;
    line-height: 47px;
}

.btn-footer:hover {
    text-decoration: none;
}

.form-footer input[type="text"] {
    border: none;
    border-radius: 16px 0 0 16px;
    outline: none;
    padding-left: 10px;

}

::placeholder {
    font-size: 10px;
    padding-left: 10px;
    font-style: italic;
}

.form-footer input[type="button"] {
    border: none;
    background: #232323;
    margin-left: -5px;
    color: #fff;
    outline: none;
    border-radius: 0 16px 16px 0;
    padding: 2px 12px;
}

.social .fa {
    color: grey;
    font-size: 22px;
    padding: 10px 15px;
    background: #3c3c3c;
}

footer ul li {
    list-style: none;
    display: block;
}

footer ul {
    padding-left: 0;
}

footer ul li a {
    text-decoration: none;
    color: grey;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #f5f5f5 !important;

}

.logo-part {
    border-right: 1px solid grey;
    height: 100%;
}

.social a {
    text-decoration: none;
}

/* Footer End  */