/*
Theme Name: Volum Enerji Cooling
Theme URI: http://volumenerji.org
Author: Volum Enerji
Author URI: http://volumenerji.org
Description: Volum Enerji için soğutma kulesi odaklı özel WordPress teması.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: volum-enerji-cooling
*/

/* Genel gövde */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050b1a;
  color: #f5f5f5;
}

/* Ana yapı */
.ve-site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top, rgba(79,195,247,0.09), transparent),
              radial-gradient(circle at bottom, rgba(29,233,182,0.06), #050b1a);
}

/* HEADER */
.site-header {
  background: #050b1a;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-title a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 16px;
  text-transform: uppercase;
}

/* Logo görseli */
.site-logo img {
  max-height: 40px;
  width: auto;
}

/* Menü */
.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
}

.main-navigation a {
  text-decoration: none;
  color: #e5e7eb;
  font-size: 14px;
  position: relative;
  padding-bottom: 3px;
}

.main-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #4fc3f7, #1de9b6);
  transition: width 0.2s ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after {
  width: 100%;
}

/* İçerik alanı */
.site-main {
  flex: 1;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(148,163,184,0.35);
  padding: 18px 0 26px;
  margin-top: 40px;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Sayfa içerik konteyneri */
.ve-page,
.ve-products-page,
.ve-detail-page {
  padding: 40px 16px 80px;
}

.ve-container,
.ve-products-container,
.ve-detail-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Basit responsive */
@media (max-width: 768px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .main-navigation ul {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* HERO BÖLÜMÜ VE ÜRÜN GRIDİ (ÖN SAYFA + ÜRÜN/DETAY) */
.ve-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
}

.ve-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #9fe870;
  font-size: 13px;
  margin-bottom: 12px;
}

.ve-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9fe870;
}

.ve-hero-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.ve-hero-title span {
  color: #4fc3f7;
}

.ve-hero-subtitle {
  font-size: 15px;
  color: #ced4da;
  max-width: 540px;
  margin-bottom: 20px;
}

.ve-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.ve-hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #e9ecef;
  margin-bottom: 8px;
}

.ve-hero-list li::before {
  content: "•";
  color: #9fe870;
  margin-top: 2px;
}

.ve-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ve-btn-primary,
.ve-btn-secondary {
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.ve-btn-primary {
  background: linear-gradient(135deg, #4fc3f7, #1de9b6);
  color: #050b1a;
  border-color: rgba(255, 255, 255, 0.1);
}

.ve-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.ve-btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #e9ecef;
  border-color: rgba(255, 255, 255, 0.12);
}

.ve-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.ve-hero-right {
  background: radial-gradient(circle at top left, rgba(79, 195, 247, 0.35), transparent),
    radial-gradient(circle at bottom right, rgba(29, 233, 182, 0.3), transparent);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 20px 18px;
  position: relative;
  overflow: hidden;
}

.ve-hero-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #adb5bd;
  margin-bottom: 10px;
}

.ve-hero-right h3 {
  font-size: 15px;
  margin: 0 0 6px;
}

.ve-hero-right p {
  font-size: 13px;
  color: #dee2e6;
  margin: 0 0 10px;
}

.ve-hero-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.ve-spec-item {
  padding: 8px 9px;
  border-radius: 14px;
  background: rgba(5, 11, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ve-spec-label {
  font-size: 11px;
  color: #adb5bd;
  margin-bottom: 3px;
}

.ve-spec-value {
  font-size: 13px;
  color: #f8f9fa;
}

.ve-spec-highlight {
  color: #9fe870;
}

/* ÜRÜN GRID */
.ve-section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.ve-section-sub {
  font-size: 14px;
  color: #adb5bd;
  margin-bottom: 20px;
}

.ve-products {
  margin-bottom: 40px;
}

.ve-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ve-product-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 18px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.ve-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(148, 163, 184, 0.15);
  color: #e2e8f0;
  margin-bottom: 10px;
}

.ve-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #4fc3f7;
}

.ve-product-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.ve-product-card p {
  font-size: 13px;
  color: #cbd5f5;
  margin-bottom: 10px;
}

/* ÜRÜNLER SAYFASI ve DETAY CSS'i zaten şablonlarda kullanılan sınıflarla uyumlu */
@media (max-width: 900px) {
  .ve-hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .ve-hero-right {
    order: -1;
  }
  .ve-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .ve-product-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
page-servis-raporu.php
