:root {
  --tbr-navy: #0e2e44;
  --tbr-navy-dark: #0a2335;
  --tbr-navy-deep: #07192a;
  --tbr-orange: #c47a3b;
  --tbr-orange-hover: #b06a2e;
  --tbr-cream: #f4ebdb;
  --tbr-cream-soft: #f7f0e2;
  --tbr-text: #1a1a1a;
  --tbr-muted: #4a4a4a;
  --tbr-line: rgba(255, 255, 255, 0.18);
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html { scroll-behavior: smooth; }

a { text-decoration: none; }
a:hover { text-decoration: none; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--tbr-text);
  background: var(--tbr-cream);
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .serif {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.accent-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--tbr-orange);
  font-weight: 400;
}

/* ========= Top promo bar ========= */
.top-bar {
  background: var(--tbr-navy-dark);
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 50;
}
.top-bar .top-row {
  /*display: flex;*/
  /*align-items: stretch;*/
  /*justify-content: space-between; */
  min-height: 44px; }
.top-bar .promo { display: flex; align-items: center; gap: 10px; padding: 10px 24px; }
.top-bar .promo i { color: var(--tbr-orange); }
.top-bar .promo a { color: #fff; text-decoration: underline !important; text-underline-offset: 3px; font-weight: 500; }
.top-bar .promo a:hover { color: var(--tbr-orange); }
.top-bar .reserve-btn {
  background: var(--tbr-orange);
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 13px;
  padding: 11px 36px;
  display: inline-flex; align-items: center;
  text-decoration: none;
  transition: background .25s ease;
}
.top-bar .reserve-btn:hover { background: var(--tbr-orange-hover); color: #fff; }
.top-bar .phone { display: flex; align-items: center; gap: 10px; padding: 10px 24px; color: #fff; text-decoration: none; }
.top-bar .phone i { color: var(--tbr-orange); }
.top-bar .phone:hover { color: var(--tbr-orange); }

/* ========= Main navbar ========= */
.main-nav {
  background: var(--tbr-navy);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .3s ease, padding .3s ease;
}
.main-nav.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.25); }
.navbar-brand { display: flex; align-items: center; gap: 12px; color: #fff; padding: 14px 0; }
.navbar-brand:hover { color: #fff; }
.brand-mark {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { line-height: 1; }
.brand-text .b1 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; letter-spacing: 4px; font-weight: 600;
  display: block;
}
.brand-text .b2 {
  font-size: 11px; letter-spacing: 8px; opacity: .8;
  margin-top: 4px; display: block;
}
.main-nav .nav-link {
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  padding: 28px 14px !important;
  position: relative;
  text-transform: uppercase;
}
.main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 20px; left: 14px; right: 14px;
  height: 2px; background: var(--tbr-orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.main-nav .nav-link:hover::after, .main-nav .nav-link.active::after { transform: scaleX(1); }
.main-nav .nav-link:hover { color: var(--tbr-orange) !important; }
.fb-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; margin-left: 16px;
  transition: background .25s ease;
}
.fb-icon:hover { background: var(--tbr-orange); color: #fff; }

.navbar-toggler { border: 1px solid rgba(255,255,255,0.4); }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========= Hero ========= */
.hero {
  position: relative;
  /*min-height: 640px;*/
  background: #0a2335;
  color: #fff;
  overflow: hidden;
}
/*.hero::before {*/
/*  content: '';*/
/*  position: absolute; inset: 0;*/
/*  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;*/
/*  z-index: 0;*/
/*}*/
/*.hero::after {*/
/*  content: '';*/
/*  position: absolute; inset: 0;*/
/*  background: linear-gradient(90deg, rgba(7,25,42,0.65) 0%, rgba(7,25,42,0.25) 55%, rgba(7,25,42,0.05) 100%);*/
/*  z-index: 1;*/
/*}*/
.hero-inner { position: relative; z-index: 2; padding: 90px 0 160px; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 26px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.hero p.lead {
  max-width: 460px;
  font-size: 1.05rem;
  font-weight: 400;
  color: #f1ecdf;
  line-height: 1.6;
  margin-bottom: 36px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.btn-orange {
  background: var(--tbr-orange);
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.4px;
  font-size: 13px;
  padding: 16px 32px;
  border: none;
  border-radius: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-orange:hover { background: var(--tbr-orange-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(196,122,59,0.35); }

/* ========= Booking bar ========= */
.booking-strip-wrap {
  position: relative; z-index: 3;
  margin-top: -155px;
}
.booking-strip {
  background: var(--tbr-navy);
  color: #fff;
  padding: 22px 28px;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.booking-strip .label { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.7); text-transform: uppercase; margin-bottom: 6px; display: block; }
.booking-strip .start-stay { display: flex; align-items: center; gap: 16px; }
.booking-strip .cal-ico {
  width: 44px; height: 44px; border: 1px solid var(--tbr-line);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px; color: #fff;
}
.booking-strip .start-stay .t1 { font-size: 12px; letter-spacing: 1px; color: rgba(255,255,255,0.7); text-transform: uppercase; }
.booking-strip .start-stay .t2 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; line-height: 1.1; }
.booking-strip .form-control,
.booking-strip .form-select {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid var(--tbr-line);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 14px;
}
.booking-strip .form-control::placeholder { color: rgba(255,255,255,0.55); }
.booking-strip .form-control:focus,
.booking-strip .form-select:focus {
  border-color: var(--tbr-orange);
  box-shadow: 0 0 0 2px rgba(196,122,59,0.25);
  background: transparent !important;
  color: #fff !important;
}
.booking-strip .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 12px;
}
.booking-strip input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.4);
  opacity: .7;
  cursor: pointer;
}
.booking-strip .check-rates {
  width: 100%;
  background: var(--tbr-orange);
  color: #fff;
  border: none;
  margin-top:20px;
  padding: 13px 18px;
  font-size: 13px; font-weight: 700; letter-spacing: 1.4px;
  border-radius: 4px;
  text-transform: uppercase;
  transition: background .25s ease;
}
.booking-strip .check-rates:hover { background: var(--tbr-orange-hover); }
.booking-strip .powered { text-align: center; font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 14px; }

/* ========= Welcome section ========= */
.welcome-section { padding: 110px 0 90px; background: var(--tbr-cream); }
.welcome-img-wrap { overflow: hidden; border-radius: 4px; }
.welcome-img-wrap img { width: 100%; height: 460px; object-fit: cover; transition: transform 1.2s ease; }
.welcome-img-wrap:hover img { transform: scale(1.04); }
.welcome-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 8px 0 24px;
}
.welcome-section p { color: var(--tbr-muted); font-size: 1rem; margin-bottom: 18px; }
.btn-navy {
  background: var(--tbr-navy);
  color: #fff;
  border: none;
  font-weight: 700;
  letter-spacing: 1.4px;
  font-size: 13px;
  padding: 16px 30px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background .25s ease, transform .25s ease;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-navy:hover { background: var(--tbr-navy-dark); color: #fff; transform: translateY(-2px); }

/* ========= Features section ========= */
.features-section { padding: 30px 0 110px; background: var(--tbr-cream); text-align: center; }
.section-eyebrow { font-size: 20px; margin-bottom: 6px; }
.features-section h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 60px; }
.feature-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(14, 46, 68, 0.06);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
  height: 100%;
  display: flex; flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(14, 46, 68, 0.14);
}
.feature-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.feature-card:hover .feature-img img { transform: scale(1.07); }
.feature-icon {
  position: absolute;
  bottom: -28px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 60px;
  background: var(--tbr-navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 6px 18px rgba(14,46,68,0.3);
}
.feature-body { padding: 50px 28px 32px; text-align: center; flex-grow: 1; display: flex; flex-direction: column; }
.feature-body h3 { font-size: 1.3rem; margin-bottom: 14px; color: var(--tbr-text); }
.feature-body p { font-size: 0.95rem; color: var(--tbr-muted); margin-bottom: 24px; flex-grow: 1; }
.feature-learn {
  color: var(--tbr-text);
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color .25s ease, gap .25s ease;
}
.feature-learn:hover { color: var(--tbr-orange); gap: 14px; }
.feature-learn i { transition: transform .25s ease; }
.feature-learn:hover i { transform: translateX(4px); }

/* ========= Testimonials section ========= */
.testimonials {
  position: relative;
  padding: 100px 0;
  background: #07192a url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  color: #fff;
  text-align: center;
}
.testimonials::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,25,42,0.92) 0%, rgba(7,25,42,0.88) 100%);
}
.testimonials .container { position: relative; z-index: 2; }
.testimonials h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 56px; color: #fff; }
.testimonials .section-eyebrow { color: var(--tbr-orange); font-style: italic; font-family: 'Playfair Display', serif; font-size: 18px; }
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 28px;
  border-radius: 4px;
  height: 100%;
  text-align: left;
  transition: transform .35s ease, background .35s ease;
}
.testimonial-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.07); }
.testimonial-card .quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  color: var(--tbr-orange);
  line-height: 0.7;
  margin-bottom: 14px;
  display: block;
}
.testimonial-card p.quote { color: #e9e3d4; font-size: 1rem; line-height: 1.65; margin-bottom: 22px; }
.testimonial-card .author { color: #c2b89e; font-size: 14px; font-weight: 500; }
.btn-outline-cream {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  font-weight: 700;
  letter-spacing: 1.6px;
  font-size: 13px;
  padding: 16px 36px;
  border-radius: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s ease;
  margin-top: 50px;
  display: inline-block;
}
.btn-outline-cream:hover { background: var(--tbr-orange); border-color: var(--tbr-orange); color: #fff; }

/* ========= Footer ========= */
footer { background: var(--tbr-navy); color: rgba(255,255,255,0.78); padding: 70px 0 0; }
footer h5 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
footer .footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
footer .footer-brand svg { width: 56px; height: 56px; }
footer .footer-brand .b1 { font-family: 'Playfair Display', serif; font-size: 18px; letter-spacing: 3px; color: #fff; display: block; line-height: 1; }
footer .footer-brand .b2 { font-size: 10px; letter-spacing: 6px; color: rgba(255,255,255,0.6); display: block; margin-top: 4px; }
footer p, footer a { color: rgba(255,255,255,0.78); text-decoration: none; font-size: 14px; }
footer .contact-info p { margin-bottom: 8px; line-height: 1.6; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 10px; }
footer ul li a { transition: color .25s ease, padding-left .25s ease; display: inline-block; }
footer ul li a:hover { color: var(--tbr-orange); padding-left: 0px; }
footer .newsletter input {
  background: rgba(255,255,255,0.95);
  border: none;
  padding: 13px 16px;
  width: 100%;
  font-size: 14px;
  border-radius: 2px;
  color: #1a1a1a;
}
footer .newsletter input:focus { outline: 2px solid var(--tbr-orange); }
footer .subscribe-btn {
  width: 100%; margin-top: 10px;
  background: var(--tbr-orange);
  color: #fff;
  border: none;
  padding: 14px;
  font-weight: 700; letter-spacing: 1.6px; font-size: 13px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .25s ease;
}
footer .subscribe-btn:hover { background: var(--tbr-orange-hover); }
footer .social-icons { margin-top: 22px; }
footer .social-icons a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; margin-right: 8px;
  transition: background .25s ease;
}
footer .social-icons a:hover { background: var(--tbr-orange); }
.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0;
  font-size: 13px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom a { margin-left: 30px; color: rgba(255,255,255,0.65); }
.footer-bottom a:hover { color: var(--tbr-orange); }

/* ========= Scroll to top button ========= */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.95);
  color: var(--tbr-navy);
  border: 1px solid rgba(14,46,68,0.15);
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 999;
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
#scrollTopBtn.visible { display: inline-flex; }
#scrollTopBtn:hover { background: var(--tbr-orange); color: #fff; transform: translateY(-4px); }


#about1 {
  margin:20px 0px 20px 0px;

}

#about1 .about-container p {
  text-align: left;
  line-height: 30px;
  font-size: 15px;
  color: #000;
  padding: 0px 0px 10px;
  /*font-weight: 500;*/
}

#about1 .abtcontent1 {
  padding: 0px 0px 0px;
  text-align: left;
}


#about1 .abtcontent1 {
  padding: 0px 0px 0px;
  text-align: left;
}

#about1 .about-container .abtcontent1 h1 {
  line-height:50px;
  color:#000;
  padding:0px  0px;
  font-size:38px;
  /*font-weight:800;*/
  padding:0px 0px 10px;!important;
  text-align:left;
  text-transform:uppercase;

}
#about1 .about-container p {
  text-align:left;
  line-height: 28px;
  font-size:17px;
  color:#444444;
  padding:0px 0px 15px;
  /*font-weight:500;*/
}
#about1 .abtcontent1 {
  padding: 0px 5px 0px;
  text-align: left;
}

#about1 h2{
  font-size: 33px;
  color: #000;
  margin: 15px 0px 10px 0px;
  font-weight: bold;
}

#about1 h3{
  font-size: 27px;

  margin: 15px 0px 12px 0px;
  font-weight: bold;
}

.blckfont {
  text-align:left;
  line-height: 28px;
  font-size:17px;
  color:#000;
  padding:10px 0px 15px;
}

.blckfont p{
  text-align:left;
  line-height: 28px;
  font-size:17px;
  color:#444444;
  padding:10px 0px 15px;
}

#about1 ul {
  margin-left: 7px;
  list-style: disc;
  text-align:left;
  line-height: 30px;
  font-size:15px;
  color:#444444;

  font-weight:400;
}

#about1 ul li {
  text-align:left;
  line-height: 30px;
  font-size:15px;
  color:#444444;

  font-weight:400;
  list-style: disc;
}



/* ========= Responsive tweaks ========= */
@media (max-width: 991.98px) {
  .top-bar .top-row { flex-direction: column; }
  .top-bar .reserve-btn { width: 100%; justify-content: center; }
  .main-nav .nav-link { padding: 14px 0 !important; }
  .main-nav .nav-link::after { display: none; }
  .navbar-collapse { background: var(--tbr-navy-dark); padding: 16px 18px 22px; margin-top: 6px; border-radius: 4px; }
  .fb-icon { margin: 12px 0 0; }
  .booking-strip-wrap { margin-top: 0px; }
  .booking-strip { padding: 22px 18px; }
  .booking-strip .start-stay { justify-content: center; }
  .hero-inner { padding: 70px 0 130px; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .welcome-section { padding: 70px 0 60px; }
  .welcome-img-wrap img { height: 360px; }
  .testimonials { padding: 70px 0; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-bottom .links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
  .footer-bottom a { margin-left: 0; }
}

@media (max-width: 575.98px) {
  .top-bar .promo { padding: 10px 16px; font-size: 13px; flex-wrap: wrap; }
  .top-bar .phone { padding: 10px 16px; }
  .hero { min-height: 540px; }
  .hero h1 { font-size: 2.4rem; }
  .features-section h2, .welcome-section h2, .testimonials h2 { font-size: 1.8rem; }
  #scrollTopBtn { bottom: 20px; right: 20px; width: 44px; height: 44px; }
}

/* Hide React root completely */
#root { display: none; }