/* ============================================
   kursaddeniz.com — Shared Styles
   Aesthetic: Warm dark elegance / jazz club
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ── Tokens ── */
:root {
  --bg:        #0d0f14;
  --surface:   #151821;
  --card:      #1a1e28;
  --text:      #e4dfd7;
  --text-muted:#8a857e;
  --accent:    #c9a54e;
  --accent-h:  #dbb95c;
  --border:    rgba(255,255,255,0.07);
  --radius:    10px;
  --max-w:     920px;
  --serif:     'DM Serif Display', Georgia, serif;
  --sans:      'DM Sans', system-ui, -apple-system, sans-serif;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ── Grain overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.35;
}

/* ── Typography ── */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.muted { color: var(--text-muted); }
.accent { color: var(--accent); }

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,165,78,0.3);
  transition: border-color var(--transition), color var(--transition);
}
a:hover {
  color: var(--accent-h);
  border-bottom-color: var(--accent-h);
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}
.section + .section {
  border-top: 1px solid var(--border);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13,15,20,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-brand {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text) !important;
  border: none !important;
  letter-spacing: 0.02em;
}
.nav-brand:hover { color: var(--accent) !important; }
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: rgba(201,165,78,0.08);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 60px; /* nav height */
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--bg) 0%,
    rgba(13,15,20,0.7) 35%,
    rgba(13,15,20,0.2) 65%,
    rgba(13,15,20,0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 64px;
  width: 100%;
}
.hero h1 {
  margin-bottom: 12px;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 560px;
}

/* ── Page hero (smaller, for inner pages) ── */
.page-hero {
  padding: 140px 0 48px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  margin-bottom: 8px;
}
.page-hero p {
  color: var(--text-muted);
  max-width: 600px;
}

/* ── Cards ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover {
  border-color: rgba(201,165,78,0.2);
  transform: translateY(-2px);
}
.card h3 {
  color: var(--accent);
}

.grid-2 {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.grid-3 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

/* ── Photo grid ── */
.photo-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.photo-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.photo-grid img:hover {
  transform: scale(1.02);
}

/* ── Inline links list ── */
.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.link-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  transition: all var(--transition);
}
.link-list a:hover {
  border-color: rgba(201,165,78,0.3);
  color: var(--accent);
  background: rgba(201,165,78,0.05);
}

/* ── Tags / Chips ── */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* ── Concert list ── */
.concert-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.concert-item:last-child { border-bottom: none; }
.concert-date {
  min-width: 64px;
  text-align: center;
  flex-shrink: 0;
}
.concert-date .day {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--accent);
}
.concert-date .month {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.concert-info h3 {
  font-family: var(--sans);
  font-weight: 500;
  margin-bottom: 4px;
}
.concert-info .venue {
  color: var(--text-muted);
  font-size: 14px;
}

.concert-highlight {
  background: var(--card);
  border: 1px solid rgba(201,165,78,0.15);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 12px;
}

/* ── Spotify embed ── */
.spotify-embed {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 16px;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  margin-top: 48px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-text {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 16px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  border: none;
}
.footer-links a:hover {
  color: var(--accent);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .section { padding: 48px 0; }
  .page-hero { padding: 110px 0 36px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(13,15,20,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 16px;
    width: 100%;
    border-radius: 8px;
  }

  .concert-item { flex-direction: column; gap: 8px; }
  .concert-date { display: flex; gap: 8px; align-items: baseline; }
  .concert-date .day { font-size: 1.3rem; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero { min-height: 60vh; }
  .hero-content { padding: 32px 20px 48px; }
}
