/* GENEL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0f0f16;
  color: #f1f1f1;
  line-height: 1.8;
}

a {
  text-decoration: none;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #181820;
  padding: 20px 40px;
  border-bottom: 2px solid #6a5acd;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}

.menu a {
  margin-left: 25px;
  color: #aaa;
  transition: color 0.3s;
}
.menu a:hover,
.menu a.active {
  color: #fff;
}

/* HERO */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: url('valorant-bg.jpg') no-repeat center/cover;
  border-bottom: 2px solid #6a5acd;
}

.hero h1 {
  font-size: 46px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px #000;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero .btn {
  background: linear-gradient(90deg, #6a5acd, #00d4ff);
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 18px;
  transition: 0.3s;
  border: none;
}

.hero .btn:hover {
  opacity: 0.8;
}

/* KARTLAR */
.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.card {
  background: #1a1a22;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.card p {
  font-size: 16px;
  color: #bbb;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 25px;
  background: #181820;
  font-size: 16px;
  color: #999;
  margin-top: 40px;
}


.iletisim{
    color: #aaa;
    font-size: 16px;
    position: relative;
    top: 0px;
    left: 10px;
    background: none;
    border: none;
}


.iletisim-menu {
    position: absolute;
    top: 90px;
    right: 5px;
    background-color: #2b2b2b;
    border: 1px solid #6a5acd;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.iletisim-menu a {
    padding: 10px 15px;
    color: #f0f0f0;
    text-decoration: none;
    border-bottom: 1px solid #444;
}

.iletisim-menu a:last-child {
    border-bottom: none;
}

.iletisim-menu a:hover {
    background-color: #ff4655;
    color: #fff;
}



/* Hamburger Menü */
.menu-btn {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: #1a1a1a;
    width: 200px;
    padding: 15px;
    border-left: 2px solid #ff4655;
  }

  .menu.show {
    display: flex;
  }

  .menu a,
  .menu .iletisim {
    padding: 10px;
    text-align: center;
    display: block;
    color: white;
    text-decoration: none;
  }

  .menu a:hover,
  .menu .iletisim:hover {
    color: #ff4655;
  }
}