/**
 * Global - Değişkenler, reset, temel stiller
 *
 * @package Alpaya_x_Retodi
 */

/* ==========================================================================
   Fonts - Marcellus (Google Fonts, functions.php'den yüklenir)
   ========================================================================== */

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
  --color-primary: #2563eb;
  --color-secondary: #1e293b;
  --color-text: #334155;
  --color-light: #f8fafc;
  --font-sans: "Marcellus", serif;
  --font-secondary: "Noto Sans", sans-serif;
  --spacing: 1rem;
  --max-width: 1200px;

  /* Section Ayarları - tüm section'larda kullanılacak */
  --section-title-font-size: 2rem;
  --section-subtitle-font-size: 1.25rem;
  --section-content-font-size: 1rem;
  --section-title-content-gap: 2rem;

  /* Sayfa başlığı (MetaBox) - banner alanı */
  --page-title-font-size: 2.5rem;
  --page-subdesc-font-size: 0.9rem;
  --page-title-subdesc-gap: 0.5rem;
}

@media (max-width: 768px) {
  :root {
    --section-title-font-size: 1.5rem;
    --section-subtitle-font-size: 1.125rem;
    --section-content-font-size: 0.9375rem;
    --section-title-content-gap: 0.75rem;

    --page-title-font-size: 1.25rem;
    --page-subdesc-font-size: 0.875rem;
    --page-title-subdesc-gap: 0.375rem;
  }
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: #fff;
  overflow-x: hidden;
}

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

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  word-wrap: normal;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.site-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing);
}

.site-content {
  /* padding: calc(var(--spacing) * 2) 0; */
  min-height: 60vh;
}
