:root {
  --tbox-orange: #ff5c26;
  --tbox-orange-light: #fff5f0;
  --tbox-dark: #1a1a1a;
  --tbox-bg: #fffbf9;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--tbox-bg);
  color: #444;
}

/* Header */

.navbar {
  background-color: #000 !important;
  padding: 15px 0;
}

.nav-link {
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0 10px;
}

.btn-orange {
  background-color: var(--tbox-orange);
  color: white !important;
  border-radius: 30px;
  font-weight: 700;
  padding: 8px 25px;
  border: none;
  transition: 0.3s;
}

.btn-orange:hover {
  background-color: #e44d1d;
  transform: translateY(-2px);
}

/* Hero */

.hero-section {
  height: 70vh;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('../../assets/img/img-1780787498502.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: white;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
}

/* Feature Bar */

.feature-bar {
  background: white;
  padding: 30px 0;
  margin-top: -40px;
  border-radius: 20px;
  position: relative;
  z-index: 10;
}

.feature-item i {
  color: var(--tbox-orange);
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}

.feature-item span {
  font-weight: 600;
  font-size: 0.85rem;
}

/* Sections */

.section-title {
  color: var(--tbox-orange);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 40px;
  text-align: center;
}

.tabs-scroll-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.tabs-scroll-container::-webkit-scrollbar {
  display: none;
}

.room-thumb-wrapper {
  flex: 0 0 160px;
}

.room-thumb-card {
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 5px;
  transition: 0.3s;
  cursor: pointer;
}

.room-thumb-card.active {
  border-color: var(--tbox-orange);
}

.room-thumb-card img {
  border-radius: 15px;
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}

.room-thumb-card p {
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 0;
  white-space: normal;
}

/* Arrows */

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 10;
  color: var(--tbox-orange);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-arrow.prev {
  left: -10px;
}

.scroll-arrow.next {
  right: -10px;
}

@media (max-width: 991px) {
  .scroll-arrow {
    display: none;
  }
}

@media (max-width: 991px) {
  .room-thumb-wrapper {
    flex: 0 0 130px;
  }
}

/* Why Choose */

.why-choose-bar {
  background-color: var(--tbox-orange);
  border-radius: 50px 0 0 50px;
  color: white;
  padding: 15px 40px;
  margin-left: 50px;
}

/* Food & Promo */

.card-custom {
  border: none;
  border-radius: 25px;
  background-color: var(--tbox-orange-light);
  overflow: hidden;
}

.card-custom .card-body {
  padding: 25px;
}

.price-tag {
  color: var(--tbox-orange);
  font-size: 1.5rem;
  font-weight: 800;
}

/* Menu List */

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 15px;
}

.menu-item::after {
  content: "";
  flex: 1;
  border-bottom: 1px dotted #ccc;
  margin: 0 10px;
}

.menu-price {
  font-weight: 700;
  color: var(--tbox-orange);
}

/* Floating Buttons */

.floating-social {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: #0084ff;
  font-size: 1.2rem;
  text-decoration: none;
}

.footer {
  background: #000;
  color: #888;
  padding: 80px 0 40px;
}

.footer h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 25px;
}

.footer a {
  color: #888;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.text-orange {
  color: var(--tbox-orange);
}

