
/*=================== fonts ====================*/
/* Fonts loaded via <link> tags in HTML for better performance */

/*=================== COLOR SCHEME CHANGE ====================*/
/* Date: February 3, 2026
 * Original secondary/accent color: #cca772 (gold)
 * New secondary/accent color: #f30606 (bright vivid red)
 *
 * Color History:
 * - #cca772 (gold) - Original color
 * - #ff6b6b (light coral red) - First attempt
 * - #E53935 (rouge vif/bright red) - Second attempt
 * - #f30606 (bright vivid red) - Current color
 *
 * TO REVERSE: Find and replace all #f30606 with #cca772
 * Command: sed -i 's/#f30606/#cca772/gi' css/style.css
 */
/*============================================================*/

/* Medium Layout: 1280px */
/* Tablet Layout: 768px */
/* Mobile Layout: 320px */
/* Wide Mobile Layout: 480px */
/* =================================== */
/*  Basic Style 
/* =================================== */
html {
  touch-action: manipulation; /* Disables double-tap zoom but allows pinch */
}
body {
  color: #555555;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.667; }

/* =================================== */
/*  Typography 
/* =================================== */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }

a:hover {
  text-decoration: none; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  color: #222222;
  font-weight: 700; }

h1,
.h1 {
  font-size: 70px;
  font-weight: 700; }

h2,
.h2 {
  font-size: 32px;
  font-weight: 700; }
  @media (min-width: 600px) {
    h2,
    .h2 {
      font-size: 42px; } }

a:focus-visible {
  outline: 2px solid #f30606;
  outline-offset: 2px; }

button {
  cursor: pointer; }

.button {
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  transition: all .3s ease;
  cursor: pointer;
  text-transform: uppercase;
  color: #fff; }
  .button--active {
    padding: 10px 32px !important;
    background: #f30606; }
  .button:focus {
    outline: 2px solid #f30606;
    outline-offset: 2px;
    box-shadow: none; }

.owl-carousel .owl-dots button:focus {
  box-shadow: none !important;
  outline: 0; }

.section-margin {
  margin: 70px 0; }
  @media (min-width: 1000px) {
    .section-margin {
      margin: 130px 0; } }
  .section-margin--small {
    margin: 35px 0; }
    @media (min-width: 1000px) {
      .section-margin--small {
        margin: 65px 0; } }

.section-padding {
  padding: 60px 0; }
  @media (min-width: 1000px) {
    .section-padding {
      padding: 130px 0; } }

.bg-porcelain {
  background: #f7f9f9; }

.nice-select {
  width: 100%;
  height: 50px;
  border-radius: 0;
  border-color: #ECECEC;
  color: #999999;
  padding-top: 4px; }
  .nice-select::after {
    right: 16px; }
  .nice-select .list {
    min-width: 200px; }

.pb-20px {
  padding-bottom: 20px; }

.pb-80px {
  padding-bottom: 40px; }
  @media (min-width: 1000px) {
    .pb-80px {
      padding-bottom: 80px; } }

.mb-30px {
  margin-bottom: 30px; }

.py-80px {
  padding-top: 80px;
  padding-bottom: 80px; }

@media (min-width: 1200px) {
  .row > .gutters-19 {
    padding-right: 9.5px;
    padding-left: 9.5px; } }

.header_area {
  position: absolute;
  width: 100%;
  z-index: 9999;
  background: #fff;
  transition: background 0.4s, all 0.3s linear; }
  .header_area .navbar {
    background: transparent;
    padding: 0px;
    border: 0px;
    border-radius: 0px; }
    @media (max-width: 992px) {
      .header_area .navbar {
        box-shadow: 0px 9px 16px 0px rgba(0, 0, 0, 0.1); } }
    .header_area .navbar .nav .nav-item {
      margin-right: 45px; }
      .header_area .navbar .nav .nav-item .nav-link {
        font-family: "Playfair Display", serif;
        text-transform: uppercase;
        color: #222222;
        padding: 22px 4px 22px 0;
        display: inline-block; }
        .header_area .navbar .nav .nav-item .nav-link:after {
          display: none; }
        @media (max-width: 991px) {
          .header_area .navbar .nav .nav-item .nav-link {
            color: #222222;
            padding: 12px 4px 12px 0; } }
      .header_area .navbar .nav .nav-item.active .nav-link {
        color: #f30606; }
      .header_area .navbar .nav .nav-item.submenu {
        position: relative; }
        .header_area .navbar .nav .nav-item.submenu ul {
          border: none;
          padding: 0px;
          border-radius: 0px;
          box-shadow: none;
          margin: 0px;
          background: #fff; }
          @media (min-width: 992px) {
            .header_area .navbar .nav .nav-item.submenu ul {
              position: absolute;
              top: 120%;
              left: 0px;
              min-width: 200px;
              text-align: left;
              opacity: 0;
              transition: all 300ms ease-in;
              visibility: hidden;
              display: block;
              border: none;
              padding: 0px;
              border-radius: 0px; } }
          .header_area .navbar .nav .nav-item.submenu ul:before {
            content: "";
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 10px 10px 0 10px;
            border-color: #eeeeee transparent transparent transparent;
            position: absolute;
            right: 24px;
            top: 45px;
            z-index: 3;
            opacity: 0;
            transition: all 400ms linear; }
          .header_area .navbar .nav .nav-item.submenu ul .nav-item {
            display: block;
            float: none;
            margin-right: 0px;
            border-bottom: 1px solid #ededed;
            margin-left: 0px;
            transition: all 0.4s linear; }
            .header_area .navbar .nav .nav-item.submenu ul .nav-item.active .nav-link {
              color: #f30606; }
            .header_area .navbar .nav .nav-item.submenu ul .nav-item .nav-link {
              line-height: 45px;
              padding: 0px 30px;
              transition: all 150ms linear;
              display: block;
              margin-right: 0px; }
            .header_area .navbar .nav .nav-item.submenu ul .nav-item:last-child {
              border-bottom: none; }
            .header_area .navbar .nav .nav-item.submenu ul .nav-item:hover .nav-link {
              color: #f30606; }
        @media (min-width: 992px) {
          .header_area .navbar .nav .nav-item.submenu:hover ul {
            visibility: visible;
            opacity: 1;
            top: 100%; } }
        .header_area .navbar .nav .nav-item.submenu:hover ul .nav-item {
          margin-top: 0px; }
      .header_area .navbar .nav .nav-item:last-child {
        margin-right: 0px; }
    .header_area .navbar .primary-btn {
      border: 1px solid #ffffff;
      padding: 7px 28px;
      color: #ffffff;
      letter-spacing: 1px;
      font-weight: 500;
      margin-top: 20px; }
      @media (max-width: 991px) {
        .header_area .navbar .primary-btn {
          display: none; } }
    .header_area .navbar .search {
      background: transparent;
      border: 0px;
      font-size: 12px;
      line-height: 60px;
      display: inline-block;
      color: #ffffff;
      padding-left: 30px;
      cursor: pointer; }
      @media (max-width: 991px) {
        .header_area .navbar .search {
          color: #ffffff; } }
      .header_area .navbar .search i {
        font-weight: 600; }
  .header_area.navbar_fixed .main_menu {
    background: #fff;
    position: fixed;
    width: 100%;
    top: -70px;
    left: 0;
    right: 0;
    -webkit-transform: translateY(70px);
    -moz-transform: translateY(70px);
    -ms-transform: translateY(70px);
    -o-transform: translateY(70px);
    transform: translateY(70px);
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1); }
    .header_area.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link {
      line-height: 30px; }
    .header_area.navbar_fixed .main_menu .navbar .primary-btn {
      margin-top: 15px; }

@media (max-width: 991px) {
  /* Main Menu Area css
	============================================================================================ */
  .navbar-toggler {
    border: none;
    border-radius: 0px;
    padding: 0px;
    cursor: pointer;
    margin-top: 27px;
    margin-left: 10px;
    margin-bottom: 23px; }
    .navbar-toggler:focus {
      outline: 2px solid #f30606;
      outline-offset: 2px;
      box-shadow: none; }
  .header_area {
    position: absolute; }
  .navbar-toggler[aria-expanded="false"] span:nth-child(2) {
    opacity: 1; }
  .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0; }
  .navbar-toggler[aria-expanded="true"] span:first-child {
    transform: rotate(-45deg);
    position: relative;
    top: 7.5px; }
  .navbar-toggler[aria-expanded="true"] span:last-child {
    transform: rotate(45deg);
    bottom: 6px;
    position: relative; }
  .navbar-toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background: #f30606;
    margin: auto;
    margin-bottom: 4px;
    transition: all 400ms linear;
    cursor: pointer; }
  .navbar .container {
    padding-left: 15px;
    padding-right: 15px; }
  .nav {
    padding: 0px 0px; }
  .header_area + section,
  .header_area + row,
  .header_area + div {
    margin-top: 117px; }
  .header_top .nav {
    padding: 0px; }
  .header_area .navbar .nav .nav-item .nav-link {
    margin-right: 0px;
    display: block;
    border-bottom: 1px solid #ededed33;
    border-radius: 0px; }
  .header_area .navbar .search {
    margin-left: 0px; }
  .header_area .navbar-collapse {
    max-height: 340px;
    overflow-y: scroll; }
  .header_area .navbar .nav .nav-item.submenu ul .nav-item .nav-link {
    padding: 0px 15px; }
  .header_area .navbar .nav .nav-item {
    margin-right: 0px; }
  .header_area + section,
  .header_area + row,
  .header_area + div {
    margin-top: 0; }
  .header_area.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link {
    line-height: 40px; }
  /* End Main Menu Area css*/ }

.header-top {
  padding: 5px 0;
  border-bottom: 1px solid #F0F0F0; }
  @media (min-width: 767px) {
    .header-top {
      padding: 10px 0; } }
  .header-top .logo {
    display: inline-block; }
  .header-top #logo img {
    max-height: 80px;
    width: auto;
    vertical-align: middle; }
  @media (max-width: 767px) {
    .header-top-info {
      margin-bottom: 0; } }
  .header-top-info:last-child {
    margin-bottom: 0; }
  .header-top-info__icon {
    margin-right: 12px; }
    .header-top-info__icon i, .header-top-info__icon span {
      font-size: 22px;
      color: #f30606; }
  .header-top-info .media-body p {
    margin-bottom: 0; }
  .header-top-info .media-body a {
    color: #303030;
    font-weight: bold; }
  .header-top-info:not(:last-child) {
    margin-right: 10px; }
    @media (min-width: 600px) {
      .header-top-info:not(:last-child) {
        margin-right: 50px; } }


.footer-area {
  padding: 120px 0px 120px;
  background: #0b1a2a; }
  @media (max-width: 991px) {
    .footer-area {
      background: #222222;
      padding: 60px 0px; } }
  @media (max-width: 991px) {
    .footer-area .single-footer-widget {
      margin-bottom: 30px; } }
  .footer-area .single-footer-widget p {
    color: #7b838a; }
  .footer-area .single-footer-widget h4 {
    color: #fff;
    margin-bottom: 25px; }
    @media (max-width: 1024px) {
      .footer-area .single-footer-widget h4 {
        font-size: 18px; } }
    @media (max-width: 991px) {
      .footer-area .single-footer-widget h4 {
        margin-bottom: 15px; } }
  .footer-area .single-footer-widget ul li {
    margin-bottom: 10px; }
    .footer-area .single-footer-widget ul li a {
      color: #7b838a; }
      .footer-area .single-footer-widget ul li a:hover {
        color: #f30606; }
  .footer-area .single-footer-widget .form-wrap {
    margin-top: 25px; }
  .footer-area .single-footer-widget input {
    height: 48px;
    border: none;
    width: 67% !important;
    font-weight: 400;
    background: #363a4b;
    color: #fff;
    padding-left: 20px;
    border-radius: 0;
    font-size: 14px;
    padding: 10px; }
    .footer-area .single-footer-widget input:focus {
      outline: none;
      box-shadow: none; }
    .footer-area .single-footer-widget input.placeholder {
      padding-left: 10px;
      color: #7b838a; }
    .footer-area .single-footer-widget input:-moz-placeholder {
      padding-left: 10px;
      color: #7b838a; }
    .footer-area .single-footer-widget input::-moz-placeholder {
      padding-left: 10px;
      color: #7b838a; }
    .footer-area .single-footer-widget input::-webkit-input-placeholder {
      padding-left: 10px;
      color: #7b838a; }
  .footer-area .single-footer-widget .click-btn {
    font-family: "Playfair Display", serif;
    color: #fff;
    border-radius: 0;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    padding: 8px 20px;
    border: 0;
    font-size: 13px;
    background: #f30606;
    font-weight: 700;
    position: relative;
    left: 0; }
    .footer-area .single-footer-widget .click-btn:focus {
      outline: none;
      box-shadow: none; }
    @media (max-width: 375px) {
      .footer-area .single-footer-widget .click-btn {
        margin-top: 10px; } }
    @media (min-width: 400px) {
      .footer-area .single-footer-widget .click-btn {
        left: -50px; } }
  .footer-area .footer-bottom {
    margin-top: 70px; }
    @media (max-width: 991px) {
      .footer-area .footer-bottom {
        margin-top: 20px; } }
    .footer-area .footer-bottom p {
      color: #fff; }
      .footer-area .footer-bottom p a {
        color: #f30606; }
    .footer-area .footer-bottom .footer-social {
      text-align: center; }
      @media (max-width: 991px) {
        .footer-area .footer-bottom .footer-social {
          text-align: left;
          margin-top: 30px; } }
      .footer-area .footer-bottom .footer-social a {
        background: rgba(255, 255, 255, 0.15);
        margin-left: 3px;
        width: 32px;
        color: #fff;
        display: inline-grid;
        text-align: center;
        height: 32px;
        align-content: center; }
        .footer-area .footer-bottom .footer-social a:hover {
          background: #f30606; }
        .footer-area .footer-bottom .footer-social a i, .footer-area .footer-bottom .footer-social a span {
          font-size: 14px; }

/*=================== section-intro start ====================*/
.section-intro__style {
  margin-bottom: 14px; }

/*=================== section-intro end ====================*/
/*=================== home banner start ====================*/
.home-banner {
  position: relative; }
  .home-banner h4, .home-banner h1, .home-banner a {
    text-transform: uppercase;
    color: #fff; }
  .home-banner h4 {
    font-size: 18px;
    margin-bottom: 15px; }
  .home-banner h1 {
    font-size: 27px;
    margin-bottom: 35px; }
    @media (min-width: 600px) {
      .home-banner h1 {
        font-size: 37px; } }
    @media (min-width: 992px) {
      .home-banner h1 {
        font-size: 70px;
        margin-bottom: 45px; } }
  .home-banner-area {
    height: 500px;
    background: url("../img/banner/1.png") center center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1; }
    @media (min-width: 992px) {
      .home-banner-area {
        height: 600px; } }
    @media (min-width: 1200px) {
      .home-banner-area {
        height: 970px; } }
    .home-banner-area .home-banner {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      transform: translateX(-50%); }
      @media (min-width: 992px) {
        .home-banner-area .home-banner {
          top: 44%;
          transform: translateX(-50%); } }
    .home-banner-area::after {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(1, 2, 11, 0.4);
      z-index: -1; }
  .home-banner-btn {
    border: 2px solid #f30606;
    padding: 10px 45px; }
    .home-banner-btn:hover {
      background: #f30606;
      color: #fff; }

/*=================== home banner end ====================*/
/*=================== home search form start ====================*/
.form-search {
  max-width: 972px;
  background: #fff;
  margin-right: auto;
  margin-left: auto;
  padding: 40px 25px 20px 25px;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1); }
  @media (max-width: 991px) {
    .form-search {
      padding: 10px 10px 0 10px; }
    .form-search .form-group {
      margin-bottom: 10px; }
    .row > .gutters-19 {
      padding-right: 5px;
      padding-left: 5px; } }
  @media (min-width: 992px) {
    .form-search-position {
      position: relative;
      bottom: 104px;
      z-index: 1; } }
  .form-search .form-control {
    font-size: 14px;
    color: #999999;
    border-radius: 0;
    height: 50px;
    padding-left: 18px;
    border-color: #ECECEC; }
    .form-search .form-control:focus {
      outline: 0;
      box-shadow: none; }
    .form-search .form-control::placeholder {
      color: #999999; }
  .form-search .form-group {
    margin-bottom: 20px; }
    .form-search .form-group .nice-select {
      margin-bottom: 20px; }
  .form-search button {
    width: 100%;
    font-size: 13px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    border: 0;
    background: #f30606;
    height: 50px;
    text-transform: uppercase; }

.form-select-custom {
  width: 100%; }
  .form-select-custom select {
    width: 100%;
    height: 50px;
    border: 1px solid #ECECEC;
    background: #fff no-repeat;
    background-size: 11px;
    background-position: right 15px center;
    padding-left: 18px;
    color: #999999;
    font-size: 14px;
    -webkit-appearance: none;
    -moz-appearance: none; }
    .form-select-custom select:focus {
      outline: 0;
      box-shadow: none; }

/*=================== home search form end ====================*/
/*=================== welcome section start ====================*/
.welcome {
  padding-top: 40px; }
  .welcome-images .card {
    border-radius: 0;
    border: 0;
    margin: 0 4px 4px 0; }
    @media (max-width: 991px) {
      .welcome-images .card img {
        width: 100%; } }
  @media (min-width: 991px) {
    .welcome-content {
      padding-left: 60px; } }

/*=================== welcome section end ====================*/
/*=================== explore section start ====================*/
.card-explore {
  border: 0;
  border-radius: 0;
  box-shadow: 0px 10px 30px 0px rgba(153, 153, 153, 0.2);
  transition: all .4s ease; }
  .card-explore .card-img {
    border-radius: 0; }
  .card-explore__img {
    width: 100%;
    position: relative; }
    .card-explore__img::after {
      content: "";
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      clip-path: polygon(0 83%, 0% 100%, 100% 100%);
      background: #fff;
      width: 100%;
      height: 190px; }
    .card-explore__img img {
      padding-bottom: 1px; }
  .card-explore .card-body {
    padding: 5px 18px 35px 40px; }
  .card-explore__price {
    font-size: 40px; }
    .card-explore__price sub {
      font-size: 18px; }
  .card-explore__title {
    font-size: 24px;
    margin: 12px 0 18px 0; }
    .card-explore__title a {
      color: #222222;
      transition: color .2s ease; }
  .card-explore__link {
    font-size: 13px;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: #303030;
    transition: color .2s ease; }
    .card-explore__link i, .card-explore__link span {
      padding-left: 3px;
      transition: all .35s ease; }
  .card-explore:hover a {
    color: #f30606; }
  .card-explore:hover .card-explore__link i, .card-explore:hover .card-explore__link span {
    padding-left: 10px; }

/*=================== explore section end ====================*/
/*=================== special section start ====================*/
.card-special {
  padding: 45px 35px;
  border: 0;
  border-radius: 0;
  transition: all .4s ease; }
  .card-special__icon {
    font-size: 24px;
    color: #f30606;
    margin-right: 13px; }
  .card-special__title {
    margin: 0;
    font-weight: 400;
    transition: all .4s ease; }
  .card-special .card-body {
    padding: 0; }
    .card-special .card-body p {
      margin-bottom: 0; }
  .card-special:hover {
    background: #f30606;
    color: #fff; }
    .card-special:hover .card-special__icon, .card-special:hover .card-special__title {
      color: #fff; }

/*=================== special section end ====================*/

.button-form {
  border: 1px solid #f30606 !important;
  color: #303030; }
  .button-form:hover {
    background: transparent;
    border-color: #f30606; }

.button--active:hover {
  background: transparent;
  border-color: #f30606;
  color: #222222; }

.button-contact {
  border: 1px solid #f30606 !important;
  padding: 9px 30px;
  background: #f30606;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  text-transform: uppercase; }
  .button-contact:hover {
    outline: 0;
    background: transparent;
    border-color: #f30606;
    color: #f30606; }

/*=================== contact banner start ====================*/
.contact-banner {
  position: relative; }
  .contact-banner h4, .contact-banner h1, .contact-banner a {
    text-transform: uppercase;
    color: #fff; }
  .contact-banner h4 {
    font-size: 18px;
    margin-bottom: 15px; }
  .contact-banner h1 {
    font-size: 37px;
    margin-bottom: 5px; }
    @media (min-width: 992px) {
      .contact-banner h1 {
        font-size: 48px; } }
  .contact-banner-area {
    height: 380px;
    background: url("../img/banner/1.png") center top no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1; }
    @media (min-width: 600px) {
      .contact-banner-area {
        height: 500px; } }
    @media (min-width: 1000px) {
      .contact-banner-area {
        height: 625px; } }
    .contact-banner-area .contact-banner {
      position: absolute;
      top: 58%;
      left: 50%;
      width: 100%;
      transform: translateX(-50%); }
    .contact-banner-area::after {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(1, 2, 11, 0.7);
      z-index: -1; }
  .contact-banner-btn {
    border: 2px solid #f30606;
    padding: 10px 45px; }
    .contact-banner-btn:hover {
      background: #f30606;
      color: #fff; }

.contact-info__icon {
  margin-right: 20px; }
  .contact-info__icon i, .contact-info__icon span {
    color: #f30606;
    font-size: 20px; }

.contact-info .media-body h3 {
  font-size: 16px;
  margin-bottom: 0; }
  .contact-info .media-body h3 a {
    color: #222222; }

.contact-info .media-body p {
  color: #999999; }

/*=================== contact banner end ====================*/
/*=================== breadcrumb start ====================*/
.banner-breadcrumb {
  display: inline-block; }
  .banner-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0; }
    .banner-breadcrumb .breadcrumb-item {
      padding: .1rem; }
      .banner-breadcrumb .breadcrumb-item a {
        text-transform: capitalize; }
      .banner-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        color: #fff;
        padding-right: .1rem; }
      .banner-breadcrumb .breadcrumb-item.active {
        color: #fff; }

/*=================== breadcrumb end ====================*/
/*=================== contact form start ====================*/
.contact_form .form-group {
  margin-bottom: 10px; }

.contact_form input {
  border-radius: 0;
  height: 40px;
  padding-left: 18px;
  border-color: #EEEEEE; }
  .contact_form input:focus {
    outline: 0;
    box-shadow: none; }
  .contact_form input::placeholder {
    font-size: 14px;
    color: #999999; }

.contact_form textarea {
  border-radius: 0;
  padding-left: 18px;
  border-color: #EEEEEE; }
  .contact_form textarea::placeholder {
    font-size: 14px;
    color: #999999; }

/*=================== contact form end ====================*/
.accomodation.form-search-position {
  bottom: 75px; }

/*=================== blog banner start ====================*/
.blog-banner {
  position: relative; }
  .blog-banner h4, .blog-banner h1, .blog-banner a {
    text-transform: uppercase;
    color: #fff; }
  .blog-banner h4 {
    font-size: 18px;
    margin-bottom: 15px; }
  .blog-banner h1 {
    font-size: 37px;
    margin-bottom: 5px; }
    @media (min-width: 992px) {
      .blog-banner h1 {
        font-size: 48px; } }
  .blog-banner-area {
    height: 380px;
    background: url("../img/banner/1.png") center top no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1; }
    @media (min-width: 600px) {
      .blog-banner-area {
        height: 500px; } }
    @media (min-width: 1000px) {
      .blog-banner-area {
        height: 625px; } }
    .blog-banner-area .blog-banner {
      position: absolute;
      top: 58%;
      left: 50%;
      width: 100%;
      transform: translateX(-50%); }
    .blog-banner-area::after {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(1, 2, 11, 0.7);
      z-index: -1; }
  .blog-banner-btn {
    border: 2px solid #f30606;
    padding: 10px 45px; }
    .blog-banner-btn:hover {
      background: #f30606;
      color: #fff; }

/*=================== blog banner end ====================*/

/*=================== MOBILE & RESPONSIVE FIXES ====================*/

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .special-img img {
    max-height: 300px;
  }
  .card-explore__img img {
    max-height: 220px;
    object-fit: cover;
  }
  .header-top #logo img {
    max-height: 70px;
  }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
  .header-top-info .media-body p:first-child {
    display: none;
  }
  .header-top-info .media-body p {
    font-size: 11px;
    line-height: 1.3;
    margin-bottom: 0;
  }
  .header-top-info__icon {
    margin-right: 5px;
  }
  .header-top-info__icon i, .header-top-info__icon span {
    font-size: 14px;
  }
  .header-top-info:not(:last-child) {
    margin-right: 10px;
  }
  .special-img img {
    max-height: 200px;
  }
  .room-gallery img#mainImageStandard,
  .room-gallery img#mainImageDeluxe,
  .room-gallery img#mainImageKingSize {
    height: 200px !important;
  }
  .room-gallery .room-thumb,
  .room-gallery .room-thumb-deluxe,
  .room-gallery .room-thumb-king {
    height: 45px !important;
  }
  .card-explore__img img {
    max-height: 220px;
    object-fit: cover;
  }
  .welcome-images .card {
    height: 100%;
  }
  .welcome-images .card img,
  .welcome-images img {
    max-height: none;
    height: 100% !important;
    object-fit: cover !important;
    min-height: 0;
  }
  .header-top #logo img {
    max-height: 60px;
  }
  .header-top {
    padding: 10px 0;
  }
  /* Fix text overflow on mobile */
  .welcome-content h2 {
    font-size: 24px;
    text-align: center;
  }
  .welcome-content h2 span {
    margin-bottom: 5px;
  }
  .card-special__title {
    font-size: 16px;
  }
  .card-explore__price {
    font-size: 18px;
  }
  .welcome-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .welcome-content a.button {
    margin-left: auto;
    margin-right: auto;
    display: table;
  }
  /* Gallery grid on mobile */
  #gallery-grid .col-md-6 {
    padding-left: 5px;
    padding-right: 5px;
  }
  /* Equipements image */
  .special-img img {
    max-height: 180px;
  }
  
  /* Ensure stretched-link works */
  /* Moved to global scope */
  
  /* Mobile Header Reservation Button */
  .button-header-mobile {
    padding: 8px 15px;
    font-size: 12px;
    border-radius: 0;
    margin-left: auto; /* Push to right */
    margin-right: 15px;
    display: none; /* Controlled by JS */
    z-index: 1001; /* Ensure on top of other navbar items */
    background: #f30606; /* Ensure it has background color */
    color: #fff !important;
  }
  
  .button-header-mobile:hover {
    color: #fff !important;
    background: #222;
  }
  /* Contact form on mobile */
  .form-search .form-group {
    margin-bottom: 10px;
  }
}

/* Small mobile (max 480px) */
@media (max-width: 480px) {
  .header-top-info .media-body p {
    font-size: 10px;
  }
  .header-top-info__icon {
    margin-right: 4px;
  }
  .header-top-info__icon i, .header-top-info__icon span {
    font-size: 12px;
  }
  .header-top-info:not(:last-child) {
    margin-right: 8px;
  }
  .room-gallery img#mainImageStandard,
  .room-gallery img#mainImageDeluxe,
  .room-gallery img#mainImageKingSize {
    height: 180px !important;
  }
  .room-gallery .room-thumb,
  .room-gallery .room-thumb-deluxe,
  .room-gallery .room-thumb-king {
    height: 35px !important;
  }
  .welcome-images .card img,
  .welcome-images img {
    max-height: none;
    height: auto !important;
    object-fit: contain !important;
    min-height: 0;
  }
  .header-top #logo img {
    max-height: 50px;
  }
  .card-explore__img img {
    max-height: 150px;
  }
}

/* Ensure all images are responsive by default */
img {
  max-width: 100%;
  height: auto;
}
/*============================================================*/

/* Date Icons in Search Form */
.form-search .form-group.position-relative {
    position: relative !important;
}

.form-search .date-icon {
    position: absolute !important;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999999; 
    pointer-events: none;
    font-size: 14px;
    z-index: 10; /* Ensure it's on top */
}

/* Ensure the icon doesn't overlap text */
.form-search .form-control {
    padding-right: 35px !important; 
}

/* Fix button text color on mobile/desktop */
.form-search button.button-form {
    color: #ffffff !important;
}