/* ============================================================
   AkademikTR Base Styles — base.css
   Font: Poppins (Local TTF — assets/font/)
   ============================================================ */

/* ===== POPPINS LOCAL FONT DEFINITIONS ===== */
@font-face {
  font-family: 'Poppins';
  src: url('/assets/font/poppins-v24-latin_latin-ext-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/font/poppins-v24-latin_latin-ext-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/font/poppins-v24-latin_latin-ext-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/font/poppins-v24-latin_latin-ext-500italic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/font/poppins-v24-latin_latin-ext-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/font/poppins-v24-latin_latin-ext-600italic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/font/poppins-v24-latin_latin-ext-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/font/poppins-v24-latin_latin-ext-700italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/font/poppins-v24-latin_latin-ext-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/font/poppins-v24-latin_latin-ext-800italic.woff2') format('woff2');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/font/poppins-v24-latin_latin-ext-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/font/poppins-v24-latin_latin-ext-900italic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* --- Font Awesome — font-display override (FOUT önleme) --- */
/* Font Awesome overrides removed due to invalid syntax. To override font-display, redefine the full @font-face rule including src. */

/* --- Universal Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- Root Typography --- */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  color: var(--text-main);
  background-color: #f2f7fd;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Links --- */
a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

/* --- Images --- */
img,
svg {
  display: block;
  max-width: 100%;
}

/* --- Headings --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
  color: var(--text-primary);
}

/* --- Lists --- */
ul,
ol {
  list-style: none;
}

/* --- Buttons --- */
button {
  font-family: inherit;
  cursor: pointer;
}

/* --- Inputs --- */
input,
select,
textarea {
  font-family: inherit;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding-inline: var(--space-4);
  }
}

/* --- Responsive Scrollable --- */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* --- Screen reader only --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* --- Strong Tag Weight Adjustment --- */
strong,
b {
  font-weight: var(--font-weight-semi);
}

/* --- Breadcrumb Spacing --- */
.minimal-breadcrumb {
  margin-top: 30px !important;
}