/**
 * Simian International Iraq - Custom CSS v2.0
 * Additional styles for animations and effects
 *
 * @package Simian_Iraq
 */

/* Page Header for inner pages */
.page-header {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 { color: #ffffff; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }

.breadcrumb {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
    font-size: 0.9rem;
}

.breadcrumb a { color: var(--color-accent); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

.page-content { padding: 60px 0; }

.post-content {
    max-width: 800px;
    margin: 0 auto;
}

.post-content h2 { margin-top: 2rem; margin-bottom: 1rem; }
.post-content p { margin-bottom: 1.2rem; line-height: 1.8; }
.post-content ul { margin: 1rem 0 1.5rem 1.5rem; list-style: disc; }
.post-content ul li { margin-bottom: 0.5rem; }

/* Comments */
.comments-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

/* Gallery */
.gallery { margin-bottom: 1.5em; }
.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

/* Smooth transitions for all interactive elements */
a, button, input, textarea, select {
    transition: all 0.3s ease;
}

/* Focus styles for accessibility */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

/* Selection color */
::selection {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

/* Smooth image loading */
img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img[data-src] {
    opacity: 0;
}

/* Print styles */
@media print {
    .site-header,
    .scroll-progress-bar,
    .scroll-to-top,
    .hero-particles,
    .hero-orb,
    .mobile-toggle { display: none !important; }

    .hero { min-height: auto; padding: 40px 0; }

    body { color: #000; background: #fff; }
    a { color: #000; text-decoration: underline; }
}
