/* Custom Styles for Portfolio Media Site */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-icon {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Feature Cards */
.feature-icon {
    transition: transform 0.3s ease;
}

.card:hover .feature-icon {
    transform: scale(1.1);
}

/* Article Content Styling */
.article-content {
    line-height: 1.7;
}

.article-content h1, 
.article-content h2, 
.article-content h3, 
.article-content h4, 
.article-content h5, 
.article-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #343a40;
}

.article-content h1 {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.article-content h2 {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.3rem;
}

.article-content pre {
    background: #f8f9fa !important;
    border: 1px solid #e9ecef;
    border-radius: 0.375rem;
    padding: 1rem;
    overflow-x: auto;
    font-size: 0.875rem;
}

.article-content code {
    background: #f8f9fa;
    color: #e83e8c;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.article-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

.article-content blockquote {
    border-left: 4px solid #0d6efd;
    margin: 1.5rem 0;
    padding-left: 1rem;
    color: #6c757d;
    font-style: italic;
}

.article-content table {
    width: 100%;
    margin: 1rem 0;
    border-collapse: collapse;
}

.article-content table th,
.article-content table td {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    text-align: left;
}

.article-content table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin: 1rem 0;
}
