/* Attraction Hero */
/* .attraction-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT78yPhgk4-SsflH3vovow1ZoTZcHtFTRLGGg&s');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 100px;
    margin-top: 76px;
    text-align: center;
} */
.annapurna-hero {
    background-image: url('https://pictures.altai-travel.com/1920x0/machapuchare-guarding-the-entrance-to-the-annapurna-sanctuary-adobe-stock-4033.jpg');
     background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 100px;
    margin-top: 76px;
    text-align: center;
}

.bhaktapur-hero {
    background-image: url('https://dynamic-media-cdn.tripadvisor.com/media/photo-o/0d/ef/5c/54/durbar-square-bhaktapur.jpg?w=900&h=-1&s=1');
     background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 100px;
    margin-top: 76px;
    text-align: center;
}

.boudhnath-hero {
    background-image: url('https://www.holidaynepal.com/nepal/images/boudha.jpg');
     background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 100px;
    margin-top: 76px;
    text-align: center;
}

.chitwan-hero {
    background-image: url('https://www.traveltalktours.com/wp-content/smush-webp/2021/12/vince-russell-FXVY6ZIOkhM-unsplash-1024x683.jpg.webp');
     background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 100px;
    margin-top: 76px;
    text-align: center;
}
.everest-hero {
    background-image: url('https://cdn.britannica.com/17/83817-050-67C814CD/Mount-Everest.jpg');
     background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 100px;
    margin-top: 76px;
    text-align: center;
}

.pokhara-hero {
    background-image: url('https://www.footprintadventure.com/uploads/img/1711098212-cover.jpg');
     background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 100px;
    margin-top: 76px;
    text-align: center;
}
.attraction-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.attraction-hero-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Attraction Details */
.attraction-details h2 {
    color: #003893;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.attraction-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.detail-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.detail-section:last-child {
    border-bottom: none;
}

.detail-section h3 {
    color: #003893;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.detail-section h3 i {
    color: #DC143C;
}

/* Activity Tags */
.activity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.activity-tag {
    background-color: #e0f2fe;
    color: #0369a1;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.activity-tag:hover {
    background-color: #bae6fd;
    transform: translateY(-2px);
}

/* Gallery */
.gallery-grid {
    display: grid;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 56, 147, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Modal Image */
#modalImage {
    max-height: 70vh;
    object-fit: contain;
}

#modalCaption {
    font-style: italic;
    color: #6b7280;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .attraction-hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .attraction-hero {
        padding: 150px 0 80px;
    }
    
    .attraction-hero-content h1 {
        font-size: 2.3rem;
    }
    
    .attraction-details h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .attraction-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .activity-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}