/* Portfolio Detail Page - Dark Theme */

/* Body Background - Dark Theme */
body {
    background: #0a0a0a !important;
    color: #ffffff;
}

/* Hero Section - Dark Theme */
.portfolio-detail-hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
}

.portfolio-detail-hero-section .section-title-body h1.head-title {
    color: #ffffff !important;
    text-shadow: 0 2px 20px rgba(1, 192, 87, 0.3);
}

.portfolio-detail-hero-section .section-title-body p.head-text {
    color: #cccccc !important;
}

.portfolio-detail-hero-section .breadcrumb a {
    color: #01c057 !important;
}

.portfolio-detail-hero-section .breadcrumb li.active {
    color: #ffffff !important;
}

/* Portfolio Detail Section - Dark Theme */
.portfolio-detail-section {
    background: #0a0a0a !important;
    color: #ffffff;
    padding: 60px 0;
}

.portfolio-detail-section .block {
    background: transparent !important;
}

/* Portfolio Content - Dark Theme */
.portfolio-detail-content {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Featured Image - Dark Theme */
.portfolio-featured-image {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.portfolio-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.95) contrast(1.05);
}

/* Portfolio Meta Info - Dark Theme */
.portfolio-meta-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.meta-item i {
    color: #01c057;
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.meta-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meta-label {
    color: #888888;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.meta-value a {
    color: #01c057;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.meta-value a:hover {
    color: #00d4aa;
    gap: 10px;
}

/* Portfolio Content Body - Dark Theme */
.portfolio-content-body {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 30px;
}

.portfolio-content-body h1,
.portfolio-content-body h2,
.portfolio-content-body h3,
.portfolio-content-body h4,
.portfolio-content-body h5,
.portfolio-content-body h6 {
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(1, 192, 87, 0.2);
}

.portfolio-content-body h2 {
    border-bottom: 2px solid rgba(1, 192, 87, 0.3);
    padding-bottom: 10px;
}

.portfolio-content-body p {
    margin-bottom: 20px;
    color: #cccccc;
}

.portfolio-content-body a {
    color: #01c057;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(1, 192, 87, 0.3);
}

.portfolio-content-body a:hover {
    color: #00d4aa;
    border-bottom-color: #00d4aa;
}

.portfolio-content-body ul,
.portfolio-content-body ol {
    color: #cccccc;
    margin-bottom: 20px;
    padding-left: 25px;
}

.portfolio-content-body li {
    margin-bottom: 10px;
}

.portfolio-content-body strong {
    color: #ffffff;
    font-weight: 700;
}

.portfolio-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Portfolio Actions - Dark Theme */
.portfolio-actions {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.portfolio-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.portfolio-action-primary {
    background: linear-gradient(135deg, #01c057 0%, #00d4aa 100%);
    color: #ffffff !important;
}

.portfolio-action-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 192, 87, 0.4);
    color: #ffffff !important;
}

.portfolio-action-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3);
}

.portfolio-action-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.portfolio-action-btn i {
    font-size: 18px;
}

/* Sidebar - Dark Theme */
.portfolio-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-widget h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(1, 192, 87, 0.2);
}

.sidebar-widget p {
    color: #b0b0b0;
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #01c057;
    font-size: 18px;
}

.contact-info a {
    color: #01c057;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #00d4aa;
}

.btn-default.blue {
    background: linear-gradient(135deg, #01c057 0%, #00d4aa 100%);
    color: #ffffff !important;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-default.blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 192, 87, 0.4);
}

/* Related Portfolio - Dark Theme */
.related-portfolio-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-portfolio-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.related-portfolio-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-portfolio-image {
    flex-shrink: 0;
    width: 100px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
}

.related-portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-portfolio-item:hover .related-portfolio-image img {
    transform: scale(1.1);
}

.related-portfolio-content h5 {
    margin: 0 0 8px 0;
}

.related-portfolio-content h5 a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.related-portfolio-content h5 a:hover {
    color: #01c057;
}

.related-portfolio-type {
    color: #888888;
    font-size: 13px;
    margin: 0;
}

/* CTA Widget - Dark Theme */
.cta-widget {
    background: linear-gradient(135deg, rgba(1, 192, 87, 0.1) 0%, rgba(0, 212, 170, 0.1) 100%);
    border: 2px solid rgba(1, 192, 87, 0.3);
}

.cta-widget h4 {
    color: #01c057;
}

/* Responsive */
@media (max-width: 767px) {
    .portfolio-detail-content {
        padding: 25px 20px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .portfolio-meta-info {
        padding: 20px;
    }
    
    .portfolio-actions {
        flex-direction: column;
    }
    
    .portfolio-action-btn {
        width: 100%;
        justify-content: center;
    }
}
