/* Culture Hero */
.culture-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 100px;
    margin-top: 76px;
    text-align: center;
}

.festivals-hero {
    background-image: url('https://www.headout.com/blog/wp-content/uploads/2021/03/nandu-menon-hGHldbCgYDA-unsplash-scaled-e1615357447975.jpg');
}

.cuisine-hero {
    background-image: url('https://api.luxuryholidaynepal.com/media/blog/banner/nepalese-cuisine.jpg');
}

.architecture-hero {
    background-image: url('https://images.theconversation.com/files/80059/original/image-20150501-12614-wyxe7r.jpg?ixlib=rb-1.1.0&q=45&auto=format&w=1356&h=668&fit=crop');
}

.handicrafts-hero {
    background-image: url('https://images.unsplash.com/photo-1608793733118-ee3f16002251?q=80&w=793&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.culture-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);
}

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

/* Culture Content */
.culture-content h2 {
    color: #003893;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    border-bottom: 3px solid #DC143C;
    padding-bottom: 10px;
}

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

/* Festival Cards */
.festival-card {
    background-color: #edeff0;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #DC143C;
    transition: all 0.3s ease;
}

.festival-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.festival-card h3 {
    color: #003893;
    margin-bottom: 0.5rem;
}

.festival-date {
    color: #DC143C;
    font-weight: 500;
    margin-bottom: 1rem;
}

.festival-card ul {
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.festival-card li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

/* Calendar Events */
.calendar-events {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calendar-event {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.calendar-event:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.event-date {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.event-details h6 {
    margin-bottom: 0.25rem;
    color: #003893;
}

.event-details p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Tips List */
.tips-list {
    list-style-type: none;
    padding-left: 0;
}

.tips-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #e5e7eb;
    display: flex;
    align-items: flex-start;
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list i {
    margin-top: 3px;
}

/* Food Cards */
.food-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.food-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.food-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #DC143C;
}

.food-card h4 {
    color: #003893;
    margin-bottom: 0.5rem;
}

.food-card p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.food-tag {
    display: inline-block;
    background-color: #e0f2fe;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Architecture Timeline */
.architecture-timeline {
    position: relative;
    padding-left: 30px;
}

.architecture-timeline:before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #003893;
}

.timeline-era {
    position: relative;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #e5e7eb;
}

.timeline-era:last-child {
    border-bottom: none;
}

.timeline-era:before {
    content: '';
    position: absolute;
    left: -33px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #DC143C;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #DC143C;
}

.era-period {
    background-color: #003893;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

/* Handicraft Items */
.handicraft-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.handicraft-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #003893;
}

.handicraft-item h4 {
    color: #003893;
    margin-bottom: 0.5rem;
}

.handicraft-item p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.region-tag {
    display: inline-block;
    background-color: #fef3c7;
    color: #92400e;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

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

@media (max-width: 576px) {
    .culture-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .festival-card .row {
        flex-direction: column;
    }
    
    .festival-card .col-md-5 {
        margin-bottom: 1.5rem;
    }
}
h6{
    color: #003893;
}