/* ==========================================
   ÇAMLICA TEKMER MULTI-PAGE - GLOBAL STYLES
   ========================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-primary) !important;
  color: var(--text-primary) !important;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-primary) !important;
  color: var(--text-primary) !important;
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* STANDART BAŞLIK TİPOGRAFİSİ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-secondary);
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-emerald);
}

/* ACCENT/MİKRO VURGULAR */
.accent-text {
  color: var(--accent-emerald) !important;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* TÜM SAYFALARDA BİREBİR AYNI STANDART SECTION HEADER STİLİ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary) !important;
  margin-bottom: 0.85rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #475569 !important;
  line-height: 1.65;
  font-weight: 500;
}

/* TÜM ALT SAYFALARDA BİREBİR AYNI PREMİUM YEŞİL DESENLİ BANNER STİLİ */
.page-header-banner {
  padding-top: calc(var(--header-height) + 3rem) !important;
  padding-bottom: 3rem !important;
  background: linear-gradient(135deg, rgba(11, 87, 57, 0.93) 0%, rgba(6, 78, 59, 0.96) 100%), url('../images/backgrounds/bg_koyu_zumrut_deseni.jpg') center/cover no-repeat !important;
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(11, 87, 57, 0.15);
  color: #FFFFFF !important;
}

.page-banner-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #FFFFFF !important;
  margin-bottom: 0.85rem;
  position: relative;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}

.page-banner-desc {
  font-size: 1.1rem;
  color: #F0FDF4 !important;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  line-height: 1.65;
  font-weight: 400;
}

/* TÜM SAYFALARDA SIKI VE ORANTILI BÖLÜM BOŞLUĞU */
.page-section {
  padding: 2.75rem 0 !important;
}

