/* Temel ayarlar */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(160deg, #000000, #011f1f, #001a26);
  color: #00ffd5;
  overflow-x: hidden;
   font-weight: bold;
}

a {
  text-decoration: none;
  color: #00ffd5;
  font-weight: bold;
}

nav {
  background-color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 3px solid #00ffd5;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

nav a {
  background: #222;
  padding: 0.5rem 1rem;
  border: 2px solid #00ffd5;
  border-radius: 4px;
  transition: 0.3s;
}

nav a:hover {
  background: linear-gradient(to right, #00ffd5, #0099ff);
  color: #000;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
}

/* Hakkımda */
.info-section {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  flex-wrap: wrap;
}

.hakkimda-box,
.photo-box {
  width: 40%;
  padding: 1rem;
  text-align: center;
  box-sizing: border-box;
  color: #00e6c3;
}

.profile-photo {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 15px rgba(0, 255, 213, 0.4);
}

/* Ana sayfa projeler */
.projects-overview {
  padding: 2rem;
  background-color: #111;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.project-thumb {
  width: 280px;
  text-align: center;
  background: #000;
  border: 2px solid #00ffd5;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}

.project-thumb:hover {
  transform: scale(1.05);
}

.project-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid #00ffd5;
}

.project-thumb h3 {
  margin: 1rem 0;
  color: #00ffd5;
  font-size: 1.2rem;
}

/* Panel genel */
.slide-panel {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  color: #00ffd5;
  transition: left 0.5s ease-in-out;
  z-index: 1000;
  padding: 2rem;
  box-sizing: border-box;
  overflow-y: auto;
}

.slide-panel.active {
  left: 0;
}

.panel-content {
  max-width: 900px;
  margin: 5rem auto;
  background-color: #111;
  border: 2px solid #00ffd5;
  padding: 2rem;
  border-radius: 10px;
}

.panel-content p,
.panel-content li {
  color: #00e6c3;
  font-weight: bold;
}

.close-btn {
  font-size: 2rem;
  color: #00ffd5;
  float: right;
  cursor: pointer;
}

/* Çalışmalarım paneli */
.project-fullscreen {
  margin-bottom: 4rem;
  text-align: center;
}

.project-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #00ffd5;
  font-weight: bold;
}

.fullscreen-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 550px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.fullscreen-slider img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: none;
  cursor: pointer;
}

.fullscreen-slider img.active {
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 255, 213, 0.3);
  border: none;
  font-size: 2.5rem;
  padding: 0.5rem 1rem;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.slider-btn.prev {
  left: 0;
}

.slider-btn.next {
  right: 0;
}

.project-description {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  color: #00e6c3;
  font-weight: bold;
  max-width: 900px;
  margin: 0 auto;
}

/* Projeler arası ayırıcı çizgi */
.project-divider {
  border: 0;
  height: 2px;
  background: #00ffd5;
  margin: 3rem auto;
  width: 80%;
  opacity: 0.5;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #111;
  border-top: 3px solid #00ffd5;
  margin-top: 2rem;
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  color: #00ffd5;
  font-size: 1.5rem;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #0099ff;
}
.skills-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.skills-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 255, 213, 0.2);
  padding-bottom: 0.5rem;
}

.skills-list span {
  width: 150px;
  font-size: 1rem;
  font-weight: bold;
  color: #00ffd5;
}

.stars {
  display: flex;
  gap: 5px;
}

.stars i {
  font-size: 1.2rem;
  color: #00ffd5;
}
.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #00ffd5;
}
.info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.card {
  background-color: #111;
  padding: 1rem;
  border: 1px solid #00ffd5;
  border-radius: 8px;
  flex: 1 1 200px;
  color: #00ffd5;
}
.profile-photo {
  transition: transform 0.3s ease;
}

.profile-photo:hover {
  transform: scale(1.05);
}
.skills-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.skills-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 255, 213, 0.2);
  padding-bottom: 0.5rem;
}

.skills-list span {
  width: 160px;
  font-size: 1rem;
  font-weight: bold;
  color: #00ffd5;
}

.skills-list span i {
  margin-right: 8px;
}

.stars {
  display: flex;
  gap: 5px;
}

.stars i {
  color: #00ffd5;
  font-size: 1.2rem;
}
.project-thumb {
  transition: box-shadow 0.3s ease;
}

.project-thumb:hover {
  box-shadow: 0 0 15px rgba(0, 255, 213, 0.4);
}
.slide-panel {
  transition: all 0.6s ease;
  opacity: 0;
}

.slide-panel.active {
  left: 0;
  opacity: 1;
}
.project-thumb img {
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-thumb:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 213, 0.4);
}
body {
  font-family: 'Poppins', sans-serif;
}
body {
  background-color: #000;
  background-image: radial-gradient(circle, rgba(0, 255, 213, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}
.projects-overview {
  background-color: #000;
  background-image: radial-gradient(circle, rgba(0, 255, 213, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.photo-box {
  background-color: #000;
  background-image: radial-gradient(circle, rgba(0, 255, 213, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 1rem;
  border: 2px solid #0099ff;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2rem;
  flex-wrap: wrap;
}

.ghost-photo-box {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}

.profile-photo {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 15px rgba(0, 255, 213, 0.4);
}

