:root {
  --bg: #111111;
  --bg-soft: #1a1a1a;
  --text: #e5e5e5;
  --text-soft: #c7c7c7;
  --accent: #d9d9d9;
  --accent-soft: rgba(255, 255, 255, 0.05);
  --border: #2d2d2d;
}

/* Genel reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Sayfa gövdesi */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 72px 12px 48px; /* Üstte nav için boşluk */
}

/* ---------------------- */
/*   ÜST MENÜ (NAVBAR)    */
/* ---------------------- */

.top-nav {
  width: 100%;
  background: #050505;
  border-bottom: 1px solid #2c2c2c;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.9rem;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  color: var(--text-soft);
  text-decoration: none;
  padding: 4px 0;
  display: inline-block;
  transition: 0.2s ease;
}

.nav-item > a:hover {
  color: var(--text);
}

/* Açılır menü */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #181818;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 6px 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: 0.18s ease;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--text-soft);
  text-decoration: none;
}

.nav-dropdown a:hover {
  background: #222222;
  color: var(--text);
}

/* ---------------------- */
/*       HERO KARTI       */
/* ---------------------- */

.hero-wrapper {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  background: var(--bg-soft);
  border-radius: 26px;
  padding: 24px 22px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .hero-card {
    grid-template-columns: 1fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

/* İsim satırı */

.hero-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.hero-title-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

/* Merhaba, ben ve Ceyda Gezer aynı boyutta */
.hello-text {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
}

.hero-name {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
}

.hero-title {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.hero-title span {
  color: var(--accent);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #2a2a2a;
  background: #111111;
  color: var(--text-soft);
}

.hero-description {
  font-size: 0.9rem;
  color: #dcdcdc;
  max-width: 520px;
}

.hero-highlight {
  color: var(--accent);
  font-weight: 500;
}

/* İlgi alanları listesi */

.hero-list {
  margin-left: 18px;
  color: var(--text-soft);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Sosyal butonlar */

.hero-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.hero-social a {
  font-size: 0.85rem;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid #2d2d2d;
  color: var(--text);
  background: #111111;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.18s ease;
}

.hero-social a:hover {
  border-color: #e4e4e4;
  color: #ffffff;
  background: #ffffff10;
}

.icon img {
  display: block;
}

/* Profil fotoğrafı kısmı */

.hero-avatar-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-avatar-card {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  padding: 4px;
  background: radial-gradient(circle at center, #333, #1a1a1a 75%);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.9);
}

.hero-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid #2e2e2e;
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-avatar-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #e4e4e4;
  color: #ffffff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

/* Alt not */
.hero-footnote {
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--text-soft);
}

/* ---------------------- */
/*   BECERİLER / SERTİFİKA */
/* ---------------------- */

.section-card {
  width: 100%;
  max-width: 1100px;
  margin-top: 28px;
  background: var(--bg-soft);
  border-radius: 24px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
}

.section-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.info-list {
  list-style: disc;
  margin-left: 22px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.info-list li + li {
  margin-top: 6px;
}










