@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;
}

img {
    max-width: 100%;
  height: auto;
  display: block;
}

html{
    font-size: 62.5%;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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 ;
}

.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;
}

.dork {
  color: #007BFF;
}

.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 {
   

    padding: 80px 20px;
    color: #fff; /* beyaz metin */
  }

  .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }




  .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;
  font-family: sans-serif;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
  margin: 10px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin: 8px 0;
}
.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 1.4rem;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid #333;
}

.baslikfooter {
    font-size: 5rem;
}

.footer-contact {
    font-size: 1.6rem;
}

.wordpress {
    font-size: 5.7rem;
    color: #007BFF;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

.whatsapp-button {
  position: fixed;
  box-sizing: border-box;
  max-width: 100%;
  bottom: 16px;
  right: 16px;
  background-color: #25D366;
  color: white;
  font-size: 2.2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px #25D366;
}

@media (max-width: 375px) {
  .whatsapp-button {
    bottom: 12px;
    right: 12px;
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }
}



@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;
    }
}



.container-about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 30px;
  color: #00aaff;
}

.intro {
  text-align: center;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* Kartlar */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background-color: #1a1d23;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h2 {
  color: #00aaff;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.card p {
  font-size: 1.5rem;
  line-height: 1.6;
}