/* ===================================
   TURUNCU-SİYAH TEMA - GLOBAL OVERRIDES
   =================================== */

/* Force Orange-Black Theme Globally */

/* All headings with orange accent option */
h1, h2, h3 {
    position: relative;
}

h1::after, h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, transparent);
}

/* Links always orange on hover */
a:not(.btn-primary):not(.btn-secondary):not(.nav-link):hover {
    color: #ff6b35 !important;
}

/* All borders with orange tint */
.border, [class*="border"] {
    border-color: rgba(255, 107, 53, 0.2) !important;
}

/* Section alternating backgrounds */
section:nth-child(odd) {
    background: #ffffff;
}

section:nth-child(even) {
    background: linear-gradient(to bottom, #fafafa, #ffffff);
    position: relative;
}

section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.03), transparent);
    pointer-events: none;
}

/* Black sections with orange glow */
.section-dark, 
section[class*="dark"],
.bg-dark {
    background: linear-gradient(135deg, #000000, #1a1a1a) !important;
    color: #ffffff;
    position: relative;
}

.section-dark::before,
section[class*="dark"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1), transparent);
    pointer-events: none;
}

/* Orange accent lines for sections */
section {
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    opacity: 0.5;
}

/* Cards with orange shadow */
[class*="card"],
[class*="box"] {
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.15);
    transition: all 0.3s ease;
}

[class*="card"]:hover,
[class*="box"]:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.25);
    border-color: #ff6b35;
}

/* All icons with orange tint */
i, .icon, [class*="fa-"] {
    color: inherit;
    transition: color 0.3s ease;
}

*:hover > i,
*:hover > .icon {
    color: #ff6b35;
}

/* Meta information in orange */
.meta, .date, .time, [class*="meta"] {
    color: #ff6b35;
    font-weight: 600;
}

/* Dividers with orange gradient */
hr, .divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    margin: 40px 0;
}

/* Lists with orange bullets */
ul li::marker {
    color: #ff6b35;
}

/* Blockquotes with orange accent */
blockquote {
    border-left: 4px solid #ff6b35;
    padding-left: 20px;
    margin-left: 0;
    color: #4a4a4a;
    font-style: italic;
    background: rgba(255, 107, 53, 0.05);
    padding: 20px;
    border-radius: 8px;
}

/* Code blocks with dark theme */
pre, code {
    background: #1a1a1a;
    color: #ff8c61;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Tables with orange headers */
table thead {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #ff6b35;
}

table tbody tr:hover {
    background: rgba(255, 107, 53, 0.05);
}

/* Badges always orange */
.badge, [class*="badge"] {
    background: linear-gradient(135deg, #ff6b35, #e85a2a);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Alerts with orange accent */
.alert, [class*="alert"] {
    border-left: 4px solid #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

/* Form elements with orange focus */
input, textarea, select {
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
    outline: none;
}

/* Checkboxes and radios */
input[type="checkbox"]:checked,
input[type="radio"]:checked {
    accent-color: #ff6b35;
}

/* Progress bars */
progress {
    accent-color: #ff6b35;
}

progress::-webkit-progress-value {
    background: linear-gradient(90deg, #ff6b35, #ff9066);
}

progress::-moz-progress-bar {
    background: linear-gradient(90deg, #ff6b35, #ff9066);
}

/* Pagination with orange active */
.pagination .active,
[class*="page-"] .active {
    background: linear-gradient(135deg, #ff6b35, #e85a2a);
    color: white;
    border-color: #ff6b35;
}

/* Breadcrumbs with orange separator */
.breadcrumb li::after {
    content: '›';
    color: #ff6b35;
    margin: 0 10px;
}

/* Tabs with orange active */
.tabs .active,
[class*="tab-"].active {
    border-bottom: 3px solid #ff6b35;
    color: #ff6b35;
}

/* Accordions with orange header */
.accordion-header,
[class*="accordion"] > * {
    border-left: 3px solid transparent;
    transition: border-color 0.3s;
}

.accordion-header:hover,
.accordion-header.active {
    border-left-color: #ff6b35;
}

/* Tooltips dark with orange border */
[data-tooltip]::after,
.tooltip {
    background: #000000;
    color: #ff6b35;
    border: 1px solid #ff6b35;
}

/* Modals with orange header */
.modal-header,
[class*="modal"] header {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #ff6b35;
    border-bottom: 2px solid #ff6b35;
}

/* Dropdowns with orange hover */
.dropdown-item:hover,
[class*="dropdown"] > *:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

/* Sliders with orange thumb */
input[type="range"] {
    accent-color: #ff6b35;
}

input[type="range"]::-webkit-slider-thumb {
    background: #ff6b35;
}

input[type="range"]::-moz-range-thumb {
    background: #ff6b35;
}

/* Skeleton loading with orange shimmer */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.skeleton, [class*="loading"] {
    background: linear-gradient(90deg, #f0f0f0 25%, rgba(255, 107, 53, 0.1) 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Emphasis and strong tags in orange */
em, strong, b {
    color: #ff6b35;
    font-weight: 700;
}

/* Mark/highlight in orange */
mark, ::selection {
    background: rgba(255, 107, 53, 0.3);
    color: #000000;
}

