@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap");

:root {
  --gold: #caa05c;
  --gold-light: #e8c97a;
  --dark-bg: #131314;
  --card-bg: #1a1916;
  --text-muted-warm: #adadad;
  --transition-slide: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.3s ease;
}

body {
  background-color: var(--dark-bg);
  color: #fff;
  font-family: "Open Sans", sans-serif;
}

::selection {
  background: #caa05c;
  color: #000000;
}

a {
  text-decoration: none !important;
}

.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9;
}

section {
  padding: 80px 0;
  position: relative;
}

.review-item {
  display: none;
}

.review-item.active {
  display: block;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

.input-wrap:has(textarea):focus-within::after {
    width: 0;
}

/* BUTTON */
.btn-reserve {
  background: #caa05c;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-block;
  border: 1px solid transparent;
}

.btn-reserve:hover,
.btn-hero:hover {
  background: transparent;
  border: 1px solid #caa05c;
}

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

.btn_div {
  margin-top: 40px;
}

.gallery-section .section-title {
	margin-bottom: 0;
}

/* LABEL */
.section-eyebrow {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 40px;
}

/* HERO / SLIDER */
.hero {
  position: relative;
  width: 100%;
  min-height: 850px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.05);
  transition: transform 6s ease-out;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.58);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  height: 100px;
}

.site-nav {
  position: fixed;
  z-index: 9999;
  padding: 15px 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.site-nav.scrolled {
  background: transparent;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
}

.site-nav:after {
  content: "";
  position: absolute;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  bottom: 0;
  left: 50%;
  width: 70%;
  transform: translateX(-50%);
}

.nav-logo-icon img {
  max-width: 100px;
  height: auto;
}

#menu-top-menu {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
	margin: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-socials a {
  width: 35px;
  height: 35px;
  border-radius: 50% 50% 50% 0;
  background: #fff;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s;
}

.nav-socials a:hover {
  background: transparent;
  transform: translateY(-2px);
  border: 1px solid var(--gold);
}

.navbar-toggler-villa {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 3px;
  padding: 6px 10px;
  cursor: pointer;
  display: none;
}

.navbar-toggler-villa span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  margin: 4px 0;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

/* .nav-links li:last-child a:hover::after {
  width: 0;
} */

/* SUB MENU */
.menu-item-has-children {
  position: relative;
}

.menu-item-has-children .sub-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  /* border-top: 3px solid #f0a500; */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
  z-index: 100;
  padding-left: 0;
}

.menu-item-has-children a::after {
  position: unset;
}

.nav-links .menu-item-has-children li {
  display: block;
}

.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-item-has-children .sub-menu li a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #000;
  position: relative;
  border-bottom: 1px solid var(--gold);
  transition:
    background 0.15s,
    color 0.15s;
  padding: 5px 14px;
  display: block;
}

.menu-item-has-children ul li a:hover {
  color: var(--gold);
}

.menu-item-has-children .sub-menu li:last-child a {
  border-bottom: none;
}

.menu-item-has-children > a::after {
  content: "›";
  margin-left: 5px;
  font-size: 16px;
  display: inline-block;
  transform: rotate(90deg);
  transition: transform 0.2s;
  opacity: 0.6;
  position: absolute;
  top: 10px;
  right: -20px;
  left: unset !important;
}

.hero-body {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-40%, -50%);
  z-index: 2;
  max-width: 760px;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 6vw, 78px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 14px;
  max-width: 700px;
}

.hero-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #fff;
  max-width: 580px;
  margin-bottom: 20px;
}

.hero-slider {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 850px;
  transition: transform var(--transition-slide);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  min-height: 850px;
  display: flex;
  flex-direction: column;
}

.hero-slide.is-active .hero-bg {
  transform: scale(1);
}

.hero-body > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.hero-slide.is-active .hero-body .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.hero-slide.is-active .hero-body .hero-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.hero-slide.is-active .hero-body .btn-hero {
  opacity: 1;
  transform: translateY(0);
  /* transition-delay: 0.65s; */
}

.slider-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    width var(--transition-fast);
}

.slider-dot.is-active {
  background: var(--dot-accent, #c9a96e);
  width: 22px;
  border-radius: 4px;
}

.btn-hero {
  display: inline-block;
  padding: 12px 20px;
  background: rgba(232, 218, 191, 1);
  color: #000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  border-radius: 8px;
  transition:
    background 0.3s,
    border-color 0.3s,
    color 0.3s;
  border: 1px solid transparent;
}

.shape {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  overflow: visible;
}

.shapes {
  width: 100%;
}

.shapes img {
  width: 70%;
  height: auto;
  display: block;
  margin: auto;
}

/* PRIVATE */
.private-section {
  background: #1d1d1d;
  position: unset;
}
.img-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blob-wrap img {
  width: 100%;
  display: block;
}

.badge-circle {
  position: absolute;
  top: 12%;
  left: -4%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.badge-circle:after {
  content: "";
  position: absolute;
  bottom: -17px;
  right: 17px;
  width: 30px;
  height: 30px;
  border-left: 20px solid var(--gold);
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  transform: rotate(60deg);
}

.badge-circle span {
  font-family: "Cinzel", serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
}

.text-side {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.private-section .section-title {
  margin-bottom: 10px;
}

.section-desc {
  font-size: 14px;
  line-height: 155%;
  color: var(--text-muted-warm);
  font-weight: 400;
  margin-bottom: 10px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 36px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #adadad;
}

.feature-item i {
  color: var(--gold);
  font-size: 16px;
  font-weight: 100;
}

/* CARDS */
.villa-card {
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.villa-card:hover {
  transform: translateY(-6px);
}

.villa-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.villa-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.88);
}

.villa-card:hover .villa-card__img-wrap img {
  transform: scale(1.06);
}

.villa-card__badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(202, 160, 92, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.badge-name,
.badge-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}

.badge-name i {
  font-size: 14px;
}

.star-icon {
  color: var(--gold);
  font-size: 14px;
}

.villa-card__body {
  padding: 22px 20px 26px;
  text-align: center;
}

.villa-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.villa-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted-warm);
  margin-bottom: 0;
}

/* MARQUEE */
.ticker-wrap {
  background: #1a1a1a;
  overflow: hidden;
  padding: 18px 0;
  width: 100%;
}

.ticker-track {
  white-space: nowrap;
  animation: ticker 18s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* EXCLUSIVE */
.hero-split,
.why-section,
.blog-section {
  background: #1a1a1a;
}

.hero-split__body {
  font-size: 14px;
  line-height: 155%;
  color: var(--text-muted-warm);
  font-weight: 400;
  margin-bottom: 10px;
}

.hero-split__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.hero-split .section-title {
  margin-bottom: 20px;
}

.hero-split__list li {
  font-size: 16px;
  color: var(--text-muted-warm);
  font-weight: 400;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-split__list li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-split__img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.hero-split__img-wrap img {
  width: 100%;
  aspect-ratio: 3 / 3;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
}

/* GALLERY */
.gallery-section__body,
.why-section__subtitle {
  font-size: 14px;
  line-height: 155%;
  color: var(--text-muted-warm);
  font-weight: 400;
  margin-bottom: 10px;
  max-width: 600px;
}

.why-section__subtitle {
  margin: auto auto 20px;
}

.gallery-slider-wrap {
  position: relative;
  margin-top: 20px;
}

.gallery-slide-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-slide-col {
  overflow: hidden;
  aspect-ratio: 2 / 2;
}

.gallery-slide-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.6s ease,
    filter 0.4s ease;
  filter: brightness(0.85);
}

.gallery-slide-col:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.gallery-ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.45);
  background: rgba(17, 16, 16, 0.65);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.gallery-ctrl:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #111010;
}

.gallery-ctrl--prev {
  left: 16px;
}

.gallery-ctrl--next {
  right: 16px;
}

/* DIFFERENT */
.why-feature {
  text-align: center;
  padding: 0 10px;
}

.why-section .section-title {
  margin-bottom: 10px;
}

.why-feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.why-feature__icon svg {
  width: 52px;
  height: 52px;
}

.why-feature__label {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1.45;
}

.why-deco {
  position: absolute;
  top: 30px;
  right: 40px;
}

.why-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin: 40px auto 40px;
  max-width: 1000px;
  height: 400px;
}

.why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.6s ease;
  object-position: bottom;
}

.why-img-wrap:hover img {
  transform: scale(1.04);
}

.why-cta {
  text-align: center;
}

/* REVIEW */
.reviews-section .section-title {
  margin-bottom: 10px;
}

.reviews-section__overlay {
  position: absolute;
  inset: 0;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.reviews-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 36px 36px 28px;
}

.reviews-section .section-eyebrow {
  color: #fff;
}

.reviews-card__avatars {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 12px;
}

.reviews-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  overflow: hidden;
  margin-right: -8px;
  background: #2a2520;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 500;
}

.reviews-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-card__stars {
  color: var(--gold);
  font-size: 14px;
  /* margin-bottom: 14px; */
}

.reviews-card__text {
  font-size: 0.8rem;
  line-height: 1.75;
  color: rgba(255, 255, 255);
  font-weight: 300;
  margin-bottom: 15 px;
}

.reviews-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviews-card__author {
  font-size: 16px;
  font-style: italic;
  color: rgba(255, 255, 255);
  font-family: "Cormorant Garamond", serif;
}

.reviews-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s;
  padding: 0;
}

.reviews-nav-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

/* BLOG */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.blog-section .section-title {
  margin-bottom: 0;
}

.heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  max-width: 440px;
}

.slider-outer {
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}

.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.card {
  background: transparent;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.68, 0, 1.2),
    box-shadow 0.35s;
  animation: fadeUp 0.6s both;
  flex: 0 0 calc((100% - 48px) / 3);
}

.card:nth-child(1) {
  animation-delay: 0.05s;
}

.card:nth-child(2) {
  animation-delay: 0.15s;
}

.card:nth-child(3) {
  animation-delay: 0.25s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card:hover {
  transform: translateY(-5px);
}

.card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition:
    filter 0.4s,
    transform 0.5s;
}

.card:hover .card-img {
  filter: brightness(1.05);
  transform: scale(1.03);
}

.card-img-wrap {
  overflow: hidden;
  height: 210px;
}

.card-body {
  padding: 26px 24px 28px;
}

.card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
}

.card-desc {
  font-size: 14px;
  color: var(--text-muted-warm);
  line-height: 1.7;
  margin-bottom: 14px;
}

.read-more {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    gap 0.25s,
    color 0.25s;
}

.read-more::after {
  content: "→";
  font-size: 13px;
}

.card:hover .read-more {
  gap: 10px;
  color: var(--gold-light);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted-warm);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s,
    transform 0.25s;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* CONTCAT */
.contact-desc {
  font-size: 14px;
  line-height: 155%;
  color: var(--text-muted-warm);
  font-weight: 400;
  margin-bottom: 10px;
}

.contact-section .section-title {
  margin-bottom: 10px;
}

.form-control-villa {
  background: transparent;
  border: none;
  border-bottom: 1px solid #404040;
  border-radius: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  padding: 10px 0;
  box-shadow: none !important;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  resize: none;
}

.form-control-villa::placeholder {
  color: #898989;
  font-size: 13px;
}

.form-control-villa:focus {
  background: transparent;
  color: var(--text);
  border-bottom-color: var(--gold);
}

.input-wrap {
  position: relative;
  margin-bottom: 28px;
}

.input-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.input-wrap:focus-within::after {
  width: 100%;
}

.contact-img-wrap {
  overflow: hidden;
  border-radius: 8px;
}

.contact-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.contact-img-wrap:hover img {
  transform: scale(1.04);
}

/* FOOTER */
.site-footer {
  padding: 20px;
}

.footer-inner {
  background: #1e1e1e;
  border-radius: 6px;
  padding: 52px 60px 0;
}

.footer-address-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.footer-address-line {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.9;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.2s;
}

.footer-socials a:hover {
  background: transparent;
  transform: translateY(-2px);
  border: 1px solid var(--gold);
}

.footer-socials i {
  color: #fff;
  font-size: 16px;
}

.footer-contact-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
  text-align: right;
}

.footer-contact-line {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.9;
  text-align: right;
}

.footer-contact-line a {
  color: #fff;
  text-decoration: none;
  transition: color 0.25s;
}

.footer-contact-line a:hover {
  color: var(--gold);
}

.footer-divider {
  border-color: #686868;
  margin: 40px 0 0;
}

.footer-copy {
  padding: 18px 0;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

/* BLOG PAGE */
.blog-card {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-light);
}

.blog-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.blog-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
  border-radius: 8px;
}

.blog-card:hover .blog-card__img-wrap img {
  transform: scale(1.06);
}

.blog-card__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(15, 14, 12, 0.65) 100%
  );
  pointer-events: none;
}

.blog-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card__date {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
}

.blog-card__date i {
  color: var(--gold);
  font-size: 14px;
}

.blog-card__title {
  font-family: "Cinzel";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  letter-spacing: 0.01em;
}

.blog-card__excerpt {
  font-size: 16px;
  color: var(--text-muted-warm);
  margin: 0;
  flex-grow: 1;
}

.blog-card__link {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--gold);
  text-decoration: none;
  transition:
    color 0.2s,
    gap 0.2s;
}

.blog-card__link:hover {
  color: var(--gold-light);
  gap: 8px;
}

.blog-card__link i {
  font-size: 12px;
  transition: transform 0.2s;
}

.blog-card__link:hover i {
  transform: translateX(3px);
}

/* PAGINATION */
.bread {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  overflow: hidden;
  height: 340px;
}

.pagination-custom {
  background: #1a1a1a;
  border: 1px solid #3f3f3f;
  border-radius: 50px;
  padding: 10px 14px;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition:
    color 0.2s,
    background 0.2s;
}

.page-btn:hover {
  color: var(--gold-light);
}

.page-btn.active {
  background: var(--gold);
  color: #fff;
}

.page-arrow {
  color: #fff;
  font-size: 16px;
}

.page-arrow:hover {
  color: var(--gold-light);
}

.breadcrumb {
  position: relative;
  padding: 140px 0 0;
  text-align: center;
  margin: 0;
  z-index: 999;
  height: 310px;
}

.breadcrumb_title {
  color: #fff;
  margin: 0;
  text-transform: capitalize;
  font-family: "Cinzel";
  font-size: 60px;
}

.breadcrumb-bg {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: absolute;
  z-index: 0;
  inset: 0;
}

.breadcrumb-bg::after {
  content: "";
  position: absolute;
  inset: 0px;
  background: rgba(10, 8, 6, 0.58);
}

/* GALLERY PAGE */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--gold);
  background: transparent;
  aspect-ratio: 3 / 3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
  filter: brightness(0.88);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 110, 0) 0%,
    rgba(201, 169, 110, 0.12) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover {
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.gallery-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 9, 7, 0);
  transition: background 0.35s ease;
  pointer-events: none;
}

.gallery-zoom i {
  color: #fff;
  font-size: 1.4rem;
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.7));
}

.gallery-item:hover .gallery-zoom {
  background: rgba(10, 9, 7, 0.32);
}

.gallery-item:hover .gallery-zoom i {
  opacity: 1;
  transform: scale(1);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 4, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 90vw;
  max-height: 90vh;
  padding: 0 8px;
}

.lb-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 160px;
}

.lb-img {
  max-width: min(820px, 78vw);
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: block;
}

.lb-spinner {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(201, 169, 110, 0.2);
  border-top-color: #c9a96e;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

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

.lb-btn {
  background: rgba(20, 19, 17, 0.7);
  border: 1px solid rgba(201, 169, 110, 0.25);
  color: #c9a96e;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  flex-shrink: 0;
}

.lb-btn:hover {
  background: rgba(201, 169, 110, 0.18);
  border-color: rgba(201, 169, 110, 0.6);
  transform: scale(1.08);
}

.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 10;
}

.lb-caption {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Jost", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(232, 230, 222, 0.65);
  text-align: center;
  white-space: nowrap;
}

.lb-counter {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: #c9a96e;
  background: rgba(20, 19, 17, 0.6);
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 4px 14px;
  border-radius: 20px;
}

#preloader {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
}
.pre-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pre-logo {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 36px;
  opacity: 0;
  animation: preUp 0.8s ease 0.3s forwards;
}
.pre-bar-wrap {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
}
.pre-bar {
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 2px;
  transition: width 0.4s ease;
}
.pre-percent {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 2px;
  font-family: monospace;
  opacity: 0;
  animation: preUp 0.6s ease 0.5s forwards;
}
.pre-dots {
  display: flex;
  gap: 8px;
  margin-top: 32px;
  opacity: 0;
  animation: preUp 0.6s ease 0.7s forwards;
}
.pre-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.pre-dots span:nth-child(1) {
  animation: preDot 1.2s ease-in-out 0.8s infinite;
}
.pre-dots span:nth-child(2) {
  animation: preDot 1.2s ease-in-out 1s infinite;
}
.pre-dots span:nth-child(3) {
  animation: preDot 1.2s ease-in-out 1.2s infinite;
}

@keyframes preUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes preDot {
  0%,
  100% {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1);
  }
  50% {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.4);
  }
}

/* BLOG DEATILS */
.blog-detail {
  background: #1a1a1a;
  padding-top: 130px;
}

.blog_inner_img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  margin-bottom: 30px;
  border-radius: 8px;
}

.blog-inner p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted-warm);
}

.blog-inner h2 {
  font-family: "Cinzel";
  font-weight: 400;
  color: #fff;
  font-size: 32px;
}

.blog-inner ul li {
  color: var(--text-muted-warm);
  font-size: 15px;
}

.blog-inner hr {
  color: #353535;
}

.tag-section {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}

.inner_tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.inner_tag p {
  background: #caa05c;
  color: #fff;
  padding: 8px;
  border-radius: 8px;
  margin: 0;
  font-size: 14px;
}

.slider-heading {
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Cinzel";
}

.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #555;
  background: transparent;
  color: #aaa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.nav-btn:hover {
  background: #333;
  color: #fff;
}

.slider-track-wrapper {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slide-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}

.slide-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.slide-card h5 {
  font-weight: 400;
  color: #fff;
  margin: 0.85rem 0 0.5rem;
  line-height: 1.3;
  font-family: "Cinzel";
  font-size: 22px;
}

.slide-card p {
  font-size: 14px;
  color: #adadad;
  line-height: 1.7;
}

.slide-card a {
  font-size: 14px;
  color: #caa05c;
  font-weight: 500;
  display: flex;
  gap: 4px;
  align-items: baseline;
  transition: all 0.4s;
}

.slide-card a:last-of-type::after {
  content: " →";
  font-size: 13px;
}

.slide-card a:hover {
  gap: 8px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 40px 60px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  margin: auto;
  position: absolute;
  z-index: 999;
  left: 50%;
  transform: translateX(-50%);
}

.glass-card h2 {
  font-family: "Cinzel";
  font-size: 60px;
  font-weight: 400;
}

.date {
  font-size: 14px;
  color: #caa05c;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

/* RESERVATION */
.form-title {
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  font-family: "Cinzel";
}

.form-subtitle {
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-box {
  max-width: 750px;
  margin: 0 auto;
}

.form-label {
  font-size: 14px;
  color: #fff;
  margin-bottom: 6px;
  display: block;
}

.form-label span {
  font-size: 11px;
  color: #7a7060;
  margin-left: 4px;
}

.custom-input {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #3f3f3f;
  border-radius: 6px;
  color: #adadad;
  font-size: 14px;
  font-family: sans-serif;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.custom-input::placeholder {
  color: #adadad;
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap .icon-left {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #c9a84c;
  font-size: 15px;
  pointer-events: none;
}

.input-icon-wrap .icon-right {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #c9a84c;
  font-size: 15px;
  pointer-events: none;
}

.input-icon-wrap .custom-input {
  padding-left: 14px;
  padding-right: 14px;
}

select.custom-input.cc {
  padding-left: 14px;
}

select.custom-input {
  cursor: pointer;
}

select.custom-input option {
  background: #272319;
  color: #b0a48a;
}

textarea.custom-input {
  resize: none;
  min-height: 120px;
}

.map iframe {
  width: 100%;
  height: 500px;
  border-radius: 20px;
}

.contact {
  background: #1d1d1d;
}

.left-title {
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  font-family: "Cinzel";
}

.left-desc {
  font-size: 14px;
  color: var(--text-muted-warm);
  line-height: 1.8;
  font-family: sans-serif;
  margin-bottom: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.4rem;
}

.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 0%;
  background: #caa05c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box i {
  color: #fff;
  font-size: 17px;
}

.info-text strong {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
}

.info-text span {
  font-size: 13px;
  color: #adadad;
  font-weight: 400;
}

.form-card {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 2rem;
}

.f-label {
  font-size: 13px;
  color: #fff;
  margin-bottom: 5px;
  display: block;
}

.f-label span {
  color: #fff;
}

.f-input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(63, 63, 63, 1);
  border-radius: 6px;
  color: #c0b49a;
  font-size: 14px;
  font-family: sans-serif;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.2s;
}
.f-input:focus {
  border-color: #c9a84c;
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.1);
}
.f-input::placeholder {
  color: #4a4438;
}
textarea.f-input {
  resize: none;
  min-height: 120px;
}
