* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fafafa;
  color: #1c1c1e;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 40px;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;

}

.logo img{
  width: 200px;
  height: 100px;
}

.logo span {
  font-size: 22px;
  font-weight: 600;
  color: #25D366;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: #1c1c1e;
  transition: all 0.2s ease-in-out;
  position: relative;
}

.nav-links a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #25D366;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.nav-links a:hover::after {
  width: 100%;
}

.actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-outline, .btn-filled {
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-outline {
  border: 2px solid #1c1c1e;
  background-color: transparent;
  color: #1c1c1e;
}

.btn-outline:hover {
  background-color: #f2f2f2;
}

.btn-filled {
  background: linear-gradient(90deg, #25D366, #128C7E);
  color: white;
  border: none;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.4);
}

.btn-filled:hover {
  opacity: 0.9;
}

.menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #1c1c1e;
}

/* Mobil responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    animation: fadeSlide 0.3s ease forwards;
  }

  .nav-links.show {
    display: block;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 16px;
  }

  .actions button {
    display: none;
  }

  .menu-icon {
    display: block;
  }
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: saturate(180%) blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.content {
  padding: 80px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.content section {
  margin-bottom: 100px;
}

.content h1, .content h2 {
  font-weight: 600;
  font-size: 32px;
  color: #202124;
  margin-bottom: 15px;
}

.content p {
  font-size: 18px;
  line-height: 1.6;
  color: #4a4a4a;
}

/* Dropdown Menü */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
  z-index: 999;
  min-width: 180px;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li a {
  color: #1c1c1e;
  font-size: 15px;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}

.dropdown-menu li a:hover {
  background-color: #f5f5f5;
}

/* Hover ile açma */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobilde tıklamayla açmak için */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    padding-left: 20px;
  }

  .dropdown.show .dropdown-menu {
    display: block;
  }
}

.dropdown-menu {
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
}


  .dropdown.show .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
  }
}



  .dropdown.show .dropdown-menu {
    display: block; /* Menüyü açtığında göster */
    opacity: 1;
    pointer-events: auto;
    padding-left: 20px; /* İçeriği biraz sağa kaydırmak için */
  }
}

@media (max-width: 768px) {
  .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    padding-left: 20px;
    margin-top: 0 !important;
  }

   .dropdown-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .dropdown > a::after {
    display: none; /* Ok simgesini kaldırır */
  }

  .dropdown > a {
    pointer-events: none; /* Tıklanamaz olur, boşluk açılmaz */
  }
}

