body {
  margin: 0;
  padding: 0;
  font-family: 'Century Gothic', sans-serif;
  color: #FDC317;
  background: linear-gradient(160deg, #00111b 0%, #0d2a32 100%);
  min-height: 100vh;
}

/* Menü */
.navbar {
  display: flex;
  justify-content: flex-end;
  padding: 30px 60px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.navbar a {
  text-decoration: none;
  color: #FDC317;
  font-size: 1.8rem;
}

/* Ana içerik */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  min-height: calc(100vh - 120px); /* ekranı ortalamaya yardımcı olur */
  padding: 40px 20px;
}

.intro h1 {
  font-size: 3.5rem;
  font-weight: normal;
  margin-bottom: 30px;
  line-height: 1.2;
}

.profile-image {
  margin-top: 20px;
  width: 800px;
  max-width: 95%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.subtitle {
  margin-top: 30px;
  font-size: 2.2rem;
}
.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  text-align: center;
  min-height: calc(100vh - 120px);
}

.about-title {
  font-size: 3.8rem;
  color: #FDC317;
  margin-bottom: 40px;
}

.about-text {
  font-size: 1.6rem;
  color: #FDC317;
  max-width: 800px;
  line-height: 1.8;
}
.portfolio-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  text-align: center;
  min-height: calc(100vh - 120px);
}

.portfolio-title {
  font-size: 3.8rem;
  margin-bottom: 60px;
  color: #FDC317;
  text-transform: lowercase;
}

.portfolio-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.portfolio-link {
  font-size: 1.8rem;
  color: #FDC317;
  text-decoration: none;
  text-transform: lowercase;
  transition: opacity 0.3s ease;
}

.portfolio-link:hover {
  opacity: 0.7;
}
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  text-align: center;
  min-height: calc(100vh - 120px);
}

.contact-title {
  font-size: 3.8rem;
  margin-bottom: 40px;
  color: #FDC317;
  text-transform: lowercase;
}

.contact-info p {
  font-size: 1.6rem;
  color: #FDC317;
  margin: 10px 0;
  text-transform: lowercase;
}
/* Portfolio sayfası */
.portfolio-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  text-align: center;
  min-height: calc(100vh - 120px);
}

.portfolio-title {
  font-size: 4.5rem;
  margin-bottom: 60px;
  color: #FDC317;
  text-transform: lowercase;
}

.portfolio-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.portfolio-link {
  font-size: 2rem;
  color: #FDC317;
  text-decoration: none;
  text-transform: lowercase;
  transition: opacity 0.3s ease;
}

.portfolio-link:hover {
  opacity: 0.7;
}

/* Galeri sayfaları */
.gallery-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  min-height: calc(100vh - 120px);
  text-align: center;
}

.gallery-title {
  font-size: 5rem;
  margin-bottom: 50px;
  color: #FDC317;
  text-transform: lowercase;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.gallery img {
  width: 300px;
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
