/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Content Wrapper */
.hero-content {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hosts Grid */
.hosts-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.host-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.host-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.host-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px auto;
  display: block;
}

.host-role {
  color: #666;
  margin-bottom: 10px;
}

.host-description {
  font-size: 14px;
  line-height: 1.5;
}

/* Contact Section */
.contact-section {
  margin: 50px auto;
  text-align: center;
}

.contact-intro {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 16px;
}

@media (max-width: 768px) {
  /* Mobile Menu */
  .mobile-menu-toggle {
    display: flex !important;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #35424a;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-menu ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 20px !important;
    list-style: none !important;
  }
  
  .nav-menu ul li {
    margin: 15px 0 !important;
    margin-left: 0 !important;
  }
  
  .nav-menu ul li a {
    font-size: 18px !important;
    padding: 10px 20px !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    color: white !important;
    text-decoration: none !important;
  }
  
  /* Header adjustments */
  header .container {
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  /* Room page header layout on mobile */
  header:not(.sticky-header) .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  header:not(.sticky-header) .container > div {
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
  
  header:not(.sticky-header) .logo {
    margin-bottom: 0;
  }
  
  .logo {
    font-size: 20px;
  }
  
  /* Hide desktop navigation on mobile for main pages */
  .sticky-header nav {
    display: none;
  }
  
  .sticky-header .nav-menu {
    display: block;
  }
  
  /* Show navigation on mobile for room pages */
  header:not(.sticky-header) nav {
    display: block;
  }
  
  header:not(.sticky-header) nav ul {
    flex-direction: row;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  
  header:not(.sticky-header) nav ul li {
    margin: 0;
    margin-left: 0;
  }
  
  header:not(.sticky-header) nav ul li a {
    font-size: 14px;
    padding: 8px 12px;
    display: block;
    text-align: center;
    white-space: nowrap;
  }
  
  /* Hero section mobile */
  .hero {
    height: 400px;
    padding: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .hero p {
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 100%;
  }
  
  .hero .btn {
    padding: 12px 24px;
    font-size: 16px;
  }
  
  /* Location titles mobile */
  .location-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .location-section {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  /* Rooms grid mobile */
  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .room-card {
    margin-bottom: 15px;
  }
  
  .room-card img {
    height: 200px;
  }
  
  .room-card-content {
    padding: 15px;
  }
  
  .room-card-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .room-card-content p {
    font-size: 14px;
    margin-bottom: 0;
  }
  
  /* Hosts section mobile */
  .hosts-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 10px;
  }
  
  .host-card {
    min-width: 280px;
    max-width: 100%;
  }
  
  .host-image {
    width: 120px;
    height: 120px;
  }
  
  /* Contact section mobile */
  .contact-section {
    margin: 30px auto;
    padding: 0 20px;
  }
  
  .contact-info p {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  /* About section mobile */
  #about {
    margin: 30px auto;
    padding: 0 20px;
  }
  
  #about p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* Room content mobile */
  .room-content {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .room-left {
    align-items: stretch;
  }
  
  .room-image {
    height: 220px;
    min-width: 0;
    max-width: 100%;
  }
  
  .room-gallery-horizontal {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 10px;
  }
  
  .gallery-thumb {
    width: 56px;
    height: 56px;
  }
  
  .audio-player {
    padding: 10px;
    margin: 15px 0;
  }
  
  /* Typography adjustments */
  h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  /* Container padding */
  .container {
    padding: 0 15px;
  }
  
  /* Footer mobile */
  footer {
    padding: 15px 0;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 14px;
  }
  
  .logo {
    font-size: 18px;
  }
  
  .room-card-content h3 {
    font-size: 16px;
  }
  
  .room-card-content p {
    font-size: 13px;
  }
  
  .host-card {
    min-width: 250px;
    padding: 15px;
  }
  
  .host-image {
    width: 100px;
    height: 100px;
  }
  
  h2 {
    font-size: 20px;
  }
  
  .contact-info p {
    font-size: 13px;
  }
}
/* Asia Room vertical gallery and left column layout */
.room-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 30px;
  align-items: flex-start;
}

.room-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.room-gallery-horizontal {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 15px;
  margin-bottom: 20px;
  justify-content: center;
}

.gallery-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: border 0.2s;
}

.gallery-thumb.selected,
.gallery-thumb:focus {
  border: 2px solid #2a7ae2;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background: linear-gradient(-45deg, #f8f9fa, #e9ecef, #f1f3f4, #f8f9fa);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  overflow-x: hidden;
}

/* Animated background elements */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at calc(20% + var(--mouse-x, 0) * 10px) calc(80% + var(--mouse-y, 0) * 10px), rgba(53, 66, 74, 0.08) 0%, transparent 50%),
    radial-gradient(circle at calc(80% + var(--mouse-x, 0) * -10px) calc(20% + var(--mouse-y, 0) * -10px), rgba(232, 73, 29, 0.08) 0%, transparent 50%),
    radial-gradient(circle at calc(40% + var(--mouse-x, 0) * 5px) calc(40% + var(--mouse-y, 0) * 5px), rgba(255, 156, 27, 0.08) 0%, transparent 50%);
  animation: backgroundFloat 20s ease-in-out infinite;
  z-index: -2;
  transition: background 0.1s ease;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at calc(25% + var(--mouse-x, 0) * 5px) calc(25% + var(--mouse-y, 0) * 5px), rgba(255, 255, 255, 0.1) 2px, transparent 2px),
    radial-gradient(circle at calc(75% + var(--mouse-x, 0) * -5px) calc(75% + var(--mouse-y, 0) * -5px), rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px, 30px 30px;
  animation: starField 30s linear infinite;
  z-index: -1;
  transition: background-image 0.1s ease;
}

/* Floating particles */
.particle {
  position: fixed;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  pointer-events: none;
  animation: floatUp 15s linear infinite;
  z-index: -1;
}

.particle:nth-child(odd) {
  background: rgba(53, 66, 74, 0.4);
  animation-duration: 20s;
}

.particle:nth-child(3n) {
  background: rgba(232, 73, 29, 0.4);
  animation-duration: 25s;
}

.particle:nth-child(4n) {
  background: rgba(255, 156, 27, 0.4);
  animation-duration: 18s;
}

/* Keyframe animations for background */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes backgroundFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(120deg);
  }
  66% {
    transform: translateY(30px) rotate(240deg);
  }
}

@keyframes starField {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-100px);
  }
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes heroGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes heroShimmer {
  0% {
    transform: translateX(-100%) skewX(-15deg);
  }
  100% {
    transform: translateX(200%) skewX(-15deg);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: #35424a;
  color: white;
  padding: 20px 0;
  margin-bottom: 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Sticky header for main pages only */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #e8491d;
}

.hero {
  background: 
    linear-gradient(135deg, rgba(53, 66, 74, 0.9), rgba(232, 73, 29, 0.7)),
    linear-gradient(-45deg, #35424a 0%, #e8491d 25%, #ff9c1b 50%, #35424a 75%, #e8491d 100%);
  background-size: 400% 400%;
  background-position: 0% 50%;
  animation: heroGradient 8s ease infinite;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: heroFloat 6s ease-in-out infinite;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: heroShimmer 3s ease-in-out infinite;
  z-index: 2;
}

.hero h1,
.hero p,
.hero .btn {
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 700px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: #e8491d;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #d43f1a;
}

/* Location Section Styles */
.location-section {
  margin-bottom: 60px;
  padding: 0 40px;
}

/* Extra wide screens - more space for hover effects */
@media (min-width: 1200px) {
  .location-section {
    padding: 0 60px;
  }
}

@media (min-width: 1400px) {
  .location-section {
    padding: 0 80px;
  }
}

.location-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #35424a;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.location-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #e8491d, #ff9c1b);
  border-radius: 2px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  align-items: start;
}

.room-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(53, 66, 74, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(53, 66, 74, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.room-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.room-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(53, 66, 74, 0.2);
  border-color: rgba(232, 73, 29, 0.4);
}

.room-card:hover::before {
  opacity: 1;
}

.room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-card-content {
  padding: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.room-card:hover .room-card-content {
  transform: translateY(-5px);
}

.room-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.room-card p {
  margin-bottom: 20px;
  color: #666;
}

.room-details {
  padding: 20px 0;
}

.room-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
  align-items: start;
}

.room-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 5px;
}

.room-description h2 {
  margin-bottom: 20px;
}

.room-description h2:not(:first-child) {
  margin-top: 30px;
}

/* Adjust room description positioning for desktop */
.room-right .container {
  margin: 20px auto !important;
}

@media (min-width: 769px) {
  .room-right .container {
    margin: 10px auto !important;
  }
}

.room-description p {
  margin-bottom: 15px;
}

.audio-player {
  margin: 30px 0;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
}

.audio-player h3 {
  margin-bottom: 15px;
}

footer {
  background-color: #35424a;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .room-content {
    grid-template-columns: 1fr;
  }
  
  .room-card {
    height: auto;
    margin-bottom: 15px;
  }
  
  .rooms-grid {
    gap: 20px;
  }
  
  .room-card img {
    height: 180px;
  }
  
  .room-card-content {
    padding: 15px;
  }
  
  .room-card-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .room-card-content p {
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .room-card::after {
    content: '';
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23e8491d" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 18l6-6-6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
  }
  
  .room-card:hover::after {
    opacity: 1;
  }
}

.room-card::after {
  content: '';
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23e8491d" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 18l6-6-6-6"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
}

.room-card:hover::after {
  opacity: 1;
} 

@media only screen and (max-width: 1000px) {
    div.hide {
      display: none;
    }
  }

/* Back button styles */
.back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.back-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #e8491d;
}

/* Adjust header container for back button */
header .container > div {
  display: flex;
  align-items: center;
  width: 100%;
}

/* Ensure nav stays on the right */
header nav {
  margin-left: auto;
}

/* FAQ Page Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-section {
  margin-bottom: 40px;
}

.faq-section-title {
  color: #35424a;
  border-bottom: 2px solid #e8491d;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 24px;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #f8f9fa;
  border: none;
  width: 100%;
  text-align: left;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e9ecef;
}

.faq-question h3 {
  margin: 0;
  color: #35424a;
  font-size: 18px;
  font-weight: 600;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #e8491d;
  transition: transform 0.3s ease;
  user-select: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: white;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
}

.faq-answer p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.faq-answer a {
  color: #2a7ae2;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-contact {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  margin: 50px 0;
  text-align: center;
}

/* Mobile Responsive FAQ Styles */
@media (max-width: 768px) {
  .faq-container {
    padding: 0 15px;
  }
  
  .faq-question {
    padding: 15px;
  }
  
  .faq-question h3 {
    font-size: 16px;
  }
  
  .faq-toggle {
    font-size: 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 15px;
  }
  
  .faq-contact {
    padding: 30px 20px;
  }
  
  .faq-contact .btn {
    display: block;
    margin: 10px auto;
    width: 100%;
    max-width: 300px;
  }
}

/* ===========================================
   CSS ANIMATIONS & ENHANCED INTERACTIONS
   =========================================== */

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Page Load Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section Animations */
.hero h1 {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero p {
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero .btn {
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Header Animations */
header {
  animation: slideInDown 0.8s ease-out;
}

.logo {
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

nav ul li {
  animation: fadeInRight 0.8s ease-out both;
}

nav ul li:nth-child(1) { animation-delay: 0.1s; }
nav ul li:nth-child(2) { animation-delay: 0.2s; }
nav ul li:nth-child(3) { animation-delay: 0.3s; }
nav ul li:nth-child(4) { animation-delay: 0.4s; }
nav ul li:nth-child(5) { animation-delay: 0.5s; }

/* Enhanced Room Card Animations */
.room-card {
  animation: scaleIn 0.6s ease-out both;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.room-card:nth-child(1) { animation-delay: 0.1s; }
.room-card:nth-child(2) { animation-delay: 0.2s; }
.room-card:nth-child(3) { animation-delay: 0.3s; }
.room-card:nth-child(4) { animation-delay: 0.4s; }
.room-card:nth-child(5) { animation-delay: 0.5s; }
.room-card:nth-child(6) { animation-delay: 0.6s; }
.room-card:nth-child(7) { animation-delay: 0.7s; }
.room-card:nth-child(8) { animation-delay: 0.8s; }

.room-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
  z-index: 1;
}

.room-card:hover::before {
  left: 100%;
}

.room-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.room-card img {
  transition: transform 0.4s ease;
}

.room-card:hover img {
  transform: scale(1.1);
}

.room-card-content {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.room-card:hover .room-card-content {
  transform: translateY(-5px);
}

/* Enhanced Button Animations */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 73, 29, 0.3);
}

.btn:active {
  transform: translateY(0);
}

/* FAQ Animations */
.faq-item {
  animation: fadeInUp 0.6s ease-out both;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

.faq-question {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
  transform: translateX(5px);
}

.faq-answer {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Audio Player Animations */
.audio-player {
  animation: fadeInUp 0.8s ease-out;
  transition: all 0.3s ease;
}

.audio-player:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Gallery Thumbnail Animations */
.gallery-thumb {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-thumb:hover {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Section Title Animations */
h2 {
  animation: fadeInUp 0.8s ease-out;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #e8491d, #ff9c1b);
  border-radius: 2px;
  animation: scaleIn 0.6s ease-out 0.5s both;
}

/* Loading Animation for Images */
.room-image, .gallery-thumb {
  transition: opacity 0.3s ease;
}

.room-image.loading, .gallery-thumb.loading {
  opacity: 0.7;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Footer Animation */
footer {
  animation: fadeInUp 0.8s ease-out;
}

/* Scroll-triggered Animations */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .room-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
  
  .btn:hover {
    transform: translateY(-1px);
  }
  
  .gallery-thumb:hover {
    transform: scale(1.05);
  }
}

/* Beautiful Typography Styles */
.room-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #35424a;
  margin-bottom: 30px;
  padding-left: 10px;
  text-align: center;
  position: relative;
}

.room-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #e8491d;
  border-radius: 2px;
}


/* Page title styling */
title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

/* Enhanced logo styling */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  color: #e8491d;
}

/* Responsive typography */
@media (max-width: 768px) {
  .room-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .logo {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .room-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .logo {
    font-size: 20px;
  }
}

/* ROOM CARD WRAPPER STYLES */
.room-card-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  height: 100%;
}

/* SECRET TOGGLE AREA STYLES */
.secret-toggle-area {
  position: absolute;
  left: -20px;
  top: 0;
  width: 20px;
  height: 100%;
  background: transparent;
  cursor: pointer;
  z-index: 100;
  border-radius: 4px 0 0 4px;
  transition: background-color 0.2s ease;
}

.secret-toggle-area:hover {
  background: rgba(255, 107, 53, 0.1);
}

.secret-toggle-area:active {
  background: rgba(255, 107, 53, 0.2);
}

/* UNAVAILABLE ROOM OVERLAY STYLES */
.unavailable-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.unavailable-text {
  color: #ff6b35;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  transform: rotate(-15deg);
  letter-spacing: 2px;
  opacity: 0.9;
}

/* Make room cards with unavailable overlay non-clickable */
.room-card:has(.unavailable-overlay) {
  pointer-events: none;
  opacity: 0.7;
}

.room-card:has(.unavailable-overlay) a {
  pointer-events: none;
}

/* Mobile responsive adjustments for unavailable text */
@media (max-width: 768px) {
  .unavailable-text {
    font-size: 18px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .unavailable-text {
    font-size: 16px;
    letter-spacing: 0.5px;
  }
}

/* Accessibility - Respect user preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .room-title {
    animation: none;
  }
  
  .room-title::after {
    animation: none;
  }
}