/* PULTIX DETAY SAYFALARI TEMA CSS */

/* Tema değişkenleri */
body {
    transition: background 0.3s, color 0.3s;
}

/* Koyu tema (varsayılan) */
body.dark-theme {
    background: #0f172a;
    color: #e2e8f0;
}

/* Açık tema */
body.light-theme {
    background: #f4f4f4;
    color: #333;
}

/* Header */
header {
    transition: background 0.3s;
}
body.dark-theme header {
    background: #1a1a1a;
}
body.light-theme header {
    background: #1a1a1a;
}

body.dark-theme .logo {
    color: white;
}
body.light-theme .logo {
    color: white;
}

/* Tema toggle butonu */
.theme-toggle {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
    margin-left: auto;
}
.theme-toggle:hover {
    background: rgba(220,38,38,0.8);
    border-color: #dc2626;
    transform: rotate(180deg);
}

/* Container */
body.dark-theme .container {
    color: #e2e8f0;
}
body.light-theme .container {
    color: #333;
}

/* Icon big */
body.dark-theme .icon-big {
    color: #dc2626;
}
body.light-theme .icon-big {
    color: #dc2626;
}

/* Başlıklar */
body.dark-theme h1 {
    color: #e2e8f0;
}
body.light-theme h1 {
    color: #1a1a1a;
}

/* Lead paragraf */
body.dark-theme .lead {
    color: #94a3b8;
}
body.light-theme .lead {
    color: #666;
}

/* Point kartları */
.point {
    transition: all 0.3s;
}
body.dark-theme .point {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
body.light-theme .point {
    background: white;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

body.dark-theme .point:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(220,38,38,0.3);
}
body.light-theme .point:hover {
    box-shadow: 0 4px 12px rgba(220,38,38,0.2);
    border-color: #dc2626;
}

body.dark-theme .point-text h4 {
    color: #e2e8f0;
}
body.light-theme .point-text h4 {
    color: #1a1a1a;
}

body.dark-theme .point-text p {
    color: #94a3b8;
}
body.light-theme .point-text p {
    color: #666;
}

/* Pricing section */
body.dark-theme .pricing-title {
    color: #e2e8f0;
}
body.light-theme .pricing-title {
    color: #1a1a1a;
}

body.dark-theme .pricing-table {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
body.light-theme .pricing-table {
    background: white;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

body.dark-theme .pricing-table th {
    background: rgba(220,38,38,0.2);
    color: #fca5a5;
    border-bottom: 2px solid rgba(220,38,38,0.3);
}
body.light-theme .pricing-table th {
    background: #dc2626;
    color: white;
    border-bottom: 2px solid #b91c1c;
}

body.dark-theme .pricing-table td {
    color: #e2e8f0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
body.light-theme .pricing-table td {
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

body.dark-theme .pricing-table tr:hover {
    background: rgba(255,255,255,0.03);
}
body.light-theme .pricing-table tr:hover {
    background: #fef2f2;
}

/* Wiring diagram */
body.dark-theme .wiring-diagram {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
body.light-theme .wiring-diagram {
    background: white;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

body.dark-theme .wiring-diagram h3 {
    color: #e2e8f0;
}
body.light-theme .wiring-diagram h3 {
    color: #1a1a1a;
}

/* App download */
body.dark-theme .app-download {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
body.light-theme .app-download {
    background: white;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

body.dark-theme .app-download h3 {
    color: #e2e8f0;
}
body.light-theme .app-download h3 {
    color: #1a1a1a;
}

body.dark-theme .app-download p {
    color: #94a3b8;
}
body.light-theme .app-download p {
    color: #666;
}

body.dark-theme .app-btn {
    background: #1e293b;
    border: 2px solid rgba(255,255,255,0.1);
    color: #e2e8f0;
}
body.light-theme .app-btn {
    background: white;
    border: 2px solid #e0e0e0;
    color: #333;
}

body.dark-theme .app-btn:hover {
    border-color: #dc2626;
    box-shadow: 0 8px 20px rgba(220,38,38,0.3);
}
body.light-theme .app-btn:hover {
    border-color: #dc2626;
    box-shadow: 0 8px 20px rgba(220,38,38,0.3);
}

body.dark-theme .app-text small {
    color: #94a3b8;
}
body.light-theme .app-text small {
    color: #666;
}

/* Fullscreen overlay */
body.dark-theme .fullscreen-overlay {
    background: rgba(0,0,0,0.95);
}
body.light-theme .fullscreen-overlay {
    background: rgba(0,0,0,0.95);
}
