/* Common layout, header, footer and shared components */

:root {
  --blue: #183D6A;
  --blue-dark: #123f68;
  --green: #39654A;
  --green-soft: #e8f1ee;
  --text: #2b4050;
  --muted: #6a7a82;
  --line: #cbd7de;
}
@font-face {
  font-family: DomaineLocal;
  src: url("../fonts/TUV-Domaine-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: SignatureLocal;
  src: url("../fonts/NVNFunkySignature-Regular.ttf") format("truetype");
  font-weight: 400;
}

pa {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1190px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 rgba(23, 74, 120, .08);
}

.navbar {
  min-height: 92px;
  padding: 0;
}

.navbar-brand img {
  width: 135px;
}

.mobile-menu-btn {
  display: none;
  border: 0;
  box-shadow: none;
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
  background: transparent;
}

.mobile-menu-btn:focus {
  box-shadow: none;
}

.menu-mark {
  display: block;
}

.navbar-nav {
  gap: 48px;
}

.site-nav-shell,
.site-nav-shell .offcanvas-body {
  gap: 40px;
  justify-content: end;
}

.site-nav-shell .offcanvas-title {
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
}

.mobile-menu-logo {
  display: inline-flex;
  align-items: center;
}

.mobile-menu-logo img {
  width: auto;
  height: 44px;
  display: block;
}

.navbar .nav-link {
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
  padding: 37px 0;
}

.navbar .nav-link.active,
.navbar .nav-link:hover,
.lang a.active,
.lang a:hover {
  color: var(--green);
}

.lang {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  white-space: nowrap;
}

.lang a {
  color: var(--blue);
}

.main-nav-tree {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav-tree > li {
  position: relative;
}

.main-nav-tree > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
  padding: 30px 0;
}

.main-nav-tree > li.has-children > a::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
  line-height: 1;
}

.main-nav-tree > li > a:hover,
.main-nav-tree > li > a:focus,
.main-nav-tree > li.is-active > a,
.main-nav-tree > li > a.active {
  color: var(--green);
}

.main-nav-tree .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  border: 1px solid #e1e9ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 30px rgba(23, 74, 120, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .2s ease;
  z-index: 20;
}

.main-nav-tree > li:hover > .submenu,
.main-nav-tree > li:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav-tree .submenu li {
  position: relative;
}

.main-nav-tree .submenu li::before {
  content: none;
}

.main-nav-tree .submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.35;
}

.main-nav-tree .submenu a:hover,
.main-nav-tree .submenu a:focus,
.main-nav-tree .submenu a.active {
  color: var(--green);
  background: #f5faf8;
}

.main-nav-tree .submenu .submenu {
  top: 0;
  left: 100%;
  margin-left: 8px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links > li::before {
  content: none;
}

.footer-links > li {
  margin-bottom: 0;
}

.footer-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.footer-links > li > a::before {
}

.footer-links .submenu {
  margin: 8px 0 0 14px;
  padding: 0;
  list-style: none;
}

.footer-links .submenu li::before {
  content: "-";
  margin-right: 6px;
}

.footer-links .submenu a {
  display: inline;
}


.booking-wrap {
  position: absolute;
  left: 50%;
  bottom: -36px;
  z-index: 5;
  transform: translateX(-50%);
  border-radius: 15px;
}

.booking-bar {
  display: grid;
  grid-template-columns: 1.65fr 1.2fr 1.2fr 1fr 79px;
  min-height: 85px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 14px 36px rgba(26, 60, 86, .18);
  border-radius: 15px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  padding: 0px 30px 0px 55px;
  border-right: 1px solid #e3e8eb;
  position: relative;
}

.booking-field span {
  color: #9ca8ad;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.booking-field i {
  margin-right: 8px;
  color: #727A82;
  font-size: 28px;
  position: absolute;
  top: 24px;
  left: 20px;
}

.booking-field select,
.booking-field input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #334d5d;
  font: 500 16px "Inter", sans-serif;
  background: transparent;
  font-size: 15px;
  padding: 5px 0;
}

.guest-stepper {
  display: grid;
  grid-template-columns: 30px minmax(34px, 1fr) 30px;
  align-items: center;
  gap: 6px;
  width: 100%;
  max-width: 128px;
  position: relative;
}

.guest-stepper input[type="number"] {
  width: 100%;
  min-width: 0;
  text-align: center;
  -moz-appearance: textfield;
}

.guest-stepper input[type="number"]::-webkit-outer-spin-button,
.guest-stepper input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.guest-stepper-btn {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid #d9e3e7;
  border-radius: 50%;
  color: var(--blue);
  font-size: 12px;
  background: #fff;
  transition: .2s ease;
  position: relative;
}
.guest-stepper-btn i{position: absolute;left: 2px;top: -1px;margin: 0;font-size: 20px;}
.guest-stepper-btn:hover {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.daterangepicker .drp-buttons {
  display: none;
}

.booking-submit {
  border: 0;
  color: #fff;
  background: url(../images/icon-search.png) var(--blue) no-repeat center;
  font-size: 0;
  border-radius: 0 10px 10px 0;
  background-size: 30px;
  width: 80px;
}


.section-pad {
  padding: 50px 0 40px;
}


.btn-main,
.btn-soft,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  background: var(--blue);
}

.btn-main:hover,
.cta-btn:hover {
  color: #fff;
  background: var(--blue-dark);
}

.btn-soft {
  background: var(--green);
}

.btn-soft:hover {
  color: #fff;
  background: #356d4d;
}


.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
}
.section-heading .title_dess{font-size: 16px;color: var(--muted);line-height: 24px;}
.section-heading .title_sub{font-size: 24px;font-weight: 300;margin-bottom: 10px;}
.section-heading img {
  width: 50px;
  height: 39px;
  margin: 0 auto 3px;
  object-fit: contain;
}

.section-heading p,
.why-kicker {
  color: var(--green);
  margin: 0;
  text-align: center;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 24.2px */
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
}

.section-heading span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}


.cta {
  padding: 30px 0;
  background: url("../images/bg-booking.png") center/cover no-repeat;
}

.cta h2 {
  margin: 0;
  font-size: 31px;
}

.cta p {
  margin: 0;
  color: #5e7585;
  font-size: 20px;
}

.cta-btn {
  min-width: 232px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  background: transparent;
  font-weight: 600;
}

.cta-btn:hover {
  color: #fff;
}

.cta-btn i {
  margin-left: 12px;
}

.footer {
  padding: 42px 0 0;
  color: #d7e5ef;
  background: var(--blue);
}

.footer-logo {
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  display: block;
  max-height: 100px;
}
.footer-logo img{max-height: 100%;height: 100px;}
.footer p,
.footer a {
  color: #d7e5ef;
  font-size: 13px;
}

.footer h3 {
  margin: 20px 0 22px;
  color: #FFF;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 104%; /* 24.96px */
  text-transform: uppercase;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li {
  margin-bottom: 7px;
}

.footer li::before {
  content: "\f105";
  margin-right: 8px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.socials {
  display: flex;
  gap: 11px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--blue);
  font-size: 20px;
  background: #fff;
}

.map-box {
  width: 100%;
  margin-top: 10px;
  border-radius: 4px;
}
.map-box iframe{width: 100%;height: 225px;border-radius: 10px;}
.copyright {
  margin-top: 30px;
  padding: 16px 0;
  color: #d7e5ef;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, .28);
}


.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--blue);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .48;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 63, 104, .78), rgba(18, 63, 104, .18));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  justify-content: center;
}

.breadcrumb-mini a,
.breadcrumb-mini span {
  color: rgba(255, 255, 255, .86);
}

.page-hero h1,
.page-title,
.detail-title,
.content-block h2,
.info-panel h3,
.booking-panel h3,
.news-card h3 {
  font-family: DomaineLocal, Georgia, serif;
}

.page-hero h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1;
  overflow-wrap: anywhere;
  text-align: center;
  margin-bottom: 14px;
}

.page-hero p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 16px;
  text-align: center;
  width: 700px;
  margin: 0px auto;
}

.page-title {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 42px;
  line-height: 1.08;
}

.filter-strip,
.booking-card,
.info-panel,
.booking-panel,
.contact-form {
  border: 1px solid #e1e9ec;
  border-radius: 8px;
  background: #fff;
}

.filter-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0;
  margin: -39px 0 42px;
  position: relative;
  z-index: 2;
}

.filter-strip label,
.booking-panel label,
.contact-form label,
.booking-card label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
  color: #87959c;
  font-size: 11px;
  font-weight: 700;
}

.filter-strip label {
  padding: 18px 22px;
  border-right: 1px solid #e3e8eb;
}

.filter-strip input,
.filter-strip select,
.booking-panel input,
.booking-panel select,
.contact-form input,
.contact-form textarea,
.booking-card input,
.booking-card select,
.booking-card textarea {
  width: 100%;
  border: 0;
  outline: 0;
  color: #334d5d;
  font: 500 15px "Inter", sans-serif;
  background: transparent;
}

.filter-strip button {
  min-width: 92px;
  border: 0;
  color: #fff;
  font-size: 26px;
  background: var(--blue);
}
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.feature-pills span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  background: #eef6f4;
}


.amenity-grid,
.policy-grid,
.service-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.amenity-item,
.policy-item,
.service-icon-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid #e1e9ec;
  border-radius: 8px;
  background: #fff;
}

.amenity-item i,
.policy-item i,
.service-icon-item i {
  color: var(--green);
  font-size: 22px;
  margin-top: 2px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: #405867;
}

.check-list i {
  margin-top: 4px;
  color: var(--green);
}
.title_icon {padding-top: 50px;background: url(../images/icon-title.svg) no-repeat center top;}
.section-heading-home{
}
.section-heading-home .title_sub{margin-bottom: 5px;color: var(--green);text-align: center;font-size: 22px;font-style: normal;font-weight: 400;line-height: 110%; /* 24.2px */text-transform: uppercase;}
.section-heading-home .title_dess{
}
.section-heading-home .title_dess h2{font-size: 32px;font-weight: 400;}
.section-heading-home .title_dess p{display: block;margin-top: 12px;color: var(--muted);font-size: 16px;text-transform: inherit;}
.list_lienhe{
}
.list_lienhe p{display: flex;align-items: center;gap: 10px;font-size: 14px;}
.list_lienhe p i{font-size: 17px;}
.title_page{}
.title_page .title_sub{color: var(--green);font-family: Inter;font-size: 22px;font-style: normal;font-weight: 400;line-height: 110%;margin-bottom: 0;}
.title_page h2{color: var(--blue);font-size: 32px;font-style: normal;font-weight: 400;line-height: 110%;margin-top: 10px;font-family: DomaineLocal, Georgia, serif;}
.service-list-card p.why-kicker{display:none}
.contact-map-embed iframe{width: 100%;height: 300px;border-radius: 20px;}