/* ==================================================
   GLOBAL LAYOUT RULES — style.css v4.3.8
   Date: 2025-11-10
   
   Purpose: Defines structural layout rules only.
   Theme variables are now exclusively in theme-variables.css
   ================================================== */

/* === GENEL RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  /* === LAYOUT CONSTANTS === */
  --container-max-width: 1200px;
  --navbar-height: 56px;

  color-scheme: dark;
}

/* === SAYFA TEMEL DÜZENİ === */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--page-bg);
  color: var(--text-primary);
  min-height: 100vh;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* İçerik alanı */
.content-container {
  margin-top: var(--navbar-height);
  width: 100%;
  padding: 20px;
  padding-inline: 20px;
  box-sizing: border-box;
  transition: width 0.3s ease;
}

/* ==================================================
   MOBİL HEADER'I MASAÜSTÜNDE GİZLE (KALICI ÇÖZÜM)
   (Sağ üstteki istenmeyen 'Panel' yazısı ve butonu gizler)
   ================================================== */
main.content > .header {
  display: none;
}
