/* Google Fonts'tan "Old Money" estetiğine uygun fontları ekleyelim */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@300;400;700&display=swap');

/* CSS Değişkenleri ile Renk Paletimizi Tanımlayalım */
:root {
  --primary-blue: #0A2E36;
  --accent-orange: #F8B500;
  --soft-yellow: #FDEBCD;
  --neutral-gray: #6c757d;
  --pure-white: #FFFFFF;
  --header-bg: #FFFFFF;
}

/* Genel Sayfa Ayarları */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--neutral-gray);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-blue);
}

a {
  text-decoration: none;
  color: var(--primary-blue);
}

/* GENEL BÖLÜM BAŞLIKLARI */
.section-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header .title {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-header .description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

/* GENEL BUTON STİLLERİ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: #ffc42e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* =============================
   GLOBAL MOBİL UYUMLULUK
============================= */
@media (max-width: 768px) {
    .section-header .title {
        font-size: 32px;
    }
    .section-header .description {
        font-size: 15px;
    }
}

/* =============================
   YARDIMCI SINIFLAR
============================= */
body.no-scroll {
    overflow: hidden;
}