:root {
    /* Ana renk ve fontları tanımlıyoruz */
    --bg-dark-blue: #111B26; /* Siyah değil, koyu lacivert tonu */
    --text-color: #EAEAEA;
    --primary-color: #f7d71e;
    --font-main: 'Montserrat', sans-serif; /* Ana Sans-Serif font */
    --font-display: 'Playfair Display', serif; /* Sadece büyük logo için Serif font */
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
    max-width: 1320px; /* 1200px'den artırıldı */
    margin: 0 auto;
    padding: 0 20px;
}
.text-center { text-align: center; }

img {
  /* Görsellerin sürüklenmesini engeller */
  -webkit-user-drag: none;
  user-drag: none;

  /* Görsellerin metin gibi seçilmesini ve kopyalanmasını engeller */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}