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

body {
  font-family: 'Poppins', sans-serif;
  color: #eee;
  background: #111;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: saturate(180%) blur(10px);
  z-index: 1000;
  padding: 15px 0;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo {
  font-weight: 600;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  user-select: none;
}

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

.nav-links li a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.nav-links li a.active,
.nav-links li a:hover {
  color: #f95c78;
  font-weight: 700;
}

/* Sosyal ikonlar üstte */
.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: #ccc;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f95c78;
}

/* Hero Bölüm */
.hero-section {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #fff;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.btn-primary {
  background: #f95c78;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(249, 92, 120, 0.5);
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #e24461;
  box-shadow: 0 10px 25px rgba(226, 68, 97, 0.6);
}

/* Bölümler */
.section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2.7rem;
  font-weight: 700;
  color: #f95c78;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 2px;
}

/* About */
.about-section p {
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Music Grid */
.music-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.music-item {
  background: #222;
  border-radius: 12px;
  overflow: hidden;
  max-width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.3s ease;
  text-align: center;
  color: #fff;
}

.music-item img {
  width: 100%;
  display: block;
  border-bottom: 3px solid #f95c78;
  user-select: none;
}

.music-item h3 {
  padding: 20px 15px;
  font-size: 1.3rem;
}

.music-item:hover {
  transform: scale(1.06);
}

/* Contact */
.contact-section p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px auto;
  color: #ddd;
}

/* Contact Sosyal ikonlar */
.contact-social-icons {
  justify-content: center;
  gap: 35px;
}

.contact-social-icons a {
  font-size: 2rem;
}

/* Footer */
footer {
  background: #111;
  color: #666;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
  user-select: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .music-grid {
    gap: 20px;
  }

  .music-item {
    max-width: 90vw;
  }

  .navbar-container {
    flex-wrap: wrap;
  }

  .nav-links {
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
