/* NET-WORK TALENT — Redesign 2025 */

/* === VARIABLES === */
:root {
  --bg:     #0d0d0d;
  --bg2:    #131313;
  --bg3:    #1a1a1a;
  --bg4:    #222;
  --text:   #f0f0f0;
  --text2:  #888;
  --text3:  #444;
  --accent: #c8c8c8;
  --accentH:#ffffff;
  --white:  #fff;
  --border: rgba(255,255,255,0.07);
  --bord2:  rgba(255,255,255,0.14);
  --radius: 4px;
  --rad2:   8px;
  --trans:  all 0.22s ease;
  --font:   'Montserrat', sans-serif;
  /* Legacy aliases so old references still work */
  --gold:        var(--accent);
  --gold-light:  #e0e0e0;
  --gold-dark:   #999;
  --gold-gradient: var(--accent);
  --font-main:   var(--font);
  --font-display: var(--font);
  --black:  #0d0d0d;
  --dark:   #131313;
  --dark2:  #1a1a1a;
  --dark3:  #222;
  --gray:   #888;
  --light-gray: #aaa;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  background: transparent;
  transition: var(--trans);
}
.navbar.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.nav-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 11px; }
.logo-monogram {
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-text-group { display: flex; flex-direction: column; gap: 2px; }
.logo-title {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.logo-tagline {
  font-size: 0.58rem;
  letter-spacing: 1.5px;
  color: var(--text2);
  line-height: 1;
}
.nav-menu { display: flex; align-items: center; gap: 0; margin-left: auto; }
.nav-link {
  display: block;
  padding: 0.45rem 0.65rem;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text2);
  transition: var(--trans);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-cta {
  margin-left: 0.5rem;
  padding: 0.45rem 1.2rem !important;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 0.7rem !important;
  letter-spacing: 1.5px !important;
}
.nav-cta:hover { background: var(--accentH) !important; color: var(--white) !important; }
.nav-cta.active { background: var(--accentH) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-gold {
  background: var(--accent);
  color: var(--white);
}
.btn-gold:hover { background: var(--accentH); transform: translateY(-1px); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--bord2);
}
.btn-outline:hover { border-color: var(--text); }
.btn-lg { padding: 0.9rem 2.2rem; font-size: 0.78rem; }
.btn-full { width: 100%; }

/* === SECTIONS === */
.section { padding: 5.5rem 0; }
.section-container { max-width: 1360px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: var(--accent);
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.section-subtitle { color: var(--text2); font-size: 0.88rem; }
.section-cta { text-align: center; margin-top: 3rem; }

/* === HERO — TAM EKRAN SİNEMATİK === */
.hero-full {
  position: relative;
  height: 55vh;
  min-height: 400px;
  overflow: hidden;
}
.hero-full-bg { position: absolute; inset: 0; z-index: 0; }
.hero-full-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(65%) brightness(0.38);
}
.hero-full-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.38) 55%, rgba(0,0,0,0.08) 100%);
  z-index: 1;
}
/* Hero content */
.hero-full-content {
  position: absolute;
  top: 90px;
  left: 3.5rem;
  z-index: 2;
  max-width: 580px;
}
.hero-full-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.hero-full-eyebrow::before { content: ''; width: 22px; height: 1px; background: rgba(255,255,255,0.4); flex-shrink: 0; }
.hero-full-title {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.hero-full-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.82;
  margin-bottom: 0;
  max-width: 480px;
}
.hero-full-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.25rem;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text2);
  border-bottom: 1px solid rgba(255,255,255,0.22);
  padding-bottom: 3px;
  transition: var(--trans);
  width: fit-content;
  cursor: pointer;
  background: none;
}
.hero-full-btn:hover { color: var(--white); border-color: var(--white); }
/* Stats bar */
.hero-stats-bar {
  position: absolute;
  bottom: 2.5rem;
  left: 4rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-lbl {
  font-size: 0.53rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text3);
}
.hero-stat-val {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text2);
}
.hero-stat-sep { color: var(--text3); font-size: 0.9rem; }

/* === REFERANSLARIMIZ — HERO'NUN ALTINDA === */
.feat-section {
  background: var(--bg);
  padding: 2rem 0 3rem;
  margin-bottom: 0;
  border-bottom: 3px solid var(--bg3);
}
.feat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem 1.5rem;
}
.feat-header-left { }
.feat-title {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text2);
  line-height: 1;
}
.feat-viewall {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--trans);
  white-space: nowrap;
}
.feat-viewall:hover { color: var(--text2); }
.feat-artists-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.feat-artist-card {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--bg3);
}
.feat-artist-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(80%) brightness(0.75);
  transition: transform 0.5s, filter 0.3s;
}
.feat-artist-card:hover img { transform: scale(1.04); filter: grayscale(15%) brightness(1); }
.feat-artist-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
}
.feat-artist-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.feat-artist-genre {
  display: block;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text2);
}
.feat-artist-avatar {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text3);
  background: var(--bg3);
  letter-spacing: -3px;
}

/* stat-number alias */
.stat-number { display: block; }

/* === ABOUT MİNİ BÖLÜM — HERO STİLİ === */
.about-mini {
  position: relative;
  height: 42vh;
  min-height: 320px;
  overflow: hidden;
}
.about-mini-bg {
  position: absolute;
  inset: 0;
}
.about-mini-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) brightness(0.32);
}
.about-mini-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
}
.about-mini-content {
  position: absolute;
  top: 50%;
  left: 3.5rem;
  right: 3.5rem;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.about-mini-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  max-width: 640px;
}
.about-mini-btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.about-mini-btn:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* === ETKİNLİKLER — HERO STİLİ === */
.ev-hero-section {
  background: var(--bg);
}
.ev-hero-label {
  padding: 3rem 3.5rem 1.5rem;
}
.ev-hero-eyebrow {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 0.4rem;
}
.ev-hero-heading {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--text2);
}
.ev-hero-card {
  position: relative;
  height: 42vh;
  min-height: 260px;
  overflow: hidden;
  background: var(--bg3);
}
.ev-hero-bg { position: absolute; inset: 0; z-index: 0; }
.ev-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(65%) brightness(0.38);
}
.ev-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}
.ev-hero-content {
  position: absolute;
  bottom: 2.5rem;
  left: 3.5rem;
  z-index: 2;
  max-width: 600px;
}
.ev-hero-cat {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 0.5rem;
}
.ev-hero-title {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.85rem;
}
.ev-hero-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ev-hero-meta span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.48);
  display: flex;
  align-items: center;
  gap: 5px;
}
.ev-hero-cta {
  padding: 2rem 3.5rem;
}

/* === ABOUT PAGE TEXT BLOCK === */
.about-text-block { max-width: 780px; }
.about-body p {
  font-size: 0.95rem; color: var(--text2); line-height: 1.95;
  margin-bottom: 1.25rem;
}
.about-body p:last-child { margin-bottom: 0; }

/* === ABOUT PREVIEW (Homepage) === */
.about-preview { background: var(--bg); }
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-preview-content .section-eyebrow {
  justify-content: flex-start;
}
.about-preview-content .section-eyebrow::before { display: none; }
.about-preview-content .section-eyebrow::after { display: none; }
.about-preview-content .section-title { text-align: left; }
.about-text { color: var(--text2); font-size: 0.9rem; margin-bottom: 1.25rem; line-height: 1.85; }
.about-preview-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rad2);
  padding: 1.5rem;
  transition: var(--trans);
}
.feature-card:hover { border-color: var(--bord2); }
.feature-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: rgba(230,57,70,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}
.feature-card p { font-size: 0.8rem; color: var(--text2); line-height: 1.7; }

/* === FEATURED ARTISTS SECTION (Homepage) === */
.artists-section { background: var(--bg2); }
.featured-artists-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.fa-card { cursor: default; }
.fa-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--rad2);
  overflow: hidden;
  background: var(--bg3);
  margin-bottom: 0.75rem;
}
.fa-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  filter: brightness(0.85) grayscale(10%);
  transition: transform 0.5s, filter 0.3s;
}
.fa-card:hover .fa-img-wrap img { transform: scale(1.05); filter: brightness(1) grayscale(0%); }
.fa-avatar {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text3);
  background: var(--bg3);
}
.fa-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 1rem 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fa-genre { color: var(--accent); font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; }
.fa-country { color: var(--text2); font-size: 0.7rem; }
.fa-name { font-size: 0.88rem; font-weight: 600; color: var(--text); text-align: center; }

/* === EVENT CARDS === */
.events-section { background: var(--bg); }
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.event-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rad2);
  overflow: hidden;
  transition: var(--trans);
}
.event-card:hover { border-color: var(--bord2); transform: translateY(-4px); }
.event-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg3);
}
.event-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.5s;
}
.event-card:hover .event-card-image img { transform: scale(1.04); }
.event-card-overlay {
  position: absolute; inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.75rem;
}
.event-category {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 4px 10px;
  border-radius: var(--radius);
}
.play-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--trans);
}
.play-btn:hover { background: var(--accent); border-color: var(--accent); }
.event-card-body { padding: 1.25rem 1.25rem 1.5rem; }
.event-date {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.event-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; line-height: 1.3; }
.event-location {
  font-size: 0.8rem;
  color: var(--text2);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.event-desc {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-artists {
  font-size: 0.75rem;
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

/* === FILTER BAR === */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.45rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text2);
  border: 1px solid var(--border);
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
  transition: var(--trans);
  font-family: var(--font);
}
.filter-btn:hover { border-color: var(--bord2); color: var(--text); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* === WHY SECTION === */
.why-section { background: var(--bg2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--rad2);
  background: var(--bg3);
  transition: var(--trans);
}
.why-card:hover { border-color: var(--bord2); }
.why-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text3);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.why-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.why-card p { font-size: 0.82rem; color: var(--text2); line-height: 1.75; }

/* === VIDEO SECTION === */
.video-section { background: var(--bg); }
.video-grid { display: grid; grid-template-columns: 1fr 380px; gap: 1.5rem; align-items: start; }
.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg3);
  border-radius: var(--rad2);
  overflow: hidden;
}
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-info { padding: 0.85rem 0 0; }
.video-info h3 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.video-info p { font-size: 0.82rem; color: var(--text2); }
.video-side { display: flex; flex-direction: column; gap: 0.85rem; }
.video-thumb {
  position: relative;
  cursor: pointer;
  border-radius: var(--rad2);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg3);
  border: 1px solid var(--border);
  transition: var(--trans);
}
.video-thumb:hover { border-color: var(--bord2); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); transition: var(--trans); }
.video-thumb:hover img { filter: brightness(0.8); }
.video-thumb-play {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  z-index: 1;
  transition: var(--trans);
}
.video-thumb-play i {
  width: 36px; height: 36px;
  background: rgba(230,57,70,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.video-thumb:hover .video-thumb-play i { background: var(--accent); }
.video-thumb-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.video-thumb-info h4 { font-size: 0.78rem; font-weight: 600; color: var(--white); }
.video-thumb-info span { font-size: 0.68rem; color: var(--text2); }

/* === VIDEO MODAL === */
.video-modal {
  display: none;
  position: fixed; inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.video-modal.open { display: flex; }
.video-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.93);
}
.video-modal-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1000px;
}
.video-modal-close {
  position: absolute;
  top: -44px; right: 0;
  font-size: 1.1rem;
  color: var(--text2);
  cursor: pointer;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}
.video-modal-close:hover { color: var(--accent); }
.video-modal-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--rad2);
  overflow: hidden;
}
.video-modal-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* === CTA SECTION === */
.cta-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}
.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-subtitle { font-size: 0.9rem; color: var(--text2); margin-bottom: 2.5rem; line-height: 1.7; }

/* === FOOTER === */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-container { max-width: 1360px; margin: 0 auto; padding: 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo-block { display: flex; align-items: center; gap: 10px; margin-bottom: 1.25rem; }
.footer-monogram { font-size: 1.2rem; font-weight: 900; color: var(--accent); letter-spacing: -0.5px; }
.footer-logo-text { display: flex; flex-direction: column; gap: 2px; }
.footer-logo-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.footer-logo-sub { font-size: 0.58rem; letter-spacing: 1px; color: var(--text2); line-height: 1; }
.footer-desc { font-size: 0.82rem; color: var(--text2); line-height: 1.8; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.5rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text2);
  transition: var(--trans);
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }
.social-links-large .social-link {
  width: auto;
  border-radius: var(--radius);
  padding: 0 1rem;
  gap: 8px;
  font-size: 0.8rem;
}
.social-links-large .social-link span { font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; }
.footer-heading {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 1.25rem;
}
.footer-links li + li { margin-top: 0.6rem; }
.footer-links a { font-size: 0.82rem; color: var(--text2); transition: var(--trans); }
.footer-links a:hover { color: var(--text); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--text2);
}
.footer-contact-list i { color: var(--accent); font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: var(--text2); transition: var(--trans); }
.footer-contact-list a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text3);
}
.footer-privacy { color: var(--text3); transition: var(--trans); }
.footer-privacy:hover { color: var(--text2); }

/* === PAGE HERO (Inner Pages) === */
.page-hero {
  position: relative;
  padding: 9rem 2rem 4rem;
  background: var(--bg2);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(230,57,70,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
}
.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.page-hero-subtitle { font-size: 0.9rem; color: var(--text2); }
.page-hero-content .section-eyebrow {
  justify-content: flex-start;
  margin-bottom: 0.75rem;
}
.page-hero-content .section-eyebrow::before,
.page-hero-content .section-eyebrow::after { display: none; }

/* === ABOUT PAGE === */
.story-section { background: var(--bg); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.story-content p { font-size: 0.88rem; color: var(--text2); line-height: 1.85; margin-bottom: 1.25rem; }
.story-content .section-eyebrow { justify-content: flex-start; }
.story-content .section-eyebrow::before,
.story-content .section-eyebrow::after { display: none; }
.story-content .section-title { text-align: left; margin-bottom: 1.5rem; }
.story-values { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.value-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.85rem; color: var(--text); }
.value-item i { color: var(--accent); font-size: 0.85rem; }
.story-stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--rad2);
  overflow: hidden;
}
.stat-panel-item {
  padding: 2rem;
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-panel-number { font-size: 2rem; font-weight: 900; color: var(--white); letter-spacing: -1px; }
.stat-panel-label { font-size: 0.7rem; color: var(--text2); }
.services-section { background: var(--bg2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  padding: 2rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--rad2);
  transition: var(--trans);
}
.service-card:hover { border-color: var(--bord2); }
.service-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: rgba(230,57,70,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.service-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.82rem; color: var(--text2); line-height: 1.75; }
.team-section { background: var(--bg); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
.team-card { cursor: default; }
.team-image {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--rad2);
  overflow: hidden;
  background: var(--bg3);
  margin-bottom: 1rem;
}
.team-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85) grayscale(10%); transition: var(--trans); }
.team-card:hover .team-image img { filter: brightness(1) grayscale(0%); }
.team-social {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  display: flex;
  gap: 8px;
  justify-content: center;
  transform: translateY(100%);
  transition: var(--trans);
}
.team-card:hover .team-social { transform: translateY(0); }
.team-social a {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--white);
  transition: var(--trans);
}
.team-social a:hover { background: var(--accent); border-color: var(--accent); }
.team-info h3 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.team-info p { font-size: 0.78rem; color: var(--text2); }

/* === CONTACT === */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 3rem;
}
.contact-info-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.contact-info-desc { font-size: 0.85rem; color: var(--text2); line-height: 1.8; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius);
  background: rgba(230,57,70,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 3px;
}
.contact-item-text span, .contact-item-text a { font-size: 0.85rem; color: var(--text2); line-height: 1.6; }
.contact-item-text a:hover { color: var(--text); }
.contact-social h4 {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 0.75rem;
}
.contact-form-wrapper {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rad2);
  padding: 2rem;
}
.contact-form-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.map-section { border-radius: var(--rad2); overflow: hidden; border: 1px solid var(--border); }
.map-section iframe { display: block; }

/* === FORMS === */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group-full { margin-bottom: 1rem; }
.form-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); }
.form-input {
  padding: 0.75rem 1rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.85rem;
  transition: var(--trans);
  outline: none;
  width: 100%;
}
.form-input:focus { border-color: var(--accent); background: var(--bg4); }
.form-input::placeholder { color: var(--text3); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-error { font-size: 0.72rem; color: var(--accent); }
.phone-input-wrapper { display: flex; }
.phone-prefix {
  padding: 0.75rem 0.75rem;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 0.85rem;
  color: var(--text2);
  flex-shrink: 0;
  font-family: var(--font);
}
.phone-input { border-radius: 0 var(--radius) var(--radius) 0 !important; }

/* === PRIVACY === */
.privacy-section { max-width: 820px; margin: 0 auto; padding: 5rem 2rem; }
.privacy-section h1 { font-size: 2rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 0.5rem; text-transform: uppercase; }
.privacy-date { font-size: 0.78rem; color: var(--text2); margin-bottom: 2.5rem; }
.privacy-section h2 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin: 2rem 0 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; }
.privacy-section p, .privacy-section li { font-size: 0.88rem; color: var(--text2); line-height: 1.85; margin-bottom: 0.5rem; }
.privacy-section ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }
.privacy-section a { color: var(--accent); }

/* === ALERTS === */
.alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); color: #4ade80; }
.alert-error { background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.25); color: var(--accent); }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .hero-split { grid-template-columns: 50% 50%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .video-side { display: grid; grid-template-columns: repeat(3, 1fr); }
  .feat-artists-row { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hs-left { padding: 5.5rem 2rem 3rem; border-right: none; border-bottom: 1px solid var(--border); }
  .hs-right { padding: 3rem 2rem; }
  .hs-title { letter-spacing: -3px; }
  .about-preview-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .featured-artists-grid { grid-template-columns: repeat(3, 1fr); }
  .hs-artist-grid { grid-template-columns: repeat(4, 1fr); }
  /* Ana sayfa bölümleri */
  .feat-artists-row { grid-template-columns: repeat(3, 1fr); }
  .feat-artist-card { height: 200px; }
  .hero-full { height: 60vh; }
  .about-mini { height: auto; min-height: 0; }
  .about-mini-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 3rem 2.5rem;
    position: relative;
    top: auto; left: auto; right: auto;
    transform: none;
  }
  .about-mini-bg, .about-mini-overlay { display: none; }
  .about-mini { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .ev-hero-label { padding: 2rem 2.5rem 1rem; }
  .ev-hero-content { left: 2.5rem; right: 2.5rem; bottom: 1.75rem; }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; right: 0;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg2);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 32px rgba(0,0,0,0.5);
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 1rem 0; font-size: 0.8rem; border-bottom: 1px solid var(--border); color: var(--text); }
  .nav-cta { margin-left: 0 !important; margin-top: 1rem; justify-content: center; border-radius: var(--radius) !important; }
  .nav-toggle { display: flex; }
  .section { padding: 4rem 0; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-preview-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .featured-artists-grid { grid-template-columns: repeat(2, 1fr); }
  .hs-artist-grid { grid-template-columns: 1fr 1fr; }
  .video-side { display: flex; flex-direction: column; }
  .video-modal-content { width: 95%; }
  /* Ana sayfa hero */
  .hero-full { height: 65vh; min-height: 380px; }
  .hero-full-content {
    top: 50%;
    transform: translateY(-50%);
    left: 1.5rem;
    right: 1.5rem;
    max-width: 100%;
  }
  .hero-full-title { font-size: clamp(2rem, 8vw, 3rem); letter-spacing: -1px; }
  .hero-full-sub { font-size: 0.8rem; max-width: 100%; }
  .hero-stats-bar { left: 1.5rem; bottom: 1.5rem; gap: 1rem; }
  /* Referanslarımız — yatay kaydırma */
  .feat-artists-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
  }
  .feat-artists-row::-webkit-scrollbar { display: none; }
  .feat-artists-row { scrollbar-width: none; }
  .feat-artist-card {
    flex: 0 0 58vw;
    height: 220px;
    scroll-snap-align: start;
  }
  .feat-header { padding: 0 1.5rem 1rem; }
  .feat-title { font-size: 1.2rem; }
  /* Hakkımızda mini */
  .about-mini { height: auto; min-height: 0; }
  .about-mini-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem 1.5rem;
    position: relative;
    top: auto; left: auto; right: auto;
    transform: none;
  }
  .about-mini-bg, .about-mini-overlay { display: none; }
  .about-mini { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  /* Etkinlikler */
  .ev-hero-card { height: 52vw; min-height: 220px; }
  .ev-hero-label { padding: 2rem 1.5rem 1rem; }
  .ev-hero-heading { font-size: 1.3rem; }
  .ev-hero-content { left: 1.5rem; right: 1.5rem; bottom: 1.5rem; }
  .ev-hero-title { font-size: 1.1rem; }
}
@media (max-width: 480px) {
  .hs-title { letter-spacing: -2px; }
  .hs-stats { gap: 1.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .featured-artists-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  /* Ana sayfa */
  .hero-full { height: 75vh; min-height: 340px; }
  .hero-full-content { top: 50%; transform: translateY(-50%); left: 1.25rem; right: 1.25rem; }
  .hero-full-title { font-size: clamp(1.9rem, 10vw, 2.8rem); }
  .hero-stats-bar { display: none; }
  .feat-artist-card { flex: 0 0 72vw; height: 200px; }
  .feat-header { padding: 0 1.25rem 0.75rem; }
  .feat-section { padding: 1.5rem 0 0; }
  .about-mini-content { padding: 2rem 1.25rem; }
  .ev-hero-card { height: 60vw; min-height: 200px; }
  .ev-hero-content { left: 1.25rem; right: 1.25rem; }
  .ev-hero-title { font-size: 1rem; }
  .ev-hero-meta { flex-direction: column; gap: 0.25rem; }
}
