/* 
 * Atalay Finansal – Üst Yönetim (Senior Leadership) Özel Stilleri
 * McKinsey referansına uygun olarak kodlanmıştır.
 */

:root {
  /* Using global variables from style.css */
}

/* ── HERO BÖLÜMÜ ── */
.uy-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background-color: var(--clr-navy);
  overflow: hidden;
  /* margin-top handled by new hero system */
}

.uy-hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

.uy-hero__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Navy gradient fading to transparent on the right */
  background: linear-gradient(90deg, rgba(0,69,124,1) 0%, rgba(0,69,124,0.85) 45%, rgba(0,69,124,0) 100%);
  z-index: 2;
}

.uy-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  color: #ffffff;
  padding: 4rem 0;
}

.uy-hero__title {
  font-family: var(--ff-heading, Georgia, serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.uy-hero__desc {
  font-family: var(--ff-primary, sans-serif);
  font-size: 1.25rem;
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.uy-hero__btn {
  display: inline-block;
  background-color: #FAF9F6 !important;
  color: #0d6efd !important;
  padding: 0.75rem 2rem;
  font-weight: 500;
  text-decoration: none;
  border: none !important;
  border-radius: 4px !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.uy-hero__btn:hover {
  background-color: #ffffff !important;
  color: #0b5ed7 !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
  .uy-hero__bg {
    width: 100%;
  }
  .uy-hero__gradient {
    background: linear-gradient(90deg, rgba(0,69,124,0.95) 0%, rgba(0,69,124,0.85) 100%);
  }
}

/* ── KADRO SEKSİYONU ── */
.uy-section {
  padding: 5rem 0;
  background-color: var(--clr-bg);
}

/* ── PROFILE LAYOUT (Yatay: Foto + Metin) ── */
.uy-profile {
  padding: 2rem 0;
}

.uy-profile__img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.uy-profile__name {
  font-family: var(--ff-heading, Georgia, serif);
  color: var(--clr-navy);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.uy-profile__role {
  font-family: var(--ff-primary, sans-serif);
  font-weight: 700;
  color: var(--clr-gold);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.uy-profile__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,69,124,0.1);
}

.uy-profile__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.uy-profile__link:hover {
  color: var(--clr-gold);
}

.uy-profile__link i {
  font-size: 1rem;
}

.uy-profile__bio {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--clr-text);
}

.uy-profile__bio p {
  margin-bottom: 1rem;
}

.uy-divider {
  border: none;
  border-top: 1px solid rgba(0,69,124,0.1);
  margin: 1rem 0;
}

/* ── CTA BÖLÜMÜ ── */
.uy-cta {
  background: #f4f5f6;
  padding: 5rem 0;
  text-align: center;
}

.uy-cta__title {
  font-family: var(--ff-heading, Georgia, serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: #111;
  margin-bottom: 0.5rem;
}

.uy-cta__desc {
  font-family: var(--ff-primary, sans-serif);
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2rem;
}
.uy-cta__desc a {
  color: var(--clr-gold);
  text-decoration: underline;
}

.uy-cta__btn {
  background-color: var(--clr-navy, #06102A);
  color: #fff;
  border: none;
  padding: 0.7rem 2.2rem;
  font-weight: 500;
  border-radius: 3px;
  font-family: var(--ff-primary, system-ui, sans-serif);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}
.uy-cta__btn:hover {
  background-color: var(--clr-gold, #C8A24D);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .uy-profile__img { max-width: 100%; margin: 0 auto; }
  .uy-profile__name { font-size: 1.6rem; }
  .uy-profile__bio p { font-size: 0.88rem; line-height: 1.65; }
  .uy-section { padding: 3rem 0; }
  .uy-cta { padding: 3.5rem 0; }
  .uy-cta__title { font-size: clamp(1.4rem, 5vw, 2rem); }
}
@media (max-width: 575px) {
  .uy-profile__links { gap: 0.75rem; flex-direction: column; }
  .uy-profile__role { font-size: 0.95rem; }
}
@media (max-width: 480px) {
  .uy-profile__name { font-size: 1.3rem; }
  .uy-profile__bio p { font-size: 0.82rem; line-height: 1.6; }
  .uy-profile__links a { font-size: 0.82rem; }
  .uy-section { padding: 2rem 0; }
  .uy-cta { padding: 2.5rem 0; }
  .uy-cta__desc { font-size: 0.88rem; }
}
