/* Kheoni Rooms Page - Styled to match wildlife-page.css aesthetic */

/* Base Layout */
body {
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
  font-family: 'Work Sans', sans-serif;
}
/* Navbar visibility fix */
.navbar {
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
    opacity: 1 !important;
  transition: background-color 0.3s ease;
}

.navbar-logo {
  color: white !important;
  opacity: 1;
}




/* Add to both room-page.css and wildlife-page.css */
.home-icon {
  font-size: 2rem;
  color: white;
  text-decoration: none;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease, color 0.3s ease;
}

.home-icon:hover {
  transform: translateY(-50%) scale(1.1);
  color: #c8a97e;
}

/* Make logo link back to home too */
.navbar-logo {
  cursor: pointer;
}

/* Remove existing menu-toggle button and navbar-links completely */
.menu-toggle, .navbar-links {
  display: none !important;
}
/* Hero Section */
.room-hero {
  height: 80vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.room-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.room-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 2rem;
}

.room-type {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1.5rem;
  display: inline-block;
  backdrop-filter: blur(5px);
  border-radius: 50px;
}

.room-title {
  font-family: 'Oswald', sans-serif;
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.room-price {
  display: inline-block;
  padding: 12px 25px;
  background-color: rgba(200, 169, 126, 0.2);
  border: 2px solid #c8a97e;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  backdrop-filter: blur(5px);
  border-radius: 5px;
}

/* Room Content Container */
.room-content-container {
  display: flex;
  gap: 4rem;
  padding: 0 3rem 3rem;
  background-color: #000;
  position: relative;
  margin-top: 2rem;
}

.room-content-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/images/Tiger\ black\ and\ white/texture-bg.jpg');
  background-size: cover;
  opacity: 0.05;
  pointer-events: none;
}

/* Room Details (Left Column) */
.room-details {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 100%;
  position: relative;
}

/* Section Headings */
.room-details h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.room-details h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #c8a97e;
}

/* Room Description */
.room-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

/* Room Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  height: 400px;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: white;
  font-size: 0.9rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Amenities Section */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.amenity-category h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #c8a97e;
  position: relative;
  display: inline-block;
}

.amenity-category h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: rgba(200, 169, 126, 0.5);
}

.amenity-category ul {
  list-style: none;
  padding: 0;
}

.amenity-category li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
}

.amenity-icon {
  margin-right: 1rem;
  font-size: 1.2rem;
}

/* Sustainability Features */
.sustainability-features {
  background-color: rgba(15, 15, 15, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.sustainability-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/images/leaf-texture.jpg');
  background-size: cover;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.sustainability-features p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.eco-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  position: relative;
  z-index: 1;
}

.eco-features li {
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.eco-icon {
  margin-right: 1rem;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Room Experiences */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.experience-item {
  background-color: rgba(15, 15, 15, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.experience-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.experience-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: inline-block;
  background-color: rgba(200, 169, 126, 0.1);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
}

.experience-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #fff;
}

.experience-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Bottom CTA */
.bottom-cta {
  margin: 3rem 0;
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: transparent;
  border: 2px solid #c8a97e;
  color: #c8a97e !important;
  border-radius: 5px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.cta-button:hover {
  background-color: #c8a97e;
  color: #000 !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Booking Panel (Right Column) */
.booking-panel {
  flex: 1;
  position: sticky;
  top: 100px;
  height: fit-content;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  background-color: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  max-width: 360px;
  margin-left: auto;
}

.price-details {
  text-align: center;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
}

.price-details h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.price {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  color: #c8a97e;
  margin-bottom: 0.5rem;
}

.price-info {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Room Stats */
.room-stats {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 1.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stat-icon {
  font-size: 1.4rem;
}

/* Booking Form */
.booking-form h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  margin: 0 0 1.5rem;
  text-align: center;
  color: #fff;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: #fff;
  font-size: 0.95rem;
  font-family: 'Work Sans', sans-serif;
  transition: border-color 0.3s ease;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c8a97e;
  outline: none;
}

.submit-button {
  width: 100%;
  padding: 15px;
  background-color: #c8a97e;
  color: #000;
  border: none;
  border-radius: 5px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-button:hover {
  background-color: #d9ba8c;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.booking-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: 10px;
}

/* Additional Info */
.additional-info {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.info-item {
  margin-bottom: 1.2rem;
}

.info-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
}

.info-icon {
  color: #c8a97e;
  margin-right: 0.5rem;
}

.info-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 1.5rem;
}

/* Similar Rooms Section */
.similar-rooms-section {
  padding: 5rem 3rem;
  background-color: rgba(0, 0, 0, 0.3);
  position: relative;
}

.similar-rooms-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/images/Tiger\ black\ and\ white/texture-bg.jpg');
  background-size: cover;
  opacity: 0.05;
  pointer-events: none;
}

.similar-container {
  position: relative;
  z-index: 1;
}

.similar-container h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.similar-container h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #c8a97e;
}

.similar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.similar-card {
  background-color: rgba(15, 15, 15, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.similar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.similar-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.similar-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}

.similar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.similar-card:hover .similar-image img {
  transform: scale(1.05);
}

.similar-details {
  padding: 1.5rem;
}

.similar-location {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.similar-details h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.similar-price {
  font-size: 1.1rem;
  color: #c8a97e;
  margin-bottom: 1.2rem;
}

.similar-button {
  display: inline-block;
  padding: 8px 20px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 5px;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.similar-button:hover {
  background-color: #fff;
  color: #000;
}

/* Modal Styling */
.booking-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  overflow: auto;
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  margin: 7% auto;
  max-width: 500px;
  animation: modalFade 0.4s ease-out;
}

@keyframes modalFade {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #c8a97e;
}

.booking-panel-modal {
  background-color: rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Custom Scrollbar */
.booking-panel::-webkit-scrollbar {
  width: 5px;
}

.booking-panel::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

.booking-panel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.booking-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Media Queries */
@media (max-width: 1200px) {
  .room-title {
    font-size: 4rem;
  }
  
  .amenities-grid,
  .experiences-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .room-content-container {
    gap: 2.5rem;
  }
  
  .booking-panel {
    max-width: 320px;
  }
}

@media (max-width: 992px) {
  .similar-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  
  .eco-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .room-hero {
    height: 60vh;
    margin-top: 60px;
  }
  
  .room-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
  
  .room-type {
    font-size: 1rem;
  }
  
  .room-content-container {
    flex-direction: column;
    padding: 0 1.5rem 2rem;
  }
  
  .room-details {
    gap: 3rem;
    max-width: 100%;
  }
  
  .booking-panel {
    position: relative;
    top: 0;
    width: 100%;
    max-width: 100%;
    margin-top: 3rem;
    max-height: none;
    overflow: visible;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .amenities-grid,
  .experiences-grid {
    grid-template-columns: 1fr;
  }
  
  .sustainability-features {
    padding: 2rem;
  }
  
  .modal-content {
    margin: 15% auto;
    width: 90%;
  }
}

@media (max-width: 480px) {
  .room-hero {
    height: 50vh;
  }
  
  .room-title {
    font-size: 2.5rem;
  }
  
  .room-price {
    font-size: 1rem;
    padding: 10px 20px;
  }
  
  .room-details h2 {
    font-size: 2rem;
  }
  
  .experience-item {
    padding: 1.5rem;
  }
  
  .experience-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 2rem;
  }
  
  .similar-rooms-section {
    padding: 3rem 1.5rem;
  }
  
  .similar-container h2 {
    font-size: 2rem;
  }
  
  .booking-panel,
  .booking-panel-modal {
    padding: 1.5rem;
  }
  
  .price {
    font-size: 3rem;
  }
}

/* Touch Device Optimizations */
@media (hover: none) {
  .gallery-caption {
    transform: translateY(0);
  }
  
  .experience-item:hover,
  .similar-card:hover,
  .gallery-item:hover {
    transform: none;
  }
}