:root {
    --color-secondary: #F4953F;
    --color-primary: #BD1007;
}

#main {
    margin: 100px 0px;
}

/* Header Styles */
#header.header-transparent {
    background: #BD1007;
    transition: all ease-in-out 0.4s;
    padding: 15px 0;
}

/* Search Section Styles */
.search-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.search-container .input-group {
    max-width: 800px;
    margin: 0 auto;
}

.search-container .form-control {
    border-radius: 50px 0 0 50px;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e9ecef;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-container .form-control:focus {
    border-color: #6c757d;
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
}

.search-container .btn-secondary {
    border-radius: 0 50px 50px 0;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border: none;
    background-color: #F4953F;
    transition: all 0.3s ease;
}

.search-container .btn-secondary:hover {
    background-color: #F4953F;
    transform: translateY(-1px);
}

.search-container .btn-secondary i {
    margin-right: 8px;
}

.search-container .btn-outline-secondary {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border: 2px solid #e9ecef;
    background-color: white;
    color: #6c757d;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.search-container .btn-outline-secondary:hover {
    background-color: #e9ecef;
    color: #495057;
    transform: translateY(-1px);
}

.search-container .btn-outline-secondary i {
    margin-right: 5px;
}

/* Heritage Card Styles */
.heritage-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.see-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #F4953F;
    border-color: #F4953F;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background-color: #F4953F;
    color: white;
    transform: translateY(-2px);
}

.see-more-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.see-more-btn:hover i {
    transform: translateX(3px);
}

/* Pagination Styles */
.pagination {
    margin-top: 2rem;
}

.pagination .page-link {
    border-radius: 5px;
    margin: 0 3px;
    color: #333;
    border: 1px solid #dee2e6;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background-color: #F4953F;
    border-color: #F4953F;
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

.pagination .page-link:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
    color: #333;
}

.pagination .page-item.active .page-link:hover {
    background-color: #F4953F;
    border-color: #F4953F;
    color: white;
}

/* No Results Styles */
.no-results {
    text-align: center;
    padding: 3rem 0;
}

.no-results i {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.no-results p {
    color: #6c757d;
}

/* Alert Styles */
.alert {
    margin-bottom: 1rem;
    border-radius: 5px;
    padding: 1rem;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
}

/* Detail Page Styles */
.heritage-detail-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    margin-top: 2rem;
}

.heritage-title {
    color: #333;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.heritage-gallery {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
}

.no-image-placeholder {
    height: 300px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.no-image-placeholder p {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.section-title {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #F4953F;
}

.heritage-description {
    margin-bottom: 2rem;
}

.heritage-description p {
    color: #555;
    line-height: 1.7;
}

.heritage-sidebar {
    position: sticky;
    top: 100px;
}

.heritage-status-card,
.heritage-info-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-title {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.active {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-badge.inactive {
    background: #ffebee;
    color: #c62828;
}

.status-badge i {
    font-size: 0.6rem;
    margin-right: 5px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #555;
}

.info-list li i {
    color: #F4953F;
    margin-right: 10px;
    font-size: 1.1rem;
}

.heritage-actions {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .search-container {
        padding: 1.5rem;
    }
    
    .card-img-top {
        height: 180px;
    }
    
    .pagination .page-link {
        padding: 0.4rem 0.8rem;
    }
    
    .heritage-detail-container {
        padding: 1.5rem;
    }
    
    .heritage-title {
        font-size: 1.5rem;
    }
    
    .carousel-item img {
        height: 300px;
    }
    
    .heritage-sidebar {
        margin-top: 2rem;
    }
} 