/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #FAF4EF;
  color: #2E2E2E;
  line-height: 1.6;
  min-height: 100vh;
}
 
/* Container */
.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Page Title */
.page-title {
  font-size: 2rem;
  color: #D87D4A;
  text-align: center;
  margin-bottom: 40px;
}

.page-title span {
  font-size: 1rem;
  color: #7a4c28;
  display: block;
  margin-top: 8px;
}
@media (max-width: 600px) {
    .page-title {
        font-size: 1.6rem;
        margin-bottom: 28px;
    }
    .page-title span{
      font-size: 0.85rem;
      margin-top: 6px;
    }
}
/* Rooms Section */
.rooms-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.room-card {
  background-color: white;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 8px 18px rgb(216 125 74 / 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 24px rgb(216 125 74 / 0.4);
}

.room-card h2 {
  color: #D87D4A;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.room-card p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #5a3e1b;
}

.book-btn {
  background-color: #D87D4A;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  display: block;
  width: fit-content;
  margin: 12px auto 0 auto;
}

.book-btn:hover {
  background-color: #e89d72;
  transform: scale(1.05);
}

.book-btn:active {
  transform: scale(0.97);
}


@media (max-width: 600px) {
  .rooms-section {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .room-card {
    padding: 18px 16px;
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(216, 125, 74, 0.12);
  }

  .room-card h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    text-align: center;
  }

  .room-card p {
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: center;
  }

  .book-btn {
    font-size: 0.95rem;
    padding: 9px 16px;
    border-radius: 6px;
  }
}

/* Info Section */
.info-section {
  background-color: white;
  padding: 40px 25px 50px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgb(216 125 74 / 0.1);
  color: #5a3e1b;
  margin-bottom: 60px;
}

.info-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  color: #D87D4A;
  font-size: 1.6rem;
}

/* Cards container for info */
.info-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 750px;
  margin: 0 auto 40px auto;
}

/* Single info card */
.info-card {
  background-color: #F9ECE4;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgb(216 125 74 / 0.12);
  max-width: 320px;
  flex: 1 1 280px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  color: #5a3e1b;
  font-weight: 600;
  transition: box-shadow 0.3s ease;
}

.info-card i {
  font-size: 2rem;
  color: #D87D4A;
  min-width: 36px;
  text-align: center;
}

.info-card:hover {
  box-shadow: 0 12px 25px rgb(216 125 74 / 0.4);
  background-color: #fde9d6;
}

/* Occupancy cards */
.occupancy .info-card {
  max-width: 320px;
  font-weight: 700;
}


@media (max-width: 600px) {

  .info-cards {
    flex-direction: column;      
    gap: 16px;                   
    max-width: 320px;            
    margin: 0 auto;
  }
 
  .info-card {
    flex: 1 1 auto;              
    width: 100%;            
    padding: 14px 20px;     
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap:14px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(216,125,74,0.14);
  }

  .info-card i {
    font-size: 1.6rem;        
    min-width: 32px;
    flex-shrink: 0;
  }
  
  .info-section h2 {
    font-size: 1.3rem;
    margin-bottom: 22px;
    margin-top: 22px;
  }

}

/* Room Images Section */
.gallery-section {
  padding: 40px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.gallery-title {
  font-size: 34px;
  margin-bottom: 20px;
  color:#e67e00;;
}
@media (max-width: 600px) {
.gallery-section h2{
  font-size: 24px;
}
}

.carousel-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin: auto;
}

.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.carousel::-webkit-scrollbar {
  display: none;
}


.carousel-img {
  width: 100%;          
  max-width: 350px;     
  height: 350px;        
  object-fit: cover;    
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  image-rendering: crisp-edges;
  backface-visibility: hidden;
}

.carousel-img:hover {
  transform: scale(1.05);
}


.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 30px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 1000;
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

/* Modal Styles */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85); 
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal large image */
.modal-content {
  width: 90vw;
  max-width: 900px;
  height: 65vh;
  max-height: 580px;
  object-fit: cover; 
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  background-color: white; 
  display: block;
  margin: 0 auto;
  filter: none;
}


.modal-overlay {
  background: none !important;
  filter: none !important;
}

.modal.open {
  display: flex;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 40px;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10001;
}

.modal-nav.prev {
  left: 20px;
}

.modal-nav.next {
  right: 20px;
}

@media (max-width: 600px) {
  .modal-content {
    width: 95vw;
    height: 55vh;
  }
}

@media (min-resolution: 2dppx) {
  .carousel-img,
  .modal-content {
    background-size: contain;
  }
}
/* Navigation buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(216, 125, 74, 0.8);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: #b35e2b;
}

.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

/* Responsive */
@media (max-width: 600px) {
.rooms-section {
grid-template-columns: 1fr;
}

.info-cards {
flex-direction: column;
align-items: center;
}
}


/* Footer */
footer {
  background-color: #040505;
  color: white;
  padding: 20px;
  margin-top: 30px;
  border-top: 2px solid #00796b;
  text-align: center
}

footer .footer-copyright {
  margin-top: 30px;
  font-size: 14px;
  text-align: center;
  color: white;
}



 
