:root {
  --bg: #f6efe2;
  --bg-alt: #fffaf2;
  --panel: rgba(255, 250, 242, 0.82);
  --panel-strong: rgba(255, 248, 238, 0.95);
  --ink: #2c211b;
  --muted: #6b564b;
  --line: rgba(85, 53, 36, 0.14);
  --accent: #c85b32;
  --accent-deep: #8e3514;
  --accent-soft: #f2c7a2;
  --shadow: 0 24px 60px rgba(83, 47, 26, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --sidebar-width: 280px;
  font-family: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 205, 160, 0.65), transparent 28%),
    radial-gradient(circle at bottom right, rgba(214, 109, 68, 0.18), transparent 24%),
    linear-gradient(180deg, #fff9f2 0%, #f5ecde 100%);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; display: block; }

.home-page {
  display: grid;
  place-items: center;
  padding: 32px;
}

.home-shell {
  width: min(900px, 100%);
}

.home-hero {
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 600;
}

.home-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.home-copy {
  max-width: 42rem;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.home-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.primary-btn,
.secondary-btn,
.language-btn,
.mobile-language-btn,
.slider-arrow {
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.primary-btn,
.secondary-btn {
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
}

.primary-btn {
  background: var(--accent);
  color: white;
}

.secondary-btn {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
}

.primary-btn:hover,
.secondary-btn:hover,
.language-btn:hover,
.mobile-language-btn:hover,
.slider-arrow:hover {
  transform: translateY(-1px);
}

.roomtype-page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar-width);
  padding: 28px;
  background: rgba(255, 247, 237, 0.92);
  backdrop-filter: blur(16px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 30;
}

.sidebar-logo a {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.language-toggle,
.mobile-language-toggle {
  display: flex;
  gap: 10px;
}

.language-btn,
.mobile-language-btn {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--muted);
  border: 1px solid var(--line);
  min-width: 56px;
}

.language-btn.active,
.mobile-language-btn.active {
  background: var(--accent);
  color: white;
  border-color: transparent;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.sidebar-link {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
}

.sidebar-link.active,
.sidebar-link:hover {
  background: rgba(200, 91, 50, 0.1);
  color: var(--accent-deep);
}

.sidebar-bottom-img {
  margin-top: auto;
}

.sidebar-mascot,
.popup-badge {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f7c66f, #e08f53);
  color: white;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 18px 36px rgba(152, 76, 29, 0.24);
}

.main-content {
  flex: 1;
  margin-left: var(--sidebar-width);
  padding: 32px 32px 48px;
}

.mobile-language-toggle {
  display: none;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.page-title {
  margin: 12px 0 10px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.page-subtitle {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.roomtype {
  padding-top: 10px;
}

.room-category {
  position: relative;
  margin-top: 26px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.room-category::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255,255,255,0.42), transparent 42%);
  pointer-events: none;
}

.room-header,
.room-content {
  position: relative;
  z-index: 1;
}

.room-header {
  margin-bottom: 18px;
}

.room-title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.room-subtitle {
  margin: 8px 0 0;
  color: var(--accent-deep);
  font-size: 1rem;
  font-weight: 500;
}

.room-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.room-description p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.room-features,
.room-amenities {
  list-style: none;
  padding: 0;
}

.room-features {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.room-features li {
  padding-left: 18px;
  position: relative;
}

.room-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.room-amenities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
}

.room-feature-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--muted);
}

.image-slider,
.slider-container {
  position: relative;
}

.slider-container {
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, #ead9c9, #f8f2ea);
  border: 1px solid rgba(255,255,255,0.9);
  min-height: 320px;
}

.slider-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.slider-overlay {
  position: absolute;
  inset: auto 0 18px;
  display: flex;
  justify-content: space-between;
  padding: 0 18px;
}

.slider-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(44, 33, 27, 0.72);
  color: white;
}

.image-counter {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(44, 33, 27, 0.72);
  color: white;
  font-size: 0.9rem;
}

.hover-popup {
  position: absolute;
  top: 24px;
  right: 24px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.24s ease, transform 0.24s ease;
  pointer-events: none;
}

.room-category:hover .hover-popup {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  padding-top: 44px;
}

.footer-business-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--line);
}

.footer-business-col {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.footer p {
  margin: 18px 0 0;
  color: var(--muted);
}

.hamburger-btn,
.sidebar-overlay {
  display: none;
}

@media (max-width: 1100px) {
  .room-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hamburger-btn {
    display: inline-flex;
    position: fixed;
    top: 18px;
    left: 18px;
    z-index: 40;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 250, 242, 0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  .hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.24s ease;
  }

  .sidebar.is-open {
    transform: translateX(0);
  }

  .sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 16, 11, 0.35);
    z-index: 20;
  }

  .sidebar-overlay.is-open {
    display: block;
  }

  .main-content {
    margin-left: 0;
    padding: 86px 18px 36px;
  }

  .mobile-language-toggle {
    display: flex;
  }

  .language-toggle {
    display: none;
  }

  .room-category {
    padding: 22px;
  }

  .room-amenities,
  .footer-business-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page-title {
    font-size: 2.3rem;
  }

  .home-hero,
  .room-category,
  .footer-business-info {
    padding: 20px;
  }

  .slider-container {
    min-height: 240px;
  }

  .hover-popup {
    display: none;
  }
}
