/* ── Navigation ────────────────────────────────────────────── */
.public-nav {
  background: var(--bg);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--bdr);
  position: sticky; top: 0; z-index: 50;
}
.public-nav .brand-link {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.public-nav .brand-logo-img {
  height: 36px; width: auto; object-fit: contain; display: block;
}
.public-nav .brand-name-text {
  font-family: var(--font-display); font-size: 18px;
  color: var(--accent); font-weight: 600;
}
.public-nav .links { display: flex; gap: 22px; margin-left: auto; }
.public-nav .links a { color: var(--tx-2); font-size: 13px; }
.public-nav .links a:hover { color: var(--accent); }

.theme-toggle {
  background: none; border: none; cursor: pointer;
  font-size: 18px; line-height: 1; padding: 4px 6px;
  border-radius: 6px; color: var(--tx-2);
  transition: background 0.15s, color 0.15s;
}
.theme-toggle:hover { background: var(--card); color: var(--accent); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 500px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.65) 0%, rgba(0,0,0,.45) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}
.hero-tag { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 16px; }
.hero-title { font-family: var(--font-display); font-size: 52px; line-height: 1.1; margin-bottom: 14px; color: #fff; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.8); max-width: 600px; margin: 0 auto 36px; }

/* Booking widget */
.booking-widget {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px; padding: 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 12px; align-items: end;
  max-width: 860px; margin: 0 auto;
}
.booking-widget.bw-single {
  grid-template-columns: 1fr 1fr 1fr auto;
}
.booking-widget .fl { color: rgba(255,255,255,.5); }
.booking-widget .fi { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: #fff; }

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 64px 40px; }
.section-title { font-family: var(--font-display); font-size: 32px; text-align: center; margin-bottom: 8px; }
.section-sub { text-align: center; color: var(--tx-3); font-size: 13px; margin-bottom: 40px; }

/* Rooms */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 18px; max-width: 1200px; margin: 0 auto; }
.room-card { background: var(--card); border: 1px solid var(--bdr); border-radius: var(--radius); overflow: hidden; transition: all .2s; }
.room-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.room-card .img { height: 160px; background-size:cover; background-position:center; display: flex; align-items: center; justify-content: center; font-size: 48px; transition:transform .3s; }
.room-card:hover .img { transform:scale(1.05); }
.room-card .body { padding: 18px; }
.room-card .name { font-family: var(--font-display); font-size: 18px; margin-bottom: 6px; }
.room-card .desc { font-size: 12px; color: var(--tx-3); margin-bottom: 14px; line-height: 1.5; }
.room-card .price-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; }
.room-card .price { font-family: var(--font-display); font-size: 22px; color: var(--accent); }
.room-card .per { font-size: 10px; color: var(--tx-3); }

/* ── Footer ───────────────────────────────────────────────── */
.public-footer {
  background: var(--surf);
  border-top: 1px solid var(--bdr);
  padding: 48px 40px 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 200px repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 32px;
}
.footer-brand .brand-img { height: 40px; width: auto; object-fit: contain; margin-bottom: 10px; display: block; }
.footer-brand .brand-name { font-family: var(--font-display); font-size: 16px; color: var(--accent); margin-bottom: 6px; }
.footer-brand .brand-tagline { font-size: 11px; color: var(--tx-3); line-height: 1.5; }
.footer-col h5 { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--tx-3); margin-bottom: 14px; font-weight: 600; }
.footer-col a { display: block; color: var(--tx-2); font-size: 12px; margin-bottom: 8px; transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid var(--bdr);
  padding: 14px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: var(--tx-3);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .booking-widget { grid-template-columns: 1fr; }
  .hero-title { font-size: 34px; }
  .public-nav .links { display: none; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 48px 20px; }
  .public-nav { padding: 14px 20px; }
}

/* ── Testimonial Carousel ─────────────────────────────────── */
.testimonial-carousel {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}
.tcarousel-card {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: var(--radius);
  padding: 36px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.tcarousel-stars {
  color: #F59E0B;
  font-size: 18px;
  letter-spacing: 2px;
}
.tcarousel-content {
  font-size: 15px;
  color: var(--tx-2);
  line-height: 1.7;
  font-style: italic;
  max-width: 500px;
}
.tcarousel-guest {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.tcarousel-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bdr-2);
}
.tcarousel-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.15);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}
.tcarousel-guest-name {
  font-size: 13px;
  font-weight: 600;
}
.tcarousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--bdr-2);
  background: var(--card-2);
  color: var(--tx-2);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
  z-index: 2;
}
.tcarousel-arrow:hover {
  background: var(--card-3);
  color: var(--accent);
  border-color: var(--accent);
}
.tcarousel-arrow-left { left: -56px; }
.tcarousel-arrow-right { right: -56px; }
.tcarousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.tcarousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--bdr-2);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.tcarousel-dot:hover {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.3);
}
.tcarousel-dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  width: 24px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .tcarousel-arrow { display: none; }
  .tcarousel-card { padding: 24px 20px; }
}
