/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --gold: #e6a01d;
  --gold-light: #e8d5a3;
  --gold-dark: #8b6914;
  --deep: #1a1208;
  --cream: #faf6ee;
  --warm-white: #fffdf9;
  --charcoal: #2c2416;
  --muted: #080808;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", sans-serif;
  --font-script: "Damion", cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== SCROLL TO TOP ===== */
#button {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--deep);
  border-radius: 50%;
  text-align: center;
  line-height: 48px;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
  transition: all 0.3s ease;
}
#button.show {
  display: block;
}
#button:hover {
  background: var(--deep);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(26, 18, 8, 0.97) !important;
  padding: 0 2rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand img#logo {
  height: 52px;
  filter: drop-shadow(0 0 8px rgba(201, 169, 110, 0.3));
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.75) !important;
  padding: 1.4rem 1.1rem !important;
  transition: color 0.3s ease;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0.8rem;
  left: 1.1rem;
  right: 1.1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.navbar-nav .nav-link:hover {
  color: var(--gold) !important;
}
.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.dropdown-menu {
  background: var(--deep);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 0;
  margin-top: 0;
  padding: 0.5rem 0;
}
.dropdown-item {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.7);
  padding: 0.6rem 1.4rem;
  transition: all 0.25s ease;
}
.dropdown-item:hover {
  background: rgba(201, 169, 110, 0.12);
  color: var(--gold);
}

/* ===== CAROUSEL ===== */
#carouselExampleCaptions {
  position: relative;
}
#carouselExampleCaptions .carousel-item img {
  height: 88vh;
  object-fit: cover;
  filter: brightness(0.72);
}
.carousel-indicators button {
  width: 30px;
  height: 2px;
  background-color: var(--gold);
  border: none;
  opacity: 0.5;
  transition: all 0.3s;
}
.carousel-indicators button.active {
  opacity: 1;
  width: 50px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(80%) sepia(40%) saturate(500%) hue-rotate(5deg);
}

/* Hero overlay text on carousel */
.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
  pointer-events: none;
  z-index: 5;
}
.hero-eyebrow {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.4rem auto;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.23rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* ===== SECTION TITLE SYSTEM ===== */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 0.6rem;
}
.section-label::before,
.section-label::after {
  content: "";
  height: 1px;
  width: 40px;
  background: var(--gold);
}
.section-label span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--deep);
  text-align: center;
  line-height: 1.2;
}
.section-heading em {
  font-style: italic;
}

/* ===== HEADER WELCOME STRIP ===== */
header {
  background: var(--deep);
  text-align: center;
  padding: 3.5rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}
header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 120px,
    rgba(201, 169, 110, 0.04) 120px,
    rgba(201, 169, 110, 0.04) 121px
  );
}
header h1#headtext {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  position: relative;
}
header p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 6rem 2rem;
  background: var(--cream);
  max-width: 100%;
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.about-image-wrap::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 0;
}
.about-image-wrap img {
  position: relative;
  z-index: 1;
}

.about-content {
}
.about-content p {
  text-align: justify;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.btn-gold {
  display: inline-block;
  padding: 0.75rem 2.2rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--deep);
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 6rem 2rem;
  background: var(--deep);
}
.services-section .section-heading {
  color: var(--gold-light);
}
.services-section .section-label span {
  color: var(--gold);
}

.services-grid {
  max-width: 1200px;
  margin: 3.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #111;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.55);
}
.service-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.35);
}
.service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.8rem;
}
.service-overlay h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.8rem;
  transition: transform 0.4s ease;
}
.service-card:hover .service-overlay h2 {
  transform: translateY(-8px);
}
.service-overlay .service-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1rem;
  transition: width 0.4s ease;
}
.service-card:hover .service-line {
  width: 50px;
}
.service-overlay a button {
  padding: 0.5rem 1.4rem;
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.7);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.73rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
}
.service-card:hover .service-overlay a button {
  opacity: 1;
  transform: translateY(0);
}
.service-overlay a button:hover {
  background: var(--gold);
  color: var(--deep);
  border-color: var(--gold);
}

/* ===== VIRTUAL TOUR ===== */
.tour-section {
  padding: 6rem 2rem;
  background: var(--cream);
  text-align: center;
}
.tour-section .section-heading {
  margin-bottom: 3rem;
}
.video-wrapper {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(26, 18, 8, 0.2);
}
.video-wrapper::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 0;
}
.video-wrapper iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 6rem 2rem;
  background: var(--deep);
}
.gallery-section .section-heading {
  color: var(--gold-light);
  margin-bottom: 3rem;
}
.gallery-section .section-label span {
  color: var(--gold);
}

.gallery-grid {
  max-width: 1300px;
  margin: 0 auto;
  columns: 4 220px;
  column-gap: 8px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #0d0d0d;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
  filter: brightness(0.85) saturate(0.9);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.5) saturate(0.7);
}
.gallery-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
}
.gallery-caption span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 6rem 2rem;
  background: var(--cream);
}
.faq-inner {
  max-width: 760px;
  margin: 3rem auto 0;
}
.faq-section .section-heading {
  margin-bottom: 0;
}

.faq {
  border-bottom: 1px solid rgba(139, 105, 20, 0.2);
  overflow: hidden;
}
.faq-question {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  padding: 1.4rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
  margin: 0;
  list-style: none;
}
.faq-question:hover {
  color: var(--gold-dark);
}
.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq.active .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  padding-bottom: 1.4rem;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 6rem 2rem;
  background: var(--deep);
}
.contact-section .section-heading {
  color: var(--gold-light);
}
.contact-section .section-label span {
  color: var(--gold);
}

.contact-inner {
  max-width: 1100px;
  margin: 3.5rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
  filter: grayscale(30%) contrast(1.05);
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}
.contact-detail .icon {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-detail p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(250, 246, 238, 0.6);
  line-height: 1.7;
  margin: 0;
}
.contact-detail strong {
  color: rgba(250, 246, 238, 0.85);
}

.directions-box {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
  background: rgba(201, 169, 110, 0.04);
}
.directions-box h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 400;
}
.directions-box p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(250, 246, 238, 0.5);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.btn-book {
  display: block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--deep);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}
.btn-book:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

/* ===== FOOTER ===== */
footer.footer {
  background: #100c05;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 420px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.55rem;
}
.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(250, 246, 238, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 246, 238, 0.5);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(250, 246, 238, 0.25);
  letter-spacing: 0.05em;
  margin: 0;
}
.footer-script {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: rgba(201, 169, 110, 0.35);
}

/* ===== UTILITY ===== */
.mt-section {
  margin-top: 0;
}
.text-center {
  text-align: center;
}

/* Intro text for contact */
.intro-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(250, 246, 238, 0.45);
  text-align: center;
  margin-top: 0.8rem;
  letter-spacing: 0.05em;
}
