/* === GENEL === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #140E07;
  --bg2:       #1E1509;
  --card:      #2A1E10;
  --border:    #4A3520;
  --gold:      #C8A951;
  --gold-dim:  #8B6914;
  --green:     #4A7C59;
  --cream:     #F5E6C8;
  --muted:     #A89070;
  --font:      'Georgia', serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font);
  line-height: 1.7;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

/* === NAV === */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 14, 7, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo span { color: var(--gold); }

.logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0.9);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul a {
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--gold); text-decoration: none; }

/* === HERO === */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(to bottom, rgba(20,14,7,0.55), rgba(20,14,7,0.92)),
    url('img/hero.jpeg') center center / cover no-repeat;
  padding: 4rem 2rem;
}

.hero-inner h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--cream);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-inner p {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.btn-hero {
  display: inline-block;
  padding: 0.9rem 3rem;
  background: var(--gold-dim);
  color: var(--cream);
  border-radius: 4px;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-hero:hover { background: var(--gold); text-decoration: none; }

/* === SECTION === */
.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-alt {
  max-width: 100%;
  background: var(--bg2);
  padding: 5rem 2rem;
}
.section-alt > * { max-width: 1000px; margin-left: auto; margin-right: auto; }

h2 {
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

/* === MÜZİK === */
.tracks { display: flex; flex-direction: column; gap: 1rem; }

.track {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transition: border-color 0.2s;
}
.track:hover { border-color: var(--gold-dim); }

.track-info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.track-num {
  font-size: 1.5rem;
  color: var(--border);
  font-weight: bold;
  min-width: 2rem;
}

.track-info strong {
  display: block;
  color: var(--cream);
  font-size: 1.05rem;
}
.track-info span {
  font-size: 0.85rem;
  color: var(--muted);
}

audio {
  height: 36px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

/* === ŞARKI SÖZLERİ === */
.lyrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.lyric-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
}

.lyric-card h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}

.lyric-text p {
  color: var(--cream);
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 2;
}

/* === HAKKINDA === */
.about-inner { max-width: 680px; }

.about-img {
  width: 100%;
  max-width: 420px;
  border-radius: 6px;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  display: block;
  filter: sepia(20%) brightness(0.9);
}

.about-text p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: var(--cream);
}

blockquote {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  font-style: italic;
  font-size: 1.1rem;
}

/* === SOSYAL === */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.social-btn {
  padding: 0.7rem 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--cream);
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }

.contact-mail {
  max-width: 1000px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
}

/* === FOOTER === */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

/* === MOBİL === */
@media (max-width: 600px) {
  .nav-inner { flex-direction: column; gap: 0.8rem; }
  nav ul { gap: 1rem; }
  .track { flex-direction: column; align-items: flex-start; }
  audio { width: 100%; }
}
