/* ——— GENEL ——— */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background-color: #fff;
  color: #222;
  overflow-x: hidden;
}

/* ——— NAVBAR ——— */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.logo {
  height: 38px;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links li a:hover {
  color: #e91e63;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

#languageSwitcher {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 6px 10px;
  background: white;
  cursor: pointer;
}

.signup-btn {
  background: #e91e63;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.signup-btn:hover {
  background: #c2185b;
}

/* ——— HERO ——— */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  margin-top: 60px;
}

.hero-logo {
  width: 110px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.app-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.app-btn:hover {
  background: white;
}

/* ——— Hamburger Menü ——— */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
  z-index: 2000; /* Navbar üstünde kalır */
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background: #e91e63; /* Pembe ikon */
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    background: rgba(255, 255, 255, 0.97);
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 25px 0;
    transform: translateY(-250%);
    transition: transform 0.3s ease-in-out;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Navbar transparan mobilde */
  .navbar {
    background: transparent;
    box-shadow: none;
    padding: 15px 25px;
  }

  .nav-right {
    display: none;
  }
}


  /* Menü açıldığında X dönüşümü */
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .buttons {
    flex-direction: column;
  }

  .app-btn {
    width: 180px;
  }
}
