/* =============================================
   YANLIS NUMARA — Ana Stil Dosyası
   yanlisnumara.com
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lora:ital,wght@0,400;0,600;1,400;1,600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --bg: #080706;
  --surface: #110f0d;
  --surface2: #1a1714;
  --border: #2a2520;
  --border2: #3a342e;
  --rust: #c8441a;
  --rust-dim: #7a2a10;
  --rust-pale: #3a1a0a;
  --bone: #e2d8cc;
  --muted: #7a6e64;
  --faint: #3a3228;
  --white: #f0e8de;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Lora', serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(8,7,6,0.92);
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--white);
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--rust); }

.nav-links {
  display: flex; gap: 40px; list-style: none;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--rust);
  transition: width 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--bone); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--bone);
  transition: all 0.3s;
}

/* ---- PAGE WRAPPER ---- */
.page { padding-top: 64px; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 80px 48px;
  position: relative; overflow: hidden;
}

.hero-line {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent calc(25% - 0.5px),
      rgba(255,255,255,0.015) calc(25% - 0.5px),
      rgba(255,255,255,0.015) 25%
    );
  pointer-events: none;
}

.hero-kicker {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
  opacity: 0; animation: rise 0.7s 0.1s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 16vw, 200px);
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 12px;
  opacity: 0; animation: rise 0.7s 0.25s forwards;
}

.hero-title-sub {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 100px);
  line-height: 0.88;
  color: var(--rust);
  margin-bottom: 40px;
  opacity: 0; animation: rise 0.7s 0.4s forwards;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.8;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 48px;
  opacity: 0; animation: rise 0.7s 0.55s forwards;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: rise 0.7s 0.7s forwards;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--rust); color: var(--white);
  border-color: var(--rust);
}
.btn-primary:hover { background: transparent; color: var(--rust); }
.btn-outline {
  background: transparent; color: var(--muted);
  border-color: var(--border2);
}
.btn-outline:hover { color: var(--bone); border-color: var(--bone); }

/* ---- SECTION ---- */
.section { padding: 100px 48px; max-width: 1200px; margin: 0 auto; }
.section-full { padding: 100px 48px; }

.section-header { margin-bottom: 60px; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--rust); display: block; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  color: var(--white);
}
.section-title em {
  font-style: italic;
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 0.7em;
}

/* ---- DIVIDER ---- */
.divider {
  width: 100%; height: 1px;
  background: var(--border);
}

/* ---- RELEASE CARD ---- */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
}

.release-card {
  background: var(--surface);
  padding: 28px;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.release-card:hover { background: var(--surface2); }
.release-card::before {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 2px; height: 0;
  background: var(--rust);
  transition: height 0.3s;
}
.release-card:hover::before { height: 100%; }

.release-cover {
  aspect-ratio: 1;
  background: var(--surface2);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}
.release-cover img { width: 100%; height: 100%; object-fit: cover; }
.release-cover-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 48px; color: var(--faint);
  background: linear-gradient(135deg, var(--surface2), var(--surface));
}

.release-type {
  font-family: var(--font-mono);
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--rust); margin-bottom: 8px;
}
.release-title {
  font-family: var(--font-body);
  font-size: 18px; font-weight: 600;
  color: var(--white); margin-bottom: 4px;
}
.release-year {
  font-family: var(--font-mono);
  font-size: 10px; color: var(--muted);
}

/* ---- TRACK LIST ---- */
.track-list { display: flex; flex-direction: column; }
.track-item {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 16px; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.15s;
  cursor: pointer;
}
.track-item:hover { padding-left: 8px; }
.track-item:hover .track-name { color: var(--rust); }
.track-num {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--faint); text-align: right;
}
.track-name {
  font-family: var(--font-body);
  font-size: 16px; color: var(--bone);
  transition: color 0.15s;
}
.track-duration {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--muted);
}
.track-badge {
  font-family: var(--font-mono);
  font-size: 7px; letter-spacing: 2px; text-transform: uppercase;
  padding: 3px 8px; border: 1px solid var(--rust-dim);
  color: var(--rust); margin-left: 12px;
}

/* ---- BLOG CARDS ---- */
.blog-list { display: flex; flex-direction: column; gap: 0; }
.blog-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px; align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
}
.blog-item:hover .blog-title { color: var(--rust); }
.blog-category {
  font-family: var(--font-mono);
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--rust); margin-bottom: 8px; display: block;
}
.blog-title {
  font-family: var(--font-body);
  font-size: 20px; font-weight: 600;
  color: var(--white); margin-bottom: 8px;
  transition: color 0.2s; line-height: 1.4;
}
.blog-excerpt {
  font-size: 13px; color: var(--muted); line-height: 1.7;
  max-width: 600px;
}
.blog-date {
  font-family: var(--font-mono);
  font-size: 10px; color: var(--muted);
  white-space: nowrap;
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.about-visual {
  position: sticky; top: 84px;
}
.about-portrait {
  aspect-ratio: 3/4;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 24px;
}
.portrait-lines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(255,255,255,0.012) 3px, rgba(255,255,255,0.012) 4px
  );
}
.portrait-text {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 120px; line-height: 0.85;
  color: var(--rust); opacity: 0.12;
  position: absolute; top: 20px; left: 20px;
}
.portrait-caption {
  position: relative; z-index: 1;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.95; color: var(--white);
  margin-bottom: 32px;
}
.about-text h2 em {
  font-family: var(--font-body);
  font-style: italic; color: var(--rust);
}
.about-text p {
  font-size: 15px; line-height: 1.9; color: var(--muted);
  margin-bottom: 20px;
}
.about-text p strong { color: var(--bone); }
.about-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 32px;
}
.about-tag {
  font-family: var(--font-mono);
  font-size: 8px; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--border2);
  padding: 6px 12px; color: var(--muted);
  transition: all 0.2s;
}
.about-tag:hover { border-color: var(--rust); color: var(--rust); }
.about-tag.hl { border-color: var(--rust-dim); color: var(--rust); }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.social-links { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.social-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
  transition: all 0.2s;
}
.social-link:hover { color: var(--bone); padding-left: 8px; }
.social-link span { color: var(--rust); }

.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-input, .form-textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.5px;
  color: var(--bone); outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--faint); }
.form-input:focus, .form-textarea:focus { border-color: var(--rust); }
.form-textarea { resize: vertical; min-height: 140px; }

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px; letter-spacing: 3px;
  color: var(--muted);
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--faint);
}
.footer-links {
  display: flex; gap: 24px; list-style: none;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--faint); transition: color 0.2s;
}
.footer-links a:hover { color: var(--rust); }

/* ---- ANIMATIONS ---- */
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 24px;
  }
  .nav-hamburger { display: flex; }
  .hero { padding: 60px 20px; min-height: 90vh; }
  .section { padding: 60px 20px; }
  .section-full { padding: 60px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; }
  .releases-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .releases-grid { grid-template-columns: 1fr; }
  .blog-item { grid-template-columns: 1fr; }
  .hero-title { font-size: 64px; }
  .hero-title-sub { font-size: 36px; }
}
