@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

html{
    font-size: 62.5%;
}

body{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    background-color: black;
    color: white;
}

header{
    margin-top: 20px;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 9%;
    background-color: transparent;
    filter: drop-shadow(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo{
    font-size: 3rem;
    color: #058acc;
    font-weight: 800;
    cursor: pointer;
    transition: 0.5s ease;
}

.logo:hover{
    transform: scale(1.1);
}

nav a{
    font-size: 1.8rem;
    color: white;
    margin-left: 4rem;
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
}

nav a:hover,
nav a.active{
    color: #058acc;
    border-bottom: 3px solid #058acc;
}

.hamburger {
    display: none;
}

.alt-aciklama {
  font-size: 1.6rem;
  color: #ccc;
  margin-top: 1rem;
}

.menuburger {
  color: #0056b3;
  font-size: 3rem;
  transition: 0.5s linear;
}

@media (max-width: 995px) {
  .hamburger {
    display: block;
    z-index: 1001;
  }

  nav {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #161616;
    width: 70%;
    border-left: 3px solid #058acc;
    border-bottom: 3px solid #058acc;
    border-bottom-left-radius: 1rem;
    padding: 2rem 3rem;
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);

    /* Animasyon başlangıcı */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
  }

  nav.active {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
  }

  nav a {
    display: block;
    margin: 1.5rem 0;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  nav a:hover,
  nav a.active {
    color: #058acc;
    padding-left: 0.5rem;
    border-bottom: 2px solid #058acc;
  }

  .number {
    font-size: 1.6rem;
    color: #058acc;
    margin-top: 1rem;
  }
}

section{
    min-height: 100vh;
    padding: 5rem 9% 5rem;
}

.home{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    background-color: black;
}

.home .home-content h1{
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
}

span{
    color: #058acc;
}

.home-content h3{
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.home-content p{
    font-size: 1.6rem;
}

.home-img{
    border-radius: 50%;
}

.home-img img{
    position: relative;
    width: 32vw;
    border-radius: 50%;
    box-shadow: 0 0 25px solid #058acc;
    cursor: pointer;
    transition: 0.2s linear;
}

.home-img img:hover{
    font-size: 1.8rem;
    font-weight: 500;
}

.social-icons a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: transparent;
    border: 0.2rem solid #058acc;
    font-size: 2rem;
    border-radius: 50%;
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.3s ease;
    color: #058acc;
}

.social-icons a:hover{
    color: black;
    transform: scale(1.3) translateY(-5px);
    background-color: #058acc;
    box-shadow: 0  0 25px #058acc;
}

.btn{
    display: inline-block;
    padding: 1rem 2.8rem;
    background-color: black;
    border-radius: 4rem;
    font-size: 1.6rem;
    color: #058acc;
    letter-spacing: 0.3rem;
    font-weight: 600;
    border: 2px solid #058acc;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn:hover{
    transform: scale3d(1.03);
    background-color: #058acc;
    color: black;
    box-shadow: 0 0 25px #058acc;
}

.typing-text{
    font-size: 34px;
    font-weight: 600;
    min-width: 280px;
}

.typing-text span{
    position: relative;
}

.typing-text span::before{
    content: "Dork Web Yazılım";
    color: #058acc;
    animation: words 20s infinite;
}

.typing-text span::after{
    content: "";
    background-color: black;
    position: absolute;
    width: calc(100% + 8px);
    height: 100%;
    border-left: 3px solid black;
    right: -8;
    animation: cursor 0.6s infinite;
}


.services-section {
  padding: 5rem 9%;
  background-color: #111;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-section h2 {
  font-size: 3.5rem;
  margin-bottom: 3rem;
  color: #058acc;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background-color: #222;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(5, 138, 204, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  background-color: #058acc;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 25px #058acc;
}

.service-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #058acc;
  transition: color 0.3s ease;
}

.service-card:hover .service-icon {
  color: #fff;
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #ddd;
}

.about-section {
    background-color: #000; /* siyah arka plan */
    padding: 80px 20px;
    color: #fff; /* beyaz metin */
  }

  .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

.about-section {
    background: #161616;
}


  .about-section h2 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #058acc; 
  }

  .about-section p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #fff;
  }


.container2 {
    width: 100%;
    min-height: 100vh;
    background: rgba(19, 19, 19, 0.2);
}

.container2 h2 {
    color: #058acc;
    font-size: 32px;
    padding: 50px 0px;
    text-align: center;
}


.pricing-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .card {
      background: rgba(77, 76, 76, 0.2);
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.08);
      transition: 0.3s;
      text-align: center;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    }

    .plan-title {
      font-size: 1.4rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #faf9f9;
    }

    .price {
      font-size: 2.2rem;
      color: #007BFF;
      margin-bottom: 20px;
    }

    .features {
      list-style: none;
      margin-bottom: 25px;
    }

    .features li {
      padding: 8px 0;
      color: #fff;
    }

    .btn {
      display: inline-block;
      padding: 12px 24px;
      background: #007BFF;
      color: #fff;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 500;
      transition: background 0.3s;
    }

    .btn:hover {
      background: #0056b3;
    }


.fiyat {
    font-size: 6rem;
    padding: 15px;
}

.number {
    color: #007BFF;
}


.footer {
  background-color: #111;
  color: #eee;
  padding: 40px 20px 20px !important;
  font-family: sans-serif;
}
.footer-container {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  max-width: 1200px !important;
  margin: auto !important;
}


.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 250px !important;
  margin: 10px !important;
}
.footer-links ul {
  list-style: none;
  padding: 0 !important;
}
.footer-links li {
  margin: 8px 0 !important;
}
.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 1.4rem !important;
}
.footer-links h3 {
    font-size: 1.4rem;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  text-align: center !important;
  padding-top: 20px !important;
  font-size: 14px !important;
  color: #aaa;
  border-top: 1px solid #333 !important;
}

.baslikfooter {
    font-size: 5rem !important;
}

.footer-contact {
    font-size: 2.2rem !important;
}




@keyframes cursor{
    to{
        border-left: 3px solid #058acc;
    }
}

@keyframes words{
    0%, 20%{
        content: "Dork Web Yazılım";
    }
    21%, 40%{
        content: "Dork Web Yazılım";
    }
    41%, 60%{
        content: "Dork Web Yazılım";
    }
    61%, 80%{
        content: "Dork Web Yazılım";
    }
    81%, 100%{
        content: "Dork Web Yazılım";
    }
}

@media (max-width: 1000px){
    .home{
        gap: 4rem;
    }
}

@media(max-width:995px){
    .home{
        flex-direction: column;
        margin: 5rem 4rem;
    }


    .home .home-content h3{
        font-size: 2.5rem;
    }

    .home-content h1{
        font-size: 5rem;
    }

    .home-img img{
        width: 70vw;
        margin-top: 4rem;
    }
}

.contact-container {
      max-width: 900px;
      margin: 50px auto;
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    h2 {
      text-align: center;
      margin-bottom: 30px;
      color: #007BFF;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    input, textarea {
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 16px;
      width: 100%;
      resize: vertical;
    }

    button {
      background-color: #007BFF;
      color: white;
      padding: 12px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    button:hover {
      background-color: #0056b3;
    }

    .contact-info {
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      color: #333;
    }

    .contact-info i {
      color: #007BFF;
      margin-right: 10px;
    }

    @media (max-width: 600px) {
      .contact-container {
        margin: 20px;
        padding: 20px;
      }
    }



.baslik-iletisim {
    position: relative;
    overflow: hidden;
    background-image: url(vimal-s-ZhVUAUc8V4s-unsplash.jpg);
    text-align: center;
    background-size: cover;
    background-position: center;
    justify-content: center;
    height: 80vh;
}

.baslik-iletisim .yazi {
  position: relative;
  z-index: 2; /* overlay'nin üstünde */
  color: white;
  text-align: center;
}

.baslik-iletisim h1 {
    font-size: 9rem;
    text-align: center;
    justify-content: center;
    margin-top: 80px;
}

.baslik-iletisim::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5); /* Karartma */
}

.baslik-iletisim .yazi {
  position: relative;
  z-index: 1;
}

.baslik-iletisim i {
    font-size: 3rem;
}

.baslik-iletisim p {
    font-size: 2rem;
    margin-top: 10px;
}

@media (max-width: 768px) {
  .baslik-iletisim h1 {
    font-size: 4rem;
  }

  .baslik-iletisim p {
    font-size: 1.6rem;
  }

  .baslik-iletisim i {
    font-size: 2rem;
  }

  .map iframe {
    width: 100% !important;
    height: 300px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav a {
    margin-left: 0;
    margin-bottom: 1rem;
  }

  .number {
    font-size: 1.4rem;
  }
}


.contact-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 2rem 1rem;
  background-color: #111;
}

.contact-card {
  background-color: #1e1e1e;
  border: 1px solid #058acc;
  color: #fff;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  width: 420px;
  height: 150px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card i {
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
  color: #058acc;
}

.contact-card h3 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.contact-card p {
  font-size: 2rem;
  margin: 0;
  color: #ccc;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px #058acc;
}

