
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  background-color: black;
}



.hotel-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 50px auto;
  margin-top: 6%;
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
}

/* Left side (image slider) */
.hotel-images {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
}

.hotel-images img {
  width: 100%;
  height: 450px;
  display: none;
  object-fit: fill;
}

.hotel-images img.active {
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Right side (details) */
.hotel-details {
  flex: 1 1 50%;
  padding: 30px;
}

.hotel-details h2 {
  font-size: 28px;
  color: #f8ae00;
  margin-bottom: 15px;
}

.hotel-details p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #ddd;
}

.amenities {
  margin-bottom: 25px;
  color: white;
}

.amenities h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #f8ae00;
}

.amenities ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.amenities ul li {
  background: #222;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 14px;
}
.amenity-pill-bed {
  background: #010101;
  border: 1px solid #f8ae00;
  color: #f1f4f2;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(209, 148, 148, 0.05);
  cursor: pointer;
  animation: pulse 1s infinite;
}
.pill-span{
  color: #e09c00;
  font-weight: bold;
}
@keyframes pulse {
  0% { box-shadow: 0 0 5px #bbf7d0; transform: scale(1); }
  50% { box-shadow: 0 0 20px #bbf7d0; transform: scale(1.05); }
  100% { box-shadow: 0 0 5px #bbf7d0; transform: scale(1); }
}

/* Action Buttons */
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.btn {
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
 
}
.fa-phone{
  background-color: #6f6f6f;
}
.fa-comments{
  background: #f8ae00;

}
.fa-location-dot{
  background: rgb(249, 250, 249);

}
.book-btn {
  background: #f8ae00;
  color: #111;
  font-weight: bold;

}

.call-btn {
  background-color: #6f6f6f;

  color: #fff;
}
.location-btn{
  background: rgb(249, 250, 249);
  color: #070707;
}
.btn:hover {
  opacity: 0.9;
}

@media(max-width: 900px) {
  .hotel-wrapper {
    flex-direction: column;
    margin-top: 20%;
  }
}


.footer {
    background: #000;
    padding: 60px 20px 20px;
    color: #ccc;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Logo + Title */
  .footer-logo {
    display: flex;
    flex-direction: column;
  }
  
  .footer-logo-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .footer-logo-header img {
      width: 160px;
  
  }
  
  .footer-logo-header h2 {
    color: #f8ae00;
    font-size: 1.8rem;
    margin: 0;
  }
  
  .footer-logo p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #aaa;
  }
  
  .footer-col h3 {
    color: #f8ae00;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;

  }
  
  .footer-col ul li {
    margin-bottom: 10px;
    text-decoration: none;
    color: white;
  }
  
  .footer-col ul li a {
    text-decoration: none;
    color: #f6f3f3;
    transition: 0.3s;
  
  }
  
  .footer-col ul li a:hover {
    color: #f8ae00;
  }
  
  .footer-contact p {
    margin: 8px 0;
    font-size: 0.95rem;
  }
  
  .footer-social {
    margin-top: 15px;
  }
  
  .footer-social a {
    display: inline-block;
    margin-right: 12px;
    font-size: 1.2rem;
    color: #ccc;
    transition: 0.3s;
  }
  
  .footer-social a:hover {
    color: #f8ae00;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #222;
    padding-top: 15px;
  }
  
  .footer-bottom a{
    text-decoration: none;
    color: #888;
  }

  /* nav */


  nav {
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.6);
  }
  
  .navbar {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
  }
  
  /* Logo */
  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #f8ae00;
    font-size: 22px;
    font-weight: bold;
  }
  
  .logo img {
    width: 160px;
  }
  
  /* Menu */
  .menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 25px;
  }
  
  .menu li a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
  }
  
  .menu li a:hover {
    color: #f8ae00;
  }
  
  /* Dropdown */
  .dropdown {
    position: relative;
  }
  
  .dropdown-content {
    position: absolute;
    top: 40px;
    right: 0;
    background: black;
    border: 1px solid #333;
    min-width: 160px;
    display: none;
    flex-direction: column;
  }
  
  .dropdown-content a {
    padding: 10px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: background 0.3s;
  }
  
  .dropdown-content a:hover {
    background: #222;
  }
  
  .dropdown:hover .dropdown-content {
    display: flex;
  }
  
  /* Hamburger */
  .hamburger {
    display: none;
    font-size: 22px;
    cursor: pointer;
  }
  
  /* Mobile menu */
  @media (max-width: 768px) {
    .menu {
      position: absolute;
      top: 75px;
      left: 0;
      right: 0;
      background: #000;
      flex-direction: column;
      align-items: start;
      padding: 15px;
      display: none;
    }
  
    .menu.active {
      display: flex;
    }
  
    .hamburger {
      display: block;
      color: white;
    }
  
    .dropdown-content {
      position: static;
      border: none;
      background: none;
      display: none;
    }
  
    .dropdown.active .dropdown-content {
      display: flex;
    }
  }
  
  

  /* Popup Background */
  .popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  /* background: rgba(0,0,0,0.6); */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Popup Box */
.popup {
  background: #000000;
  padding: 20px;
  /* border-radius: 10px; */
  width: 300px;
  text-align: center;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.3); */
}

.popup h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #f8ae00;
  
}
.popup p{
color: white;
}
.popup input {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
  /* border: 1px solid #ccc; */
  border-radius: 6px;
  color: white;
}

.popup button {
  padding: 10px 16px;
  background: #f8ae00;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin: 5px;
}

.popup button:hover {
  background: #218838;
}

.close-btn {
  background: #dc3545 !important;
}
#location-show {
display: none; /* hidden until unlock */
justify-content: center;
align-items: center;
width: 100%;
margin: 0 auto;
padding: 10px;
box-sizing: border-box;
}

#hotelMap {
width: 100%;
max-width: 800px;   /* desktop max */
height: 400px;      /* default height */
border: 0;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* ✅ Mobile media query */
@media (max-width: 768px) {
#hotelMap {
width: 100%;
height: 300px;  /* smaller height for mobile */

margin-left: -45%;

}

}




.room-price {
  margin-top: 10px;
  padding: 10px 0;
 
}

.price-display {
  font-size: 1.3rem !important;
  color: #e91e63;
  font-weight: bold;
}

.price-original {
  text-decoration: line-through;
  color: #888;
  margin-left: 5px;
}

.discount {
  color: #f8ae00;
  margin-left: 5px;
  font-weight: 500;
}


/* hotel food menu */

 .menu-frame {
    display: block;
    width: 95%;          /* responsive width */
    max-width: 1200px;   /* don’t stretch too much on big screens */
    height: 90vh;        /* responsive height */
    margin: 20px auto;   /* center horizontally */
    border: none;
    border-radius: 12px;
    background: #111;    /* dark background inside frame */
    box-shadow: 0 8px 30px rgba(255,255,255,0.15);
  }

  @media (max-width: 768px) {
  
    .menu-frame {
      width: 100%;
      height: 85vh;
      margin: 10px auto;
    }
  }



/**/



  .section-two {
    padding: 30px 20px;
  }
  .section-two p {
max-width: 800px;       /* keep text in readable width */
margin: 0 auto 25px;    /* center + spacing */
font-size: 1rem;
line-height: 1.6;
text-align: center;
color: #ddd;
padding: 0 15px;        /* padding for mobile edges */
}


  .section-two h2 {
    color: #f7ae02;
    margin-bottom: 15px;
    text-align: center;
  }

  /* Slider container */
  .slider-container {
    position: relative;
    overflow: hidden;
  }

  .slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
  }

  /* Hide default scrollbar */
  .slider::-webkit-scrollbar {
    display: none;
  }

  .attraction-card {
    min-width: 280px;
    max-width: 300px;
    flex: 0 0 auto;
    background: #121212;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
  }

  .attraction-card:hover {
    transform: translateY(-6px);
    background: #262626;
  }

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

  .attraction-card-content {
    padding: 15px;
  }

  .attraction-card-content h4 {
    margin: 0 0 8px;
    color: #f7ae02;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .attraction-card-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #ddd;
  }

  /* Arrows */
  .arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #f7ae02;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    font-weight: bold;
    z-index: 10;
  }
  .arrow:hover {
    background: #ffbf33;
  }

  .left-arrow {
    left: 5px;
  }
  .right-arrow {
    right: 5px;
  }
  /* Mobile adjustment */
@media (max-width: 600px) {
.section-two p {
  font-size: 0.95rem;
  line-height: 1.5;
}
}
