/* ============================= */
/* GENEL AYARLAR                 */
/* ============================= */
body {
  font-family: Arial, sans-serif;
  background: #0077b6;
  color: white;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

/* ============================= */
/* NAVBAR                         */
/* ============================= */
nav {
  display: flex;
  justify-content: space-between; /* Dil butonları sol, linkler sağ */
  align-items: center;
  background: #023e8a;
  padding: 12px 20px;
}

nav a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #ffd60a;
}

/* ============================= */
/* DİL BUTONLARI - MODERN STİL   */
/* ============================= */
.lang-buttons {
  display: flex;
  gap: 8px;
}

.lang-buttons button {
  padding: 6px 14px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  border-radius: 20px;          /* Yuvarlak köşe */
  background-color: white;      /* Beyaz arkaplan */
  color: #023e8a;               /* Yazı rengi mavi */
  transition: all 0.3s ease;    /* Hover animasyonu */
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.lang-buttons button:hover {
  background-color: #ffd60a;    /* Hover sarı */
  color: #023e8a;               /* Yazı rengi mavi */
  transform: translateY(-2px);  /* Hafif yukarı hareket */
}

.lang-buttons button.active {
  background-color: #ffd60a;    /* Aktif buton sarı */
  color: #023e8a;               /* Yazı rengi mavi */
}

/* ============================= */
/* HERO BÖLÜMÜ                   */
/* ============================= */
.hero {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  width: 80%;
  margin: 40px auto;
}

.hero .profile-photo {
  width: 210px;
  border-radius: 10px;
  border: 3px solid white;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.hero .intro {
  flex: 1;
}

.hero h1 {
  font-size: 27.5px;
  margin: 0;
}

.hero .subtitle {
  font-size: 16px;
  color: #caf0f8;
  margin: 5px 0 15px;
}

.hero h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

/* ============================= */
/* CONTAINER & LISTELER           */
/* ============================= */
.container {
  width: 80%;
  margin: auto;
  padding: 10px 0;
  margin-top: -30px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  margin: 5px 0;
}

ul li::before {
  content: "• ";
  color: #ffd60a;
  font-weight: bold;
}

/* ============================= */
/* FADE-IN ANİMASYON              */
/* ============================= */
.fade-in {
  opacity: 1; /* Başlangıçta görünür */
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
