/* Merchant Fonts */
@font-face {
  font-family: "Merchant";
  src: url("/assets/fonts/merchant-woff2/merchant-light.woff2") format("woff2"),
       url("/assets/fonts/merchant/merchant-light.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "Merchant";
  src: url("/assets/fonts/merchant-woff2/merchant-regular.woff2") format("woff2"),
       url("/assets/fonts/merchant/merchant-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Merchant";
  src: url("/assets/fonts/merchant-woff2/merchant-medium.woff2") format("woff2"),
       url("/assets/fonts/merchant/merchant-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Merchant";
  src: url("/assets/fonts/merchant-woff2/merchant-bold.woff2") format("woff2"),
       url("/assets/fonts/merchant/merchant-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #1A667A;
  --yellow: #d88f4a;
  --button-bg-hover:#daa778;
}

.blue {
  background-color: var(--blue);
}

.yellow {
  background-color: var(--yellow);
}

body {
  font-family: "Merchant", sans-serif;
}

.font-poppins {
  font-family: 'Poppins', sans-serif;
}

.font-merchant {
  font-family: "Merchant", sans-serif;
}

.font-helvetica {
  font-family: "Helvetica Now Display", sans-serif;
}


ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  outline: none;
  cursor: inherit;
}

input,
textarea,
button {
  /* all: unset;
  
  */
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}


/* Header */

.heading_border_white {
  border: 1px solid;
  width: 30px;
  border-image-source: linear-gradient(90deg,
      rgba(0, 0, 0, 0) 0%,
      #ffffff 48.56%,
      rgba(0, 0, 0, 0) 100%);
}

.heading_border_black {
  border: 1px solid;
  border-image-source: linear-gradient(90deg,
      rgba(0, 0, 0, 0) 0%,
      #ffffff 48.56%,
      rgba(0, 0, 0, 0) 100%);
}

.amenities-heading {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.swiper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.swiper-slide {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: flex-end;
  /* padding: 20px; */
  color: white;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.slide-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.slide-name {
  font-size: 1.2rem;
  font-weight: 600;
}

.swiper-button-prev,
.swiper-button-next {
  color: #000;
}

.gallery .pattern-bg {
  background-image: url('assets/images/pattern.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery .swiper-slide img {
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.gallery .swiper-slide img:hover {
  transform: scale(1.02);
}

.d-view {
  display: block;
}

.m-view {
  display: none;
}

@media (max-width: 768px) {
  .swiper-slide {
    height: 220px;
  }

  .slide-name {
    font-size: 1rem;
  }

  .d-view {
    display: none;
  }

  .m-view {
    display: block;
  }
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid black;
  border-radius: 8px;
  font-size: 14px;
  color: black;
  background-color: white;
}

.error-msg {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
  text-align: start;
}

header.active {
  background-color: var(--blue)
}

header.active .line_bottom {
  display: none;
}

.line_bottom {
  background: #fff;
}

/* .amt_item{flex:1 1 } */

.border_line_gr {
  border: 1px solid;

  border-image-source: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000000 48.56%, rgba(0, 0, 0, 0) 100%);

}

@media (max-width: 768px) {
  .form-input {
    padding: 6px 14px;
    font-size: 14px;
    color: black;
  }
}

.grand_thum_log {
  display: none;
}

header.active .grand_thum_log {
  display: block;
}
/* custom css for header logo */



header.active .logo-anchor{flex:0 0 16%}

@media (max-width: 768px) {
  
header.active .logo-anchor{flex:0 0  auto}
}
.second-logo{
  display: none;
}
.second-logo.active{
  display: block;
}

.bg-image {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 229%),
              url('/assets/banner.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}
.amenities-bg{
  background: url('/assets/images/amenities-bg.webp'); 
  background-position: top; 
  background-size: cover;
}
/* Mobile-specific override */
@media (max-width: 767px) {
  .bg-image {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 229%),
                      url('/assets/banner-mobile.webp');
  }
.amenities-bg{
  background-image: url('/assets/images/amenities-bg-mobile.webp'); 
}
  
}
