img {
    max-width: 100%;
    width: auto;
}
body{
overflow-x:hidden;	
}
input::placeholder{
    color:#121212 !important;
}
/* Chrome, Edge, Safari */
    color: #121212 !important;
}

/* Firefox */
input::-moz-placeholder {
    color: #121212 !important;
    opacity: 1;
}

/* IE 10-11 */
input:-ms-input-placeholder {
    color: #121212;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  padding: 20px 80px;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: padding 0.3s ease;
  background: transparent;
  box-shadow: inset 0 0 0 0 #ffffff;
  transition: all 0.5s ease-in-out;
}

.header.sticky {
  box-shadow: inset 0 100px 0 0 rgba(240, 240, 240, 0.85);
  padding: 10px 80px;
}

.hamburger-container {
  display: flex;
  align-items: center;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  margin: 0;
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-primary);
  transition: color 1s ease;
}

.hamburger-btn.white {
  color: white;
}

.hamburger-box {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.hamburger-box svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  color: currentColor;
}

.hamburger-text {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  list-style: 100%;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: currentColor;
}

.logo-link {
  overflow: hidden;
  display: block;
  max-width: 320px;
  transition: all 0.5s ease-in-out;
}

.logo-link.white {
  max-width: unset;
}

.logo,
.logo-white {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: all 0.5s ease-in-out;
}

.logo.hidden,
.logo-white.hidden {
  display: none;
}

.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #a79690fa;
  backdrop-filter: 100px;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-popup-inner {
  position: relative;
  width: 80%;
  max-width: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-popup video {
  width: 100%;
  border-radius: 4px;
}

.close-popup {
  position: absolute;
  top: -24px;
  right: -24px;
  font-size: 30px;
  background: #fff;
  border: 1px solid #fff;
  padding: 10px;
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
	padding-top:6px;
	z-index:1;
}

/* Navigation */
.nav {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  padding-top: 7.5rem;
  background: #fbf5e5;
  max-width: 36rem;
  z-index: 10;
  opacity: 0;
  transform: translateX(-100%) translateZ(0px);
  transition: all 0.3s ease-in-out;
}

.nav.open {
  opacity: 1;
  transform: translateX(0%) translateZ(0px);
}

.nav-header {
  position: absolute;
  top: 35px;
  left: 100px;
  right: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sidebar-logo {
  overflow: hidden;
  max-width: 183px;
  display: none;
}

.sidebar-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-content {
  max-width: 90rem;
  z-index: 1;
  margin: 0 auto;
  overflow: auto;
  padding: 0 3rem 2.5rem 3rem;
  height: 100%;
}

.nav-list {
  list-style: none;
}

.nav-list a {
  position: relative;
  display: inline-block;
  margin: 12px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.nav-list a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

.nav-list a:hover {
  color: var(--color-primary);
}

.nav-list a:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.nav-list-1 a {
  font-family: "EB Garamond", serif;
  font-weight: 600;
  font-size: 32px;
  text-transform: capitalize;
}

.nav-list-2 {
  margin-top: 32px;
}

/* Sub Navigation */

/* panels wrapper */
.nav-panels {
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* main panel slide-out state (mobile) */
.nav-main-panel {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  transition:
    transform 0.35s ease,
    opacity 0.3s ease;
}
.nav-main-panel.slide-out {
  transform: translateX(-50px);
  opacity: 0;
  pointer-events: none;
}

.nav-item {
  position: relative;
}

.sub-menu {
	list-style: none;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sub-menu.is-open {
    max-height: unset;
    transition: max-height 0.3s ease;
}

.sub-menu a {
	margin: 0;
	padding: 9px 0;
    font-family: "EB Garamond", serif;
    font-size: 24px;
    font-weight: 500;
}

.nav-item.has-submenu .nav-arrow {
	display: none;
}
.nav-list-1 a {
    font-family: "EB Garamond", serif;
    font-weight: 600;
    font-size: 32px;
    text-transform: capitalize;
    padding-right: 30px;
}

.has-submenu a::after {
    display: block;
    content: "";
    position: absolute;
    right: 0;
    top: 23px;
    transform: translateY(-50%) rotate(0deg);
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJjdXJyZW50Q29sb3IiIHN0cm9rZS13aWR0aD0iMi41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPgogICAgICAgICAgICAgICAgICAgICAgICA8cG9seWxpbmUgcG9pbnRzPSI5IDE4IDE1IDEyIDkgNiI+PC9wb2x5bGluZT4KICAgICAgICAgICAgICAgICAgICAgIDwvc3ZnPg==);
    background-size: 22px 22px;
    background-position: center center;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    z-index: 2;
    transition: transform 0.3s ease;
}
.has-submenu .sub-menu a{
	padding-right:0;
	font-size:25px;
}
.has-submenu .sub-menu a::after{
display: none;
}
@media (hover: hover) and (pointer: fine) {
	.nav-item.has-submenu:hover .sub-menu{
		padding-top: 8px;
		padding-right: 2.5rem;
		max-height: unset;
		transition: max-height 0.3s ease;
	}
}

/* Hero */
.hero-section {
  height: 100dvh;
  max-height: 1000px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: hsla(31, 40.2300990099%, 17.0539215686%, 0.7);
  mix-blend-mode: multiply;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0.55%,
    rgba(0, 0, 0, 0.4) 41.26%,
    rgba(0, 0, 0, 0.4) 57.38%,
    rgba(0, 0, 0, 0)
  );
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.play-pause-btn {
  position: absolute;
  bottom: 36px;
  right: 36px;
  z-index: 2;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-content-inner {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-mark-container {
  max-width: 281px;
}

.logo-mark-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.play-popup-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.play-popup-btn-icon {
  width: 32px;
  height: 32px;
}

.play-popup-btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.play-popup-btn-text {
  font-family: "Inter", sans-serif;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.44px;
  text-transform: uppercase;
}

.scroll-down-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.scroll-down-btn:after {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 326px;
  height: 96px;
  background: url(../image/scroll-down-arrow-bg.svg) no-repeat center center;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -1;
}

/* Unique */
.unique {
  position: relative;
  padding-bottom: 100px;
}
.unique::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../image/unique_bg.png) right 10px no-repeat;
  bottom: 0;
}
.unique_main {
  display: flex;
  justify-content: space-between;
        z-index: 1;
    position: relative;
}
.unique_main .image {
  width: 50%;
  margin-left: -10%;
  float: left;
}
.unique_main .image img {
  width: auto;
}
.unique_main .unique_information {
  width: 50%;
  padding-left: 60px;
  position: relative;
  float: right;
  margin-top: 85px;
}

.unique_main h2 {
  font-family: "EB Garamond", serif;
    font-weight: 500;
  color: #a05b3f;
  font-size: 60px;
  font-weight: 500;
  max-width: 75%;
  letter-spacing: -3%;
  margin-bottom: 40px;
}
.image_position {
  position: absolute;
  right: 0;
  top: -80px;
  width: 220px;
}
.unique_main p {
  color: #121212;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 40px;
}
.unique_main a {
  padding: 16px 20px;
  font-size: 18px;
  letter-spacing: 8%;
    font-weight: 700;
    text-transform: uppercase;
}
.spring_main {
  padding-bottom: 100px;
  position: relative;
}
.spring_main::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 500px;
  background: url(../image/spring_bg.png) left bottom no-repeat;
bottom: 0;
    background-size: 100%;
}
.pspring_inner {
  max-width: 1024px;
  padding: 80px;
  margin: -80px auto 0;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
}
.pspring_inner h3 {
  width: 100%;
  color: #6f7945;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 8%;
  margin-bottom: 20px;
font-family: "Inter", sans-serif;
}
.pspring_inner h2 {
  color: #a05b3f;
  font-size: 56px;
  font-family: "EB Garamond", serif;
    font-weight: 500;
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
	line-height:100%;
}
.pspring_inner a{
    padding: 16px 20px;
    font-size: 18px;
    letter-spacing: 8%;
    font-weight: 700;
    text-transform: uppercase;
}
.star_top {
  position: absolute;
  top: 30px;
  right: 30px;
}
.star_bottom {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.star_single {
  position: absolute;
  bottom: 70px;
  right: 60px;
}



/* activities Section Start */
  .activities-section {
      background: #08415C;
      padding: 100px 0 0 0;
      overflow: hidden;
    }

    .activities-section .slick-track {
      display: flex !important;
    }

    .activities-section .slick-initialized .slick-slide {
      display: flex !important;
      height: auto;
      max-height: 520px;
      overflow: hidden;
      position: relative;
    }

    .activities-wrap {
      margin: 0 auto;
      border-bottom: 0;
    }


    .carousel-track .slick-list {
      overflow: hidden;
    }

    .carousel-track .slick-slide {
      margin: 0 10px;
    }

    .activity-card {
      position: relative;
      overflow: hidden;

    }

    .activity-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1);
      transition: transform 450ms ease;
    }


    .activity-card h3 {
      margin: 0;
      position: absolute;
      left: 0;
      top: 0;
      z-index: 2;
      color: #fff;
      font-family: "EB Garamond", serif;
      font-size: 36px;
      font-style: normal;
      font-weight: 600;
      line-height: normal;
      width: 100%;
      padding: 30px 91px 84px 30px;
      background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    }

    .card-hover-btn {
      display: inline-block;
      text-decoration: none;
      position: absolute;
      left: 50%;
      bottom: 24px;
      z-index: 3;
      border: 0;
      padding: 12px 14px;
      font-family: Inter, Arial, sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      opacity: 0;
      transform: translate(-50%, 40px);
      transition: all 1s ease;
      text-align: center;
      width: max-content;
      white-space: nowrap;
    }

    .activity-card:hover img {
      transform: scale(1.08);
    }

    .activity-card:hover .card-hover-btn {
      opacity: 1;
      transform: translate(-50%, 0);
    }

    .carousel-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 55px;
      padding: 60px 0 0 0;
      color: #fff;
    }

    .arrow-btn {
      border: 0;
      background: transparent;
      color: #fff;
      width: 42px;
      height: 28px;
      cursor: pointer;
      font-size: 28px;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      font-weight: 700;
    }

    .page-counter {
      font-family: Inter, Arial, sans-serif;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 1.2px;
      color: rgba(255, 255, 255, 0.95);
    }

    .page-counter .sep {
      opacity: 0.6;
      margin: 0 12px;
      font-weight: 400;
    }

    .content-block {
      text-align: center;
      color: #f8f7f3;
      position: relative;
      background: #08415C;
      background-image: url("../image/section-bg-2.png");
      background-position: bottom;
      padding: 100px 0;
    }



    .kicker {
      color: #FFF;
      text-align: center;

      font-family: Inter;
      font-size: 20px;
      font-weight: 700;
      line-height: normal;
      letter-spacing: 1.6px;
      text-transform: uppercase;
    }

    .lead {
      margin: 20px auto 0;
      color: #FFF;
      text-align: center;
      font-family: "EB Garamond";
      font-size: 43px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
      max-width: 70%;
    }

    .cta-btn {
      margin-top: 60px;
      border: 0;
      background: #c3724e;
      color: #fff;
      padding: 16px 20px;
      display: inline-block;
      color: #FFF;
      font-family: Inter;
      font-size: 18px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
      letter-spacing: 1.44px;
      text-transform: uppercase;
      text-decoration: none;
    }
/* activities Section End */

/* Event Section Start */
.events {
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
  background: #f4f1e8;

  position: relative;
  overflow: hidden;
  background-image: url("../image/Event.png");
  background-position: center;
  background-repeat: repeat;
}

.events-inner {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: #6f7945;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.heading {
  color: #a05b3f;
  text-align: center;
  font-family: "EB Garamond";
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0 0 60px 0;
}

.events-slider .slick-list,
.matterport-slider .slick-list {
  overflow: hidden;
}

.events-slider .slick-track,
.matterport-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.events-slider .slick-slide,
.matterport-slider .slick-slide {
  height: auto;
}

.events-slider .slick-slide > div,
.matterport-slider .slick-slide > div {
  height: 100%;
}

.slider-slide {
  height: 100%;
  max-height: 680px;
  padding: 0 10px;
}

.card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.card-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.90) 0%,
            rgba(0, 0, 0, 0.48) 25%,
            rgba(0, 0, 0, 0.06) 56%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.card-img {
    position: relative;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.45s ease;
    transform: scale(1);
}

.card-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 60px;
    height: 60px;
    background: #A05B3F;
    color: #FFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    z-index: 2;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.card-arrow svg{
    height: 24px;
    width: 24px;
    transform: rotate(220deg);
}
.card:hover .card-img {
    transform: scale(1.08);
}

.card:hover .card-arrow {
    opacity: 1;
    transform: translateY(0);
}

.card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #f8f8f4;
  z-index: 2;
  padding: 40px;
    pointer-events: none;
}

.card-title {
  color: #fff;
  font-family: "EB Garamond";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 16px 0;
  max-width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
	text-transform:capitalize;
}

.card-date {
  color: #fff;

  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin: 0 0 6px 0;
}

.card-sub {
  color: #fff;

  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
}

.controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 60px;
  position: relative;
}

.nav-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.arrow {
  width: 36px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  user-select: none;
}

.pager {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: #a55c42;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.pager-current,
.pager-total {
  color: #a05b3f;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  position: relative;
}
.pager-current::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -13px;
  width: 2px;
  bottom: 3px;

  background-color: #ccc7ba;
}

/* Instagram */
.instagram-section {
  padding: 100px 0;
  position: relative;
  text-align: center;
}
.insta-section-heading {
  position: relative;
  display: inline-block;
}
.insta-section-heading::before {
  position: absolute;
  content: "";
  width: 214px;
  height: 164px;
  background: url(../image/insta-stamp.svg) center center no-repeat;
  background-size: cover;
  top: 0;
  right: -36px;
  transform: translateX(100%);
  z-index: 1;
}
.instagram-grid {
  display: flex;
  align-items: center;
}
.insta-post {
  position: relative;
  width: 20%;
  display: flex;
}
.insta-post-link {
  display: block;
  position: relative;
  width: 100%;
}
.insta-post-link:hover .insta-post-overlay {
  display: flex;
}
.insta-post-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insta-post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.insta-post-overlay-icon {
  max-width: 40px;
  max-height: 40px;
}

/* ─── FOOTER ─────────────────────────────── */
footer {
  position: relative;
  background-color: var(--color-secondary);
  color: #ffffff;
  background-image: url("../image/footer-bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
footer p{
	color:#fff;
}
/* ─── MAIN CONTENT ───────────────────────── */
.footer-main {
  display: flex;
  gap: 20px;
  padding: 140px 0;
}

/* Dividers */
.footer-divider {
  background: var(--border);
  align-self: stretch;
  margin: 0 40px;
}

/* ─── BRAND COLUMN ───────────────────────── */
.footer-contact,
.footer-nav,
.footer-brand {
  width: 33.33%;
}

.footer-contact,
.footer-nav {
  padding-left: 50px;
  position: relative;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyIiBoZWlnaHQ9IjE0Ij4KICA8bGluZSB4MT0iMSIgeTE9IjAiIHgyPSIxIiB5Mj0iOCIKICAgICAgICBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIvPgo8L3N2Zz4g");
  background-repeat: repeat-y;
  background-size: 1px 16px;
  background-position: 0 0 ;
}

.footer-logo {
  max-width: 431px;
}
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-desc {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  margin-top: 30px;
  max-width: 90%;
}

.footer-book-now {
  margin-top: 30px;
}

/* ─── NAV COLUMN ─────────────────────────── */
.footer-nav h3,
.footer-contact h3 {
  font-family: "EB Garamond", serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-brand {
  order: 0;
}

.footer-nav {
  order: 1;
}

.footer-contact {
  order: 2;
}
.footer-nav ul {
  list-style: none;
  padding-left: 36px;
}

.footer-nav ul li {
  position: relative;  
  margin-bottom: 20px;
}

.footer-nav ul li:before {
  content: "";
  position: absolute;
  background: url(../image/bullet-arrow.svg) center center no-repeat;
  background-size: contain;
  width: 16.8px;
  height: 19.2px;
  top: 50%;
  left: -16px;
  transform: translate(-100%, -50%);
}

.footer-nav ul li a {
  position: relative;
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #ffffff;
  transition: color 0.2s;
}
.footer-nav ul li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

.footer-nav ul li a:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

/* ─── CONTACT COLUMN ─────────────────────── */
.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-item-text {
  max-width: 90%;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}

.contact-item:first-of-type {
  align-items: flex-start;
}

/* ─── BOTTOM BAR ─────────────────────────── */
.footer-bottom {
  background: var(--color-primary);
  padding: 26px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-bottom-links a {
  position: relative;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}
.footer-bottom-links a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

.footer-bottom-links a:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}



/* Welcome */
.welcome-section {
  padding: 100px 0;
  position: relative;
  background: #fbf5e5;
}

.welcome-section-inner {
 position: relative;
}

.welcome-content {
  position: relative;
  padding: 100px;
  max-width: 57.84%;
  min-height: 800px;
}

.welcome-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../image/welcome-bg.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 120%;
  z-index: 3;
}

.welcome-content::before{
  content: "";
  position: absolute;
  bottom: 8px;
  right: 174px;
  width: 270px;
  height: 284px;
  background-image: url("../image/welcome-polaroids.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 4;
}

.textured-bg {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  z-index: 3;
}


.textured-bg::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../image/welcome-textured-bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 2;
}

.welcome-section-heading {
  position: relative;
  z-index: 4;
  font-family: "EB Garamond", serif;
  font-size: 60px;
  letter-spacing: -3%;
  font-weight: 500;
  color: #ffffff;
}

.welcome-section-description {
  position: relative;
  z-index: 4;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  margin-top: 40px;
  max-width: 600px;
}

.welcome-section-btn {
  position: relative;
  z-index: 4;
  margin-top: 40px;
}

.welcome-slider-wrapper {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  max-width: 822px;
  max-height: 682px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
  z-index: 5;
}

.welcome-slider-wrapper::before{
  content: "";
  position: absolute;
  top: 0;
  left: 48%;
  transform: translate(-50%, -42%);
  width: 329px;
  height: 89px;
  background-image: url("../image/welcome-photo-tap.png");
  background-repeat: no-repeat;
  z-index: 1;
}

.welcome-slider {
  padding: 12px;
  background-color: #ffffff;
}



.welcome-slide {
  display: flex;
  position: relative;
}

.welcome-slide::before {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 29%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.00) 100%);
  z-index: 1;
}

.welcome-slide img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* Event Section End */

.textured-bg:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  background-image: url("../image/welcome-frame.svg");
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 4;
  background-size: contain;
}


/* AI Planner */


.modal {
  position: relative;
}

.modal.is-loading {
  pointer-events: none;
}

.spinner-ring {
  width: 52px;
  height: 52px;
  border: 4px solid #e5e7eb;
  border-top: 4px solid #111827;
  border-radius: 50%;
  animation: tripPlannerSpin 0.8s linear infinite;
}

.form-loader-text {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}

@keyframes tripPlannerSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: tripPlannerSpin 0.8s linear infinite;
  vertical-align: middle;
}


#modal {
  position: relative;
  overflow: hidden;
}

.form-loader-overlay {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  background: rgba(245, 240, 228, 0.85);
  backdrop-filter: blur(2px);
  z-index: 9999;
  border-radius: 16px;
  text-align: center;
  padding: 24px;
}

#modal.is-loading .modal-header,
#modal.is-loading .modal-body,
#modal.is-loading .modal-footer {
  pointer-events: none;
}


@keyframes tripPlannerSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

body.modal-open {
  overflow: hidden;
}

#overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.45);
}

#overlay.active {
  display: flex;
}

#modal {
  position: relative;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* important */
  border-radius: 16px;
  background: #f5f0e4;
}

.modal-header,
.modal-footer {
  flex-shrink: 0;
}

.modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
  /* only body scroll */
  overflow-x: hidden;
  min-height: 0;
  padding: 24px;
}

.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
}

.form-message.success {
  display: block;
  background: #e8f7ed;
  color: #1f7a3d;
  border: 1px solid #b7e4c7;
}

.form-message.error {
  display: block;
  background: #fdecec;
  color: #b42318;
  border: 1px solid #f5c2c7;
}
.home .welcome-section{
	margin-bottom:100px;
}
.header ul li::before{
    display:none;
}
.nav-item::before{
    display:none;
}