
.content-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
} 
/* ========================================= 
Package Container 
========================================= */ 
.package-container { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 20px 40px 0px 40px;
} 

/* ========================================= 
Breadcrumbs 
========================================= */ 

.breadcrumbs { 
    display: flex; 
    align-items: center; 
    flex-wrap: wrap; 
    margin: 55px 0 40px 0; 
    gap: 5px; 
}
 .crumb {
    position: relative; 
    background: #4dd0e1; 
    color: #000000;
    padding: 8px 25px 8px 30px; 
    font-size: 0.9rem; 
    text-decoration: none; 
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 10% 50%); 
    transition: all 0.3s ease; white-space: nowrap; 
} 

.crumb:hover {
    opacity: 0.85; 
    transform: translateY(-2px);
 } 
 .crumb.home { 
    padding-left: 20px; 
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%); 
} 
.crumb.current { 
    background: #4dd0e1; 
    opacity: 0.75; 
    cursor: default;
 } 
 /* ========================================= 
 Page Title
  ========================================= */ 
 .page-title { 
    text-align: center; 
    font-size: 2.5rem; 
    color: #7ac142; 
    font-weight: 800; 
    letter-spacing: 1px; 
    margin: 0 0 50px 0; 
    line-height: 1.3; 
} 

/* ========================================= 
Introduction Section
 ========================================= */ 

 /* Headings left-aligned */ 
 .intro-section h2, 
 .location-section h2,
  .accommodation-section h2 {
     text-align: left; 
     font-size: 28px; 
     color: #4dd0e1; 
     font-weight: 700; 
     margin-bottom: 15px; 
    } 
    
.intro-section p, 
.location-section p, 
.accommodation-section p { 
    text-align: justify; 
    font-size: 16px; 
    line-height: 1.8; 
    color: #555; 
    margin-bottom: 30px; 
}
.room-amenities-section {
    margin: 0 auto 30px auto; 
    padding: 0 20px;       
    text-align: left;  
}

.room-amenities-section h2 {
    font-size: 28px;
    color: #4dd0e1;    
    font-weight: 700;
    margin-bottom: 15px;   
    text-align: left;      
}

.room-amenities-list {
    list-style-type: disc; 
    padding-left:0px;  
    margin: 0 0 30px 0;    
}

.room-amenities-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
    text-align: left;      
}

p strong {
    font-weight: 900;    
    color: #2f3131;      
    font-size: 1.03em;   
}


/* =========================================
   Gallery Section
   ========================================= */
.gallery-section {
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}



/* =========================================
   Lightbox Modal
   ========================================= */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.modal-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 5px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: #4dd0e1;
    transform: rotate(90deg);
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

.image-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 20px;
}

/* Tablet view */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Mobile view */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}