body {
  background: #fff;
  font-family: "Mukta Mahee", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.9;
  color: #555;
}

::-moz-selection {
  color: #fff;
  background: #8b5a2b;
}

::selection {
  color: #fff;
  background: #8b5a2b;
}

:root {
  --primary: #8b5a2b;
  --primary-hover: #764c24;
  --primary-active: #684320;
}

a {
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  text-decoration: none;
  color: var(--primary);
}

a:hover {
  text-decoration: none;
  color: var(--primary-hover);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.15;
  margin-bottom: 24px;
  color: #1c1c1c;
}

p {
  font-family: "Mukta Mahee", sans-serif;
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 28px;
}

.container-fluid {
  max-width: 1600px;
}

.btn {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 50px;
}

.btn.uppercase {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.2em;
}

.btn,
.form-control {
  outline: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn:focus,
.btn:active,
.form-control:focus,
.form-control:active {
  outline: none;
}

.btn-primary {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  color: #fff;
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(139, 90, 43, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(139, 90, 43, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: var(--primary-active);
  border-color: var(--primary-active);
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(139, 90, 43, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(139, 90, 43, 0.5);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(139, 90, 43, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(139, 90, 43, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: var(--primary);
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: var(--primary-active);
  border-color: var(--primary-active);
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(139, 90, 43, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(139, 90, 43, 0.5);
}

.badge-primary {
  color: #fff;
  background-color: var(--primary);
}

.bg-primary {
  background-color: var(--primary) !important;
}

.text-primary {
  color: var(--primary) !important;
}

a.text-primary:focus,
a.text-primary:hover {
  color: var(--primary-hover) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

.page-link {
  color: var(--primary);
}

.page-link:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(139, 90, 43, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(139, 90, 43, 0.25);
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--primary);
  background-color: var(--primary);
}

.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(139, 90, 43, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(139, 90, 43, 0.25);
}

.custom-checkbox
  .custom-control-input:indeterminate
  ~ .custom-control-label::before {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-control {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  height: 50px;
  border-width: 2px;
}

textarea.form-control {
  height: inherit;
}

.site-header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 60px 0;
  z-index: 2;
}

.menu-open .site-header {
  position: fixed;
}

.site-logo a {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  font-family: "Playfair Display", Georgia, serif;
}

.site-navbar {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  min-height: 300px;
  overflow-y: scroll;
}

.site-navbar nav {
  text-align: left;
}

.site-navbar nav .menu {
  font-family: "Playfair Display", Georgia, serif;
}

.site-navbar nav .menu li a {
  color: #000;
  font-size: 40px;
  padding: 5px 10px;
  position: relative;
}

.site-navbar nav .menu li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 50%;
  width: 0%;
  z-index: -1;
  background: var(--primary);
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.site-navbar nav .menu li a:hover:before {
  width: 100%;
}

.site-navbar nav .menu li.active a:before {
  width: 100%;
}

.site-navbar .extra-info a {
  color: #000;
}

.site-navbar .extra-info ul li a {
  color: #000;
}

.site-navbar .extra-info h3 {
  font-family: "Mukta Mahee", arial, sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #adb5bd;
  margin-bottom: 30px;
}

.site-navbar .extra-info p {
  color: #212529;
}

.full-height {
  height: 100vh;
  min-height: 700px;
}

.site-hero {
  background-size: cover;
  height: 100vh;
  min-height: 700px;
  width: 100%;
}

.site-hero .scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #fff;
}

.site-hero.overlay:before {
  background: rgba(0, 0, 0, 0.45);
  content: "";
  position: absolute;
  height: 100vh;
  min-height: 700px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.site-hero-inner {
  height: 100vh;
  min-height: 700px;
}

.site-hero-inner .heading {
  font-size: clamp(42px, 5vw, 72px);
  font-family: "Playfair Display", Georgia, serif;
  color: #fff;
  line-height: 1;
  font-weight: 400;
}

@media (max-width: 991.98px) {
  .site-hero-inner .heading {
    font-size: clamp(38px, 8vw, 60px);
  }
}

.site-hero-inner .sub-heading {
  font-size: 30px;
  font-weight: 200;
  color: #fff;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .site-hero-inner .sub-heading {
    font-size: 18px;
  }
}

.page-inside .site-hero-inner,
.page-inside {
  height: 70vh;
  min-height: 500px;
}

.page-inside.overlay:before {
  height: 70vh;
  min-height: 500px;
}

.menu-open .site-menu-toggle span {
  background: #fff;
}

.site-menu-toggle {
  float: right;
  width: 40px;
  height: 45px;
  position: relative;
  margin: 0px auto;
  z-index: 200;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.site-menu-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.site-menu-toggle span:nth-child(1) {
  top: 0px;
}

.site-menu-toggle span:nth-child(2) {
  top: 10px;
}

.site-menu-toggle span:nth-child(3) {
  top: 20px;
}

.site-menu-toggle.open span:nth-child(1) {
  top: 13px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.site-menu-toggle.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.site-menu-toggle.open span:nth-child(3) {
  top: 13px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.section {
  padding: 7em 0;
}

@media (max-width: 991.98px) {
  .section {
    padding: 3em 0;
  }
}

@media (max-width: 991.98px) {
  .lead {
    font-size: 16px;
  }
}

.visit-section .heading {
  font-size: 15px;
  text-transform: uppercase;
  font-family: "Mukta Mahee", arial, sans-serif;
  color: #b3b3b3;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
}

.visit-section .visit a {
  color: #000;
}

.visit-section .visit a:hover {
  color: var(--primary);
}

.visit-section .visit img {
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
}

.visit-section .visit h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.visit-section .reviews-star span {
  font-size: 18px;
  color: var(--primary);
}

.visit-section .reviews-count {
  color: #adb5bd;
  font-style: italic;
}

.heading-serif,
.testimonial-section .heading,
.slider-section .heading,
.blog-post-entry .heading {
  font-size: clamp(42px, 5vw, 72px);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: #1c1c1c;
}

@media (max-width: 991.98px) {
  .heading-serif,
  .testimonial-section .heading,
  .slider-section .heading,
  .blog-post-entry .heading {
    font-size: clamp(32px, 8vw, 52px);
  }
}

.bg-pattern {
  background: #e9ecef url("../img/round.png");
}

.slider-section {
  position: relative;
}

.blog-post-entry {
  position: relative;
  margin-top: -500px;
  padding-top: 500px;
}

@media (max-width: 991.98px) {
  .blog-post-entry {
    margin-top: -300px;
    padding-top: 300px;
  }
}

.half .image,
.half .text {
  width: 50%;
}

@media (max-width: 991.98px) {
  .half .image,
  .half .text {
    width: 100%;
  }
}

.half .image {
  background-size: cover;
  background-position: center center;
}

@media (max-width: 991.98px) {
  .half .image {
    height: 300px;
  }
}

.half .text {
  padding: 100px 7%;
}

@media (max-width: 991.98px) {
  .half .text {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.half .text h2 {
  font-size: clamp(42px, 5vw, 72px);
}

@media (max-width: 991.98px) {
  .half .text h2 {
    font-size: clamp(32px, 8vw, 52px);
  }
}

.testimonial blockquote {
  padding: 0;
}

.testimonial blockquote p {
  line-height: 1.5;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  color: #1c1c1c;
  font-style: italic;
}

.testimonial .author-image img {
  width: 70px;
}

.post .media-custom {
  background: #fff;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
}

.post .media-custom:hover,
.post .media-custom:focus {
  -webkit-box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.post .media-custom a {
  color: #000;
}

.post .media-custom a:hover {
  color: var(--primary);
}

.post .media-custom .media-body {
  padding: 10px 30px;
}

.post .media-custom h2 {
  font-size: 26px;
}

.media-custom .meta-post {
  color: #ced4da;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.owl-carousel .owl-item {
  opacity: 0.4;
}

.owl-carousel .owl-item.active {
  opacity: 1;
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -10px;
}

.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-prev:focus,
.owl-carousel .owl-nav .owl-prev:active,
.owl-carousel .owl-nav .owl-next:hover,
.owl-carousel .owl-nav .owl-next:focus,
.owl-carousel .owl-nav .owl-next:active {
  outline: none;
}

.owl-carousel .owl-nav .owl-prev span:before,
.owl-carousel .owl-nav .owl-next span:before {
  font-size: 40px;
}

.owl-carousel .owl-nav .owl-prev {
  left: 30px !important;
}

.owl-carousel .owl-nav .owl-next {
  right: 30px !important;
}

.owl-carousel .owl-dots {
  text-align: center;
}

.owl-carousel .owl-dots .owl-dot {
  border-width: 2px !important;
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
}

.owl-carousel.home-slider {
  z-index: 1;
  position: relative;
}

.owl-carousel.home-slider .owl-nav {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.owl-carousel.home-slider .owl-nav button {
  color: #fff;
}

.owl-carousel.home-slider:focus .owl-nav,
.owl-carousel.home-slider:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}

.owl-carousel.home-slider .slider-item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: calc(100vh - 117px);
  min-height: 700px;
  position: relative;
}

.owl-carousel.home-slider .slider-item .slider-text {
  color: #fff;
  height: calc(100vh - 117px);
  min-height: 700px;
}

.owl-carousel.home-slider .slider-item .slider-text h1 {
  font-size: 40px;
  color: #fff;
  line-height: 1.2;
  font-weight: 800 !important;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .owl-carousel.home-slider .slider-item .slider-text h1 {
    font-size: 40px;
  }
}

.owl-carousel.home-slider .slider-item .slider-text p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
  color: white;
}

.owl-carousel.home-slider .slider-item.dark .child-name {
  color: #000;
}

.owl-carousel.home-slider .slider-item.dark h1 {
  color: #000;
}

.owl-carousel.home-slider .slider-item.dark p {
  color: #000;
}

.owl-carousel.home-slider .owl-dots {
  position: absolute;
  bottom: 100px;
  width: 100%;
}

.owl-carousel.home-slider .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: none !important;
  position: relative;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  background: #fff;
}

.owl-carousel.home-slider .owl-dots .owl-dot.active {
  border: 2px solid white;
  background: none;
}

.owl-carousel.major-caousel {
  -webkit-box-shadow: 0 10px 70px -10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 70px -10px rgba(0, 0, 0, 0.2);
}

.owl-carousel.major-caousel .owl-stage-outer {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.owl-carousel.major-caousel .owl-stage-outer {
  padding-top: 30px;
  padding-bottom: 30px;
}

.owl-carousel.major-caousel .slider-item {
  height: inherit;
  min-height: inherit;
}

.owl-carousel.major-caousel .slider-item img {
  margin-bottom: 0;
}

.owl-carousel.major-caousel .owl-nav {
  opacity: 1;
  visibility: visible;
}

.owl-carousel.major-caousel .owl-nav .owl-prev,
.owl-carousel.major-caousel .owl-nav .owl-next {
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: #495057;
}

.owl-carousel.major-caousel .owl-nav .owl-prev:hover,
.owl-carousel.major-caousel .owl-nav .owl-prev:focus,
.owl-carousel.major-caousel .owl-nav .owl-next:hover,
.owl-carousel.major-caousel .owl-nav .owl-next:focus {
  color: #6c757d;
  outline: none;
}

.owl-carousel.major-caousel .owl-nav .owl-prev.disabled,
.owl-carousel.major-caousel .owl-nav .owl-next.disabled {
  color: #dee2e6;
}

.owl-carousel.major-caousel .owl-nav .owl-prev {
  left: -60px !important;
}

.owl-carousel.major-caousel .owl-nav .owl-next {
  right: -60px !important;
}

.owl-carousel.major-caousel .owl-dots {
  bottom: 50px !important;
}

@media (max-width: 991.98px) {
  .owl-carousel.major-caousel .owl-dots {
    bottom: 10px !important;
  }
}

.owl-custom-nav {
  float: right;
  position: relative;
  z-index: 10;
}

.owl-custom-nav .owl-custom-prev,
.owl-custom-nav .owl-custom-next {
  padding: 10px;
  font-size: 30px;
  background: #ccc;
  line-height: 0;
  width: 60px;
  text-align: center;
  display: inline-block;
}

.footer-section {
  background: #1a1a1a;
  color: #fff;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-section a:hover {
  color: #fff;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.5);
}

.footer-section .bordertop {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-section .contact-info span.d-block {
  font-style: italic;
  color: #fff;
}

.footer-section .social a {
  font-size: 18px;
  padding: 10px;
}

.footer-section .link li {
  margin-bottom: 10px;
}

.footer-newsletter .form-group {
  position: relative;
}

.footer-newsletter .form-control {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: #fff;
}

.footer-newsletter .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
}

.footer-newsletter .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
}

.footer-newsletter .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
}

.footer-newsletter .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
}

.footer-newsletter .form-control:active,
.footer-newsletter .form-control:focus {
  border-bottom: 1px solid white;
}

.footer-newsletter button[type="submit"] {
  background: none;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}

.side-box,
.sidebar-search {
  padding: 30px;
  background: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.side-box .heading,
.sidebar-search .heading {
  font-size: 18px;
  margin-bottom: 30px;
  font-family: "Mukta Mahee", arial, sans-serif;
}

.post-list li {
  margin-bottom: 20px;
}

.post-list li a > div {
  margin-top: -10px;
}

.post-list li a .meta {
  font-size: 13px;
  color: #adb5bd;
}

.post-list li a .image {
  width: 150px;
}

.post-list li a h3 {
  font-size: 16px;
}

.post-list li:last-child {
  margin-bottom: 0;
}

.sidebar-search .form-group {
  position: relative;
  margin-bottom: 0;
}

.sidebar-search .icon-search {
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sidebar-search .search-input {
  border-color: #dee2e6;
  padding-left: 40px;
  border-radius: 0px;
}

.sidebar-search .search-input:focus,
.sidebar-search .search-input:active {
  border-color: #343a40;
}

.contact-section .contact-info p {
  color: white;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 24px;
}

.contact-section .contact-info p .d-block {
  font-size: 14px;
  letter-spacing: 0.2em;
  font-family: "Mukta Mahee", arial, sans-serif;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.post-categories li {
  display: block;
}

.post-categories li a {
  display: block;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e9ecef;
}

.post-categories li a .count {
  position: absolute;
  top: 0;
  right: 0;
  color: #6c757d;
}

.custom-pagination .page-item .page-link {
  text-align: center;
  border: none;
  background: none;
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  padding: 0;
  line-height: 50px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.custom-pagination .page-item.active .page-link {
  background: #dc3545;
  -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.2);
}
/*  */

/* Sezione full width come l'esempio */
.vica-section {
  background: #fff;
  margin-top: 100px;
}

/* Colonna immagine: stessa altezza del testo */
.vica-media {
  min-height: 520px; /* desktop base */
}

/* Immagine che “taglia” bene */
.vica-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Colonna testo: padding ampio e centratura verticale */
.vica-text {
  display: flex;
  align-items: center;
  background: #fff;
  min-height: 520px;
}

.vica-text-inner {
  padding: clamp(24px, 4vw, 72px);
  max-width: 720px; /* evita righe troppo lunghe */
}

/* Tipografia stile “hotel luxury” */
.vica-title {
  font-family: "Playfair Display", "Georgia", serif;
  font-weight: 400;
  line-height: 1.05;
  font-size: clamp(40px, 4vw, 72px);
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
  text-align: left;
}

.vica-subtitle {
  font-family: "Allura", "Parisienne", cursive; /* o un font script simile */
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 42px);
  margin: 0 0 22px 0;
  color: #6f8f84; /* verde/grigio soft */
  text-align: left;
}

.vica-lead {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #2c2c2c;
  margin: 0;
  text-align: left;
}

/* Mobile: immagine sopra, testo sotto (già ok con col-12) */
@media (max-width: 991.98px) {
  .vica-media,
  .vica-text {
    min-height: auto;
  }
  .vica-img {
    height: 320px; /* altezza “hero” su mobile */
  }
}

.parallax-text-section {
  padding: 140px 0;
  background: #fff;
  overflow: hidden;
}

.px-line {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.12;
  margin: 0;
  will-change: transform;
}

.px-line.black {
  color: #1c1c1c;
  font-size: clamp(42px, 5vw, 90px);
}
.px-line.green {
  color: #6f8f84;
  font-size: clamp(42px, 5vw, 90px);
}
.px-line.big {
  font-size: clamp(48px, 6vw, 110px);
}

/*  */

/* Sezione generale */
.suites-section {
  background: #fff;
  padding: 80px 0 90px;
  overflow: hidden; /* per il titolo grande */
}

/* Titolo enorme in alto */
.suites-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  color: #6f8f84;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 30px;
  padding: 0 60px;
  font-size: clamp(46px, 7vw, 120px);
}

/* Wrapper immagine */
.suites-image-wrap {
  padding-left: 60px;
}

.suites-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Testo a destra */
.suites-text {
  padding-right: 60px;
  padding-top: 30px; /* spinge un filo verso il basso come nello screenshot */
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  font-size: 18px;
  line-height: 2;
  color: #2b2b2b;
}

/* Bottone outline */
.suites-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 16px 44px;
  border: 1px solid #222;
  color: #222;
  text-decoration: none;
  letter-spacing: 0.12em;
  font-size: 13px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.suites-btn:hover {
  background: #222;
  color: #fff;
  text-decoration: none;
}

/* Responsive: tablet/mobile */
@media (max-width: 991.98px) {
  .suites-title {
    padding: 0 20px;
    margin-bottom: 22px;
  }
  .suites-image-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .suites-text {
    padding: 24px 20px 0;
    max-width: 680px;
  }
}

/* Mobile stretto */
@media (max-width: 575.98px) {
  .suites-section {
    padding: 60px 0 70px;
  }
  .suites-text {
    font-size: 16px;
    line-height: 1.9;
  }
  .suites-btn {
    width: 100%;
    text-align: center;
  }
}

/*  */

/* Discover section */
.discover-section {
  padding: 120px 0;
  background: #fff;
}

.discover-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.15;
  margin-bottom: 24px;
  color: #1c1c1c;
}

/* piccolo elemento di respiro/luxury */
.discover-divider {
  width: 60px;
  height: 1px;
  background: #6f8f84;
  margin: 0 auto 42px;
}

/* Testo */
.discover-text {
  font-family: "Mukta Mahee", sans-serif;
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 28px;
}

/* ultimo paragrafo più soft */
.discover-text.muted {
  color: #6a6a6a;
}

/* Mobile */
@media (max-width: 768px) {
  .discover-section {
    padding: 80px 0;
  }

  .discover-text {
    font-size: 16px;
    line-height: 1.8;
  }
}
/* serzion3 immagini parallasse */

/* gallery */
.floating-gallery {
  background: #fff;
  padding: 160px 0 180px;
  overflow: hidden;
}

.floating-item {
  position: relative;
  margin-bottom: 120px;
}

/* IMPORTANTISSIMO: il wrapper deve "tagliare" */
.floating-media {
  position: relative;
  overflow: hidden;
  height: 520px; /* altezza fissa => parallax visibile */
}

/* immagine più grande del contenitore */
.floating-media img {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 120%; /* più alta del box */
  object-fit: cover;
  transform: translate3d(0, -50%, 0);
  will-change: transform;
}

/* posizionamenti */
.fi-left {
  width: 38%;
  margin-left: 6%;
}
.fi-right {
  width: 38%;
  margin-left: auto;
  margin-right: 6%;
}
.fi-center {
  width: 52%;
  margin-left: auto;
  margin-right: auto;
}
.floating-item.small {
  width: 30%;
}

/* responsive */
@media (max-width: 991.98px) {
  .floating-gallery {
    padding: 100px 0 110px;
  }
  .floating-item,
  .fi-left,
  .fi-right,
  .fi-center,
  .floating-item.small {
    width: 90%;
    margin: 0 auto 60px;
  }
  .floating-media {
    height: 320px;
  }
  .floating-media img {
    height: 130%;
  }
}
/* hotel.css */
/* Panel layout (coerente col template Colorlib + il tuo stile) */
.room-panel {
  padding: 80px 70px;
  background: #fff;
}

.room-eyebrow {
  font-family: "Mukta Mahee", sans-serif;
  font-size: 12px;
  letter-spacing: 0.35em;
  color: #8b8b8b;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.room-name {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: 42px;
  margin: 0 0 8px;
  color: #b28a57; /* tono caldo elegante, cambia se vuoi */
}

.room-subtitle {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 34px;
  color: #1c1c1c;
}

/* 2 colonne: descrizione a sinistra, amenities a destra */
.room-grid {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.room-desc {
  /* flex: 1 1 55%; */
}

.room-desc p {
  font-family: "Mukta Mahee", sans-serif;
  font-size: 16px;
  line-height: 1.95;
  color: #5a5a5a;
  margin: 0;
}

.room-amenities {
  flex: 1 1 45%;
  display: flex;
  gap: 40px;
  justify-content: flex-start;
}

.amenities {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 190px;
}

.amenities li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: "Mukta Mahee", sans-serif;
  font-size: 15px;
  color: #2f2f2f;
}

.amenities li .fa {
  color: #b28a57; /* stessa nota calda */
  width: 18px;
  text-align: center;
  opacity: 0.95;
}

/* rules */
.room-rules {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid #eee;
}

.room-rules h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 8px;
  color: #1c1c1c;
}

.room-rules p {
  margin: 0;
  font-family: "Mukta Mahee", sans-serif;
  color: #6a6a6a;
}

/* Responsive */
@media (max-width: 991.98px) {
  .room-panel {
    padding: 55px 24px;
  }

  .room-grid {
    flex-direction: column;
    gap: 28px;
  }

  .room-amenities {
    gap: 22px;
    flex-wrap: wrap;
  }

  .amenities {
    min-width: 0;
    width: 100%;
  }

  .room-subtitle {
    font-size: 34px;
  }
}
/* mappa google */
.where-section {
  padding: 120px 0;
  background: #fff;
}

.where-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(52px, 7vw, 110px);
  line-height: 0.9;
  margin-bottom: 24px;
  color: #1c1c1c;
}

.where-map {
  height: 520px;
  border: 1px solid #d9d9d9;
  background: #f3f3f3;
  overflow: hidden;
}

/* mobile */
@media (max-width: 768px) {
  .where-section {
    padding: 80px 0;
  }
  .where-map {
    height: 360px;
  }
}

/* rende la mappa più “soft” come screenshot */
.where-map .leaflet-tile {
  filter: grayscale(100%) contrast(95%) brightness(105%);
}

/* stile Info posizione */

/* Colonna sinistra stile elegante */
.where-left {
  padding-top: 140px; /* così parte più “in basso” come nello screen */
}

.where-left-inner {
  max-width: 420px;
  font-family: "Mukta Mahee", sans-serif;
  color: #2b2b2b;
}

.where-left-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 14px;
}

.where-left-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.95;
  font-size: 16px;
  color: #4f4f4f;
}

.where-left-list li {
  margin-bottom: 10px;
}

/* mobile: meno padding */
@media (max-width: 991.98px) {
  .where-left {
    padding-top: 40px;
  }
  .where-left-inner {
    max-width: 100%;
  }
}

/* performance */
.parallax-up {
  will-change: transform;
}
/* parallax verticale senza conflitti con altri transform */
.parallax-up .where-left-inner {
  --py: 0px;
  transform: translate3d(0, var(--py), 0);
  will-change: transform;
}
/* Layout generale sezione */
.where-section {
  padding: 120px 0;
  background: #fff;
}

/* Sticky colonna sinistra (desktop) */
@media (min-width: 992px) {
  .where-sticky {
    position: sticky;
    top: 110px; /* distanza dall'header */
    padding-right: 30px;
  }
}

/* testo sinistro */
.where-left {
  padding-top: 140px;
}
@media (min-width: 992px) {
  .where-left {
    padding-top: 0;
  } /* con sticky non serve grande offset */
}

.where-left-inner {
  max-width: 420px;
  font-family: "Mukta Mahee", sans-serif;
  color: #2b2b2b;

  /* parallax via css variable (anti-conflitto) */
  --py: 0px;
  transform: translate3d(0, var(--py), 0);
  will-change: transform;
}

/* Titoletti e liste */
.where-left-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 14px;
}
.where-left-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.95;
  font-size: 16px;
  color: #4f4f4f;
}
.where-left-list li {
  margin-bottom: 10px;
}

/* Mobile: niente sticky, più compatto */
@media (max-width: 991.98px) {
  .where-left {
    padding-top: 40px;
  }
  .where-left-inner {
    max-width: 100%;
  }
}

/* mappa (se già ce l'hai, ok) */
.where-map {
  height: 520px;
  border: 1px solid #d9d9d9;
  background: #f3f3f3;
  overflow: hidden;
}
@media (max-width: 768px) {
  .where-map {
    height: 360px;
  }
}

/* tiles “soft” */
.where-map .leaflet-tile {
  filter: grayscale(100%) contrast(95%) brightness(105%);
}
.where-left-inner {
  --py: 0px;
  transform: translate3d(0, var(--py), 0) !important;
  will-change: transform;
}
.hero-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
}

.quick-btn .icon {
  font-size: 20px;
}

/* Hover effetto */
.quick-btn:hover {
  transform: translateY(-2px);
  background: #fff;
  color: #000;
}

/* Varianti */
.quick-btn.whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.quick-btn.whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
}

/* Mobile */
@media (max-width: 576px) {
  .hero-quick-actions {
    flex-direction: column;
  }

  .quick-btn {
    justify-content: center;
    width: 100%;
  }
}
/* Form card */
.elegant-contact-form {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

/* Header */
.form-header h3 {
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.form-header p {
  color: rgba(17, 17, 17, 0.6);
  margin-bottom: 0;
}

/* Label */
.form-label-elegant {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 8px;
}

/* Input & textarea */
.form-control-elegant {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 12px 14px;
  font-size: 15px;
  background: #fff;
  transition: all 0.25s ease;
}

.form-control-elegant::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.form-control-elegant:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

/* Bottone */
.btn-elegant {
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  background: #111;
  color: #fff;
  border: none;
  transition: all 0.25s ease;
}

.btn-elegant:hover {
  background : #000;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* Mobile */
@media (max-width: 576px) {
  .elegant-contact-form {
    margin-top: 0;
  }
}
/* Wrapper azioni form */
.form-actions {
  width: 100%;
}

/* Container quick actions */
.form-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* Bottoni adattati al form */
.form-quick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 12px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  background: #f7f7f7;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.12);

  transition: all 0.25s ease;
}

/* Icone */
.form-quick-btn .icon {
  font-size: 18px;
}

/* Hover */
.form-quick-btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-1px);
}

/* WhatsApp evidenziato ma non aggressivo */
.form-quick-btn.whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.form-quick-btn.whatsapp:hover {
  background: #1ebe5d;
}

/* Mobile */
@media (max-width: 576px) {
  .form-quick-actions {
    grid-template-columns: 1fr;
  }

  .form-quick-btn {
    width: 100%;
  }
}
.home-slider,
.home-slider .slider-item {
  height: 100vh;
}

.home-slider .slider-item img {
  height: 100vh;
  width: 100%;
  object-fit: contain; /* mantiene le proporzioni */
}
.where-section{
  padding-bottom: 0;   /* avvicina al footer */
  margin-bottom: 0;
}

.where-left{
  margin-top: 0;       /* annulla qualsiasi offset */
}

@media (min-width: 992px){
  .where-section{
    padding-bottom: 40px; /* un po' di respiro su desktop */
  }
}
.where-section {
  padding: 80px 0 40px;   /* meno spazio sotto (footer più vicino) */
}

.where-left {
  position: sticky;
  top: 110px;             /* distanza dalla navbar/header */
  align-self: flex-start; /* importantissimo con flex/row */
}

.where-left-inner {
  max-width: 440px;       /* non farlo diventare troppo largo */
  padding-right: 10px;
}

.where-left-title {
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.where-left-list {
  margin: 0 0 26px;
  padding-left: 18px;     /* rientro bullet controllato */
}

.where-left-list li {
  margin: 0 0 10px;
  line-height: 1.6;
  opacity: 0.95;
}

/* se vuoi separatori “eleganti” tra blocchi */
.where-left-title.mt-5 {
  margin-top: 28px !important; /* override bootstrap mt-5 troppo grande */
}

/* Mobile: niente sticky, layout naturale */
@media (max-width: 991.98px) {
  .where-section {
    padding: 50px 0 30px;
  }

  .where-left {
    position: relative;
    top: auto;
    margin-bottom: 24px;
  }

  .where-left-inner {
    max-width: 100%;
    padding-right: 0;
  }
}
.suites-title {
  font-family: "Playfair Display", serif;
  line-height: 1.05;
  margin: 0;
}

/* dimensioni */
.suites-big {
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 800;
}

.suites-medium {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
}

.suites-regular {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.suites-small {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-top: 40px;
  opacity: 0.85;
}

/* mobile tuning */
@media (max-width: 768px) {
  .suites-title {
    text-align: center !important;
  }

  .suites-small {
    margin-top: 24px;
  }
}
#roomGalleryModal .modal-body {
  padding: 15px;
}

#roomGalleryModal .owl-nav button {
  outline: none;
}
.logo-link{
  display: flex;
  align-items: center;
  gap: 1rem;
}