/* İçindekiler — renewal.css (index.html)
   1. Temel sıfırlama ve gövde
   2. .shell, .page düzeni
   3. .brand (logo22.png)
   4. .renewal-notice — site yenileniyor vurgusu
   5. .chair-message — başlık, portre, alıntı, imza, .chair-message__role (ünvan, sade)
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(120% 120% at 50% 0%, #1a2332 0%, #0f1419 45%, #0a0d11 100%);
  color: #e8eef7;
  -webkit-font-smoothing: antialiased;
}

.shell {
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1.25rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right))
    max(1.25rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
}

.page {
  width: min(100%, 36rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.5vw, 2rem);
}

/* Şirket logosu */
.brand {
  display: flex;
  justify-content: center;
  text-align: center;
}

.brand__logo {
  max-width: min(100%, 20rem);
  width: auto;
  height: auto;
  max-height: clamp(3rem, 12vw, 5rem);
  object-fit: contain;
  display: block;
}

.brand__logo[data-broken="true"] {
  display: none;
}

/* Site yenileniyor */
.renewal-notice {
  text-align: center;
  margin: 0 auto;
  max-width: 26rem;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 186, 90, 0.28);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.renewal-notice__title {
  margin: 0 0 0.35rem;
  font-size: clamp(0.8125rem, 2.8vw, 0.9375rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffc46d;
}

.renewal-notice__text {
  margin: 0;
  font-size: clamp(0.75rem, 2.4vw, 0.875rem);
  line-height: 1.45;
  color: rgba(232, 238, 247, 0.82);
}

/* Başkan mesajı */
.chair-message {
  text-align: center;
  margin-inline: auto;
  padding-inline: clamp(0.25rem, 2vw, 1rem);
}

.chair-message__heading {
  margin: 0 0 1rem;
  font-size: clamp(0.6875rem, 2.6vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 238, 247, 0.72);
}

.chair-message__portrait-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 0 1.25rem;
}

.chair-message__portrait {
  position: relative;
  flex-shrink: 0;
  width: min(13.25rem, 76vw);
  height: min(13.25rem, 76vw);
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 12px 40px rgba(0, 0, 0, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.chair-message__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.chair-message__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
  transform: scale(1.02);
  transform-origin: center center;
}

.chair-message__photo[data-broken="true"] {
  display: none;
}

.chair-message__quote {
  margin: 0;
  padding: 0;
  border: none;
  quotes: "“" "”" "‘" "’";
}

.chair-message__quote p {
  margin: 0;
  font-size: clamp(1.25rem, 4.2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #f2f6fb;
}

.chair-message__quote p::before {
  content: open-quote;
}

.chair-message__quote p::after {
  content: close-quote;
}

.chair-message__name {
  margin: 1.25rem 0 0;
  font-size: clamp(0.9375rem, 3vw, 1.0625rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(232, 238, 247, 0.88);
}

/* Ünvan: küçük punto, düşük kontrast — bürokratik blok hissi vermemesi için */
.chair-message__role {
  margin: 0.5rem auto 0;
  max-width: 22rem;
  font-size: clamp(0.6875rem, 2.15vw, 0.8125rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(232, 238, 247, 0.42);
}
