body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0e1624;
    color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #0e1624;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center; /* Ortalamak için ekledim */
}

.logo img {
    max-width: 100%; /* Görselin genişliği %100 yapılır */
    height: auto; /* Boyut oranlarını korur */
    max-height: 50px; /* İstediğiniz yüksekliği buraya yazabilirsiniz */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.divider {
    border: 0;
    height:1px;
    background: #2c3e50;
    margin: 0 50px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 50px;
    position: relative;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
}

.hero-text h1 span {
    color: #00c9c9;
}

.buttons {
    margin-top: 30px;
}

.btn {
    padding: 12px 24px;
    margin-right: 15px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
}

.primary {
    background-color: #00c9c9;
    color: #fff;
}

.secondary {
    background-color: #1e293b;
    color: #fff;
}

.secondary span {
    font-size: 12px;
    margin-left: 8px;
}

.hero-img img {
    max-width: 400px;
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    animation: bounce 2s infinite;
    color: #fff;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* About me - Start */
.about-section {
  padding: 100px 0;
  background-color: #0f1624;
  color: white;
}

.about-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-text h2 span {
  color: #00c9b7;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #b0b8c1;
}

.about-text .read-more {
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.about-img {
  flex: 1;
  text-align: center;
}

.about-img img {
  max-width: 100%;
  height: auto;
}
/* About me - End */

/* My Recent Works - Start */
.portfolio-section {
  padding: 100px 0;
  background-color: #0f1624;
  color: white;
  text-align: center;
}

.portfolio-section .section-title {
  font-size: 36px;
  margin-bottom: 40px;
}

.portfolio-section .section-title span {
  color: #A90DA4;
}

.filter-buttons {
  margin-bottom: 30px;
}

.filter-btn {
  background-color: transparent;
  border: 1px solid #A90DA4;
  color: #A90DA4;
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #A90DA4;
  color: white;
}

.portfolio-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.portfolio-items .item {
  width: 300px;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
}

.portfolio-items .item img {
  width: 100%;
  height: auto;
  display: block;
}

.view-all {
  margin-top: 60px; /* Butonu aşağıya iter */
}
/* My Recent Works - End */

/* Contact - Start */
.contact-section {
  padding: 100px 0;
  background-color: #0f1624;
  color: white;
}

.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-img {
  flex: 1;
  text-align: center;
}

.contact-img img {
  max-width: 100%;
  height: auto;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.contact-form h2 span {
  color: #A90DA4;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group input {
  flex: 1;
  padding: 15px;
  background: #1e2633;
  border: none;
  border-radius: 8px;
  color: white;
}

textarea {
  width: 100%;
  padding: 15px;
  background: #1e2633;
  border: none;
  border-radius: 8px;
  color: white;
  margin-bottom: 20px;
}

button {
  background-color: #A90DA4;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #8e0c8f;
}
/* Contact - End */

/* Footer - Start */
.footer-section {
  background-color: #0f1624;
  color: white;
  padding: 60px 0 30px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 0 20px;
}

.footer-logo h3 {
  font-size: 24px;
  color: #A90DA4;
  margin-bottom: 10px;
}

.footer-logo p {
  color: #b0b8c1;
}

.footer-menu a {
  margin: 0 10px;
  text-decoration: none;
  color: #b0b8c1;
  transition: 0.3s;
}

.footer-menu a:hover {
  color: #A90DA4;
}

.footer-social a {
  background-color: #1e2633;
  color: white;
  margin: 0 5px;
  padding: 10px;
  border-radius: 50%;
  display: inline-block;
  transition: 0.3s;
}

.footer-social a:hover {
  background-color: #A90DA4;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #1e2633;
  color: #666;
}
/* Footer - End */

/* Mobil uyum için */
@media screen and (max-width: 768px) {
  /* HEADER */
  header {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  .logo {
    margin-bottom: 10px;
    justify-content: center;
  }
  nav ul {
    flex-direction: row; /* YAN YANA */
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
  }
  nav li {
    display: inline-block;
  }
  nav a {
    font-size: 16px;
  }
  /* HERO */
  .hero {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }  
  .hero-text h1 {
    font-size: 32px;
  }
  .hero-img img {
    max-width: 100%;
    margin-top: 20px;
  }  
  .buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }
  /* ABOUT */
  .about-section .container {
    flex-direction: column;
    padding: 0 20px;
    text-align: center;
  }
  /* PORTFOLIO */
  .portfolio-items {
    flex-direction: column;
    align-items: center;
  }
  .portfolio-items .item {
    width: 90%;
  }
  /* CONTACT */
  .contact-section .container {
    flex-direction: column;
    padding: 0 20px;
  }
  .form-group {
    flex-direction: column;
  }
  /* FOOTER */
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    text-align: center;
  }
  .footer-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  .footer-menu a {
    margin: 0;
    font-size: 16px;
  }
  .footer-social {
    margin-top: 20px;
  }
}



