/* =========================================================
   MEET ARVEN – PDF EXPORT (ACADEMIC / INDIVIDUAL)
   Inspired by Academic CV Standards (APA-friendly)
   ========================================================= */

/* =========================
   PAGE WRAPPER
   ========================= */

.pdf-export {
  width: 210mm;
  min-height: 297mm;
  box-sizing: border-box;
  background: #ffffff;
  color: #1f2937;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 11.5px;
  line-height: 1.55;
}

/* =========================
   HEADER (NAME BLOCK)
   ========================= */

.pdf-header {
  text-align: center;
  margin-bottom: 18px;
}

.pdf-name {
  font-size: 28px;
  font-weight: bold;
  color: #0A2463;
  margin-bottom: 4px;
  text-align: center;
}

.pdf-headline {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  text-align: center;
}

.pdf-organization {
  font-size: 12px;
  color: #374151;
  margin-bottom: 4px;
  text-align: center;
}

.pdf-contact {
  font-size: 11px;
  color: #374151;
  text-align: center;
}

.pdf-divider {
  height: 2px;
  background: #0A2463;
  margin: 12px 0 18px 0;
}

/* =========================
   SECTION HEADINGS
   ========================= */

.pdf-export h2 {
  font-size: 16px;
  font-weight: 700;
  color: #0A2463;

  margin-top: 22px;
  margin-bottom: 10px;

  border: none !important;
  border-bottom: none !important;
  background: none !important;

  padding: 0 !important;
  text-decoration: none !important;
}

/* =========================
   TEXT ELEMENTS
   ========================= */

.pdf-export p {
  margin: 0 0 6px 0;
  color: #1f2937;
}

.pdf-export strong {
  color: #111827;
}

/* =========================
   LISTS
   ========================= */

.pdf-export ul {
  padding-left: 18px;
  margin: 6px 0;
}

.pdf-export li {
  margin-bottom: 4px;
}

/* =========================
   EXPERIENCE / EDUCATION BLOCKS
   ========================= */

.pdf-item {
  margin-bottom: 10px;
}

.pdf-item-title {
  font-weight: bold;
}

.pdf-item-sub {
  font-size: 11px;
  color: #374151;
}

.pdf-item-date {
  font-size: 10.5px;
  color: #6b7280;
}

/* =========================
   SUMMARY
   ========================= */

.pdf-summary {
  margin-bottom: 14px;
  text-align: justify;
}

/* =========================
   ACADEMIC – PUBLICATIONS (APA READY)
   ========================= */

.pdf-publication {
  margin-bottom: 8px;
  text-indent: -18px;
  padding-left: 18px; /* APA hanging indent */
}

.pdf-publication em {
  font-style: italic;
}

/* =========================
   META / SMALL TEXT
   ========================= */

.pdf-meta {
  font-size: 10.5px;
  color: #6b7280;
}

/* =========================
   LINKS (PDF SAFE)
   ========================= */

.pdf-export a {
  color: #0A2463;
  text-decoration: none;
}

.pdf-export a::after {
  content: " (" attr(href) ")";
  font-size: 9px;
  color: #6b7280;
}

/* =========================
   PAGE BREAK CONTROL
   ========================= */

.page-break {
  page-break-before: always;
}

/* =========================
   SECTION SPACING
   ========================= */

.pdf-section {
  margin-bottom: 24px;
}

/* ===== TWO COLUMN GRID ===== */
.pdf-grid {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 18px;
}

/* ===== LEFT COLUMN ===== */
.pdf-left {
  border-right: 1px solid #e5e7eb;
  padding-right: 18px;
  margin-left: -30px;
  text-align: left;
  background-color: #f9fafb;
}

.pdf-photo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

/* 👇 Fotoğraf konteyneri */
.pdf-photo-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background-color: #f3f4f6; /* Fotoğraf yoksa arka plan rengi */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pdf-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #d1d5db;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 👇 Fotoğraf yoksa boş yuvarlak çerçeve */
.pdf-photo-placeholder {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background-color: #e5e7eb;
  border: 1px dashed #9ca3af;
}

.pdf-contact-block p {
  font-size: 10.5px;
  margin: 2px 0;
  text-align: left;
}

/* ===== RIGHT COLUMN ===== */
.pdf-right {
  padding-left: 20px;
  text-align: left;
}

.pdf-section:first-child h2 {
  margin-top: 0;
}