/* ═══════════════════════════════════════════

   BÖLÜM STİLLERİ — Sinematik hero & bölümler

   ═══════════════════════════════════════════ */



/* ─── HERO ─── */

.hero-section {

  position: relative;

  min-height: 100vh;

  min-height: 100dvh;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

}



.hero-media {

  position: absolute;

  inset: 0;

  z-index: 0;

}



.hero-image,

.hero-video {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center 25%;

  transform: scale(1.15);

  filter: brightness(0.35) saturate(0.9) contrast(1.1);

}



.hero-overlay {

  position: absolute;

  inset: 0;

  background:

    linear-gradient(180deg, rgba(3,3,3,0.5) 0%, rgba(3,3,3,0.2) 40%, rgba(3,3,3,0.85) 100%),

    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212,175,55,0.08) 0%, transparent 60%);

}



.hero-vignette {

  position: absolute;

  inset: 0;

  background: radial-gradient(ellipse at center, transparent 30%, rgba(3,3,3,0.7) 100%);

  pointer-events: none;

}



.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-height);
  padding-bottom: 2rem;
}



.hero-eyebrow {

  font-size: 0.75rem;

  font-weight: 500;

  letter-spacing: 0.4em;

  text-transform: uppercase;

  color: var(--text-secondary);

  margin-bottom: 1.25rem;

}



.hero-title {

  font-weight: 700;

  letter-spacing: 0.08em;

  margin-bottom: 1.25rem;

  line-height: 0.95;

}



.hero-title-line {

  display: block;

}



.hero-title-line--accent {

  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-light) 80%);

  background-size: 200% auto;

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

  animation: titleShimmer 5s ease-in-out infinite;

  filter: drop-shadow(0 0 40px var(--gold-glow));

}



@keyframes titleShimmer {

  0%, 100% { background-position: 0% center; }

  50%       { background-position: 100% center; }

}



.hero-subtitle {

  font-size: 0.85rem;

  color: var(--text-secondary);

  letter-spacing: 0.18em;

  text-transform: uppercase;

  margin-bottom: 2.5rem;

  max-width: 520px;

  margin-inline: auto;

}

@media (max-width: 767.98px) {
  .hero-section {
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0.65rem;
  }

  .hero-content {
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
  }

  .hero-image,
  .hero-video {
    object-position: center 12%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.42) 0%, rgba(3, 3, 3, 0.14) 38%, rgba(3, 3, 3, 0.72) 100%),
      radial-gradient(ellipse 80% 60% at 50% 30%, rgba(212, 175, 55, 0.07) 0%, transparent 60%);
  }

  .hero-vignette {
    background: radial-gradient(ellipse at center, transparent 34%, rgba(3, 3, 3, 0.58) 100%);
  }
}



.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transform-origin: top center;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%       { opacity: 1;   transform: scaleY(1); }
}



/* Stat suffix inline */

.stat-suffix {

  font-family: var(--font-display);

  font-size: clamp(1.5rem, 4vw, 2.5rem);

  font-weight: 700;

  background: linear-gradient(135deg, var(--gold-light), var(--gold));

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

}



/* ─── HAKKINDA ─── */

.about-section {

  background: var(--bg-secondary);

  overflow: hidden;

}



.about-grid { position: relative; }

.about-image-col { position: relative; }



.about-image-wrap {

  position: relative;

  margin-right: -2rem;

  background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);

  border-radius: var(--radius-lg);

  padding: 0.5rem;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);

}



.about-portrait {

  width: 100%;

  aspect-ratio: 3/4;

  object-fit: cover;

  object-position: center top;

  border-radius: calc(var(--radius-lg) - 4px);

  filter: contrast(1.08);

}



.about-image-accent {

  position: absolute;

  top: -1rem;

  left: -1rem;

  width: 60%;

  height: 60%;

  border: 1px solid var(--border-gold);

  border-radius: var(--radius-lg);

  z-index: -1;

  pointer-events: none;

}



.about-stat {

  position: absolute;

  bottom: -1.5rem;

  right: -1rem;

  background: var(--bg-card);

  border: 1px solid var(--border-gold);

  border-radius: var(--radius-md);

  padding: 1.25rem 1.5rem;

  text-align: center;

  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);

}



.stat-number {

  display: block;

  font-family: var(--font-display);

  font-size: 1.75rem;

  font-weight: 700;

  color: var(--gold);

  line-height: 1;

}



.stat-label {

  font-size: 0.7rem;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  color: var(--text-muted);

}



.about-text-col { padding-left: clamp(0rem, 4vw, 3rem); }

.about-body p { color: var(--text-secondary); margin-bottom: 1rem; }

.about-body strong { color: var(--text-primary); }



.about-highlights {

  display: flex;

  flex-wrap: wrap;

  gap: 1.5rem;

  margin-top: 2rem;

}



.about-highlights li {

  display: flex;

  align-items: center;

  gap: 0.5rem;

  font-size: 0.9rem;

  color: var(--text-secondary);

  padding: 0.5rem 1rem;

  border: 1px solid var(--border-subtle);

  border-radius: 100px;

}



.about-highlights i { color: var(--gold); }

/* ─── Hakkında — Sosyal medya ─── */
.about-social-wrap {
  margin-top: clamp(3rem, 7vw, 4.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--border-subtle);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.about-social-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.about-social-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.about-social-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

.about-social-title em {
  font-style: italic;
  color: var(--gold-light);
}

.about-social-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.about-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .about-social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

@media (min-width: 1200px) {
  .about-social-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.social-chip {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  width: 100%;
  min-width: 0;
  padding: 1.15rem 1.1rem 1rem;
  min-height: 118px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

@media (max-width: 479.98px) {
  .social-chip {
    padding: 0.95rem 0.85rem 0.9rem;
    min-height: 104px;
    gap: 0.7rem;
  }

  .social-chip-icon {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }

  .social-chip-name {
    font-size: 0.76rem;
    line-height: 1.25;
  }

  .social-chip-handle {
    font-size: 0.62rem;
  }

  .social-chip-arrow {
    top: 0.75rem;
    right: 0.75rem;
  }
}

.social-chip:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.social-chip-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.social-chip:hover .social-chip-glow {
  opacity: 1;
}

.social-chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-size: 1.1rem;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  background: var(--bg-elevated);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  position: relative;
  z-index: 1;
}

.social-chip-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.social-chip-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  line-height: 1.25;
  max-width: 100%;
}

.social-chip-handle {
  font-size: 0.68rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.social-chip-arrow {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity var(--transition), transform var(--transition), color var(--transition);
  z-index: 1;
}

.social-chip:hover .social-chip-arrow {
  opacity: 1;
  transform: translate(0, 0);
  color: var(--gold);
}

.social-chip--youtube:hover .social-chip-icon { color: #ff4444; border-color: rgba(255, 68, 68, 0.35); background: rgba(255, 68, 68, 0.08); }
.social-chip--youtube .social-chip-glow { background: radial-gradient(circle at 30% 20%, rgba(255, 68, 68, 0.12), transparent 65%); }

.social-chip--spotify:hover .social-chip-icon { color: #1ed760; border-color: rgba(30, 215, 96, 0.35); background: rgba(30, 215, 96, 0.08); }
.social-chip--spotify .social-chip-glow { background: radial-gradient(circle at 30% 20%, rgba(30, 215, 96, 0.12), transparent 65%); }

.social-chip--instagram:hover .social-chip-icon { color: #e4405f; border-color: rgba(228, 64, 95, 0.35); background: rgba(228, 64, 95, 0.08); }
.social-chip--instagram .social-chip-glow { background: radial-gradient(circle at 30% 20%, rgba(228, 64, 95, 0.12), transparent 65%); }

.social-chip--tiktok:hover .social-chip-icon { color: #f5f5f5; border-color: rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.06); }
.social-chip--tiktok .social-chip-glow { background: radial-gradient(circle at 30% 20%, rgba(0, 242, 234, 0.1), transparent 55%), radial-gradient(circle at 70% 80%, rgba(255, 0, 80, 0.1), transparent 55%); }

.social-chip--facebook:hover .social-chip-icon { color: #4a9ff5; border-color: rgba(74, 159, 245, 0.35); background: rgba(74, 159, 245, 0.08); }
.social-chip--facebook .social-chip-glow { background: radial-gradient(circle at 30% 20%, rgba(74, 159, 245, 0.12), transparent 65%); }

.social-chip--x:hover .social-chip-icon { color: var(--text-primary); border-color: rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.06); }
.social-chip--x .social-chip-glow { background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.08), transparent 65%); }

.social-chip--apple:hover .social-chip-icon { color: #fa5c8c; border-color: rgba(250, 92, 140, 0.35); background: rgba(250, 92, 140, 0.08); }
.social-chip--apple .social-chip-glow { background: radial-gradient(circle at 30% 20%, rgba(250, 92, 140, 0.12), transparent 65%); }

/* ─── MÜZİK ─── */

.music-section {

  background: var(--bg-primary);

  position: relative;

}



.music-section::before {

  content: '';

  position: absolute;

  top: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 1px;

  height: 100px;

  background: linear-gradient(to bottom, var(--gold), transparent);

  opacity: 0.5;

}



.music-subheading {

  font-family: var(--font-body);

  font-size: 0.8rem;

  font-weight: 600;

  letter-spacing: 0.15em;

  text-transform: uppercase;

  color: var(--text-muted);

  margin-bottom: 1.5rem;

  padding-bottom: 0.75rem;

  border-bottom: 1px solid var(--border-subtle);

}



/* ─── TUR ─── */

.tour-section {

  background: var(--bg-secondary);

  overflow: hidden;

}



.tour-note {

  font-size: 0.85rem;

  color: var(--gold-dark);

  font-style: italic;

  letter-spacing: 0.05em;

}



/* ─── MENAJERLİK ─── */

.management-section {

  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);

  border-top: 1px solid var(--border-subtle);

}



/* ─── SSS (Google snippet) ─── */
.faq-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.container--narrow {
  max-width: 760px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: var(--border-gold);
}

.faq-question {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.faq-answer a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: var(--gold);
}

/* ─── İLETİŞİM ─── */

.contact-section {

  background: var(--bg-secondary);

  border-top: 1px solid var(--border-subtle);

}



.contact-intro {

  color: var(--text-secondary);

  margin-bottom: 0.5rem;

  font-size: 0.95rem;

}



.contact-phone-label {

  font-size: 0.7rem;

  letter-spacing: 0.15em;

  text-transform: uppercase;

  color: var(--text-muted);

  margin: 0;

}



.contact-info {

  display: flex;

  flex-direction: column;

  gap: 1.25rem;

}



.contact-item {

  display: flex;

  align-items: flex-start;

  gap: 1rem;

}



.contact-item i {

  font-size: 1.25rem;

  color: var(--gold);

  margin-top: 0.15rem;

}



.contact-label {

  display: block;

  font-size: 0.7rem;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  color: var(--text-muted);

  margin-bottom: 0.15rem;

}



.contact-value {

  font-size: 1rem;

  color: var(--text-primary);

}



a.contact-value:hover { color: var(--gold); }



.form-heading {

  font-family: var(--font-display);

  font-size: 1.35rem;

  margin-bottom: 1.5rem;

  padding-bottom: 1rem;

  border-bottom: 1px solid var(--border-subtle);

}



/* ─── FOOTER ─── */

.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}

.footer-top-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold-light), var(--gold-dark), transparent);
  opacity: 0.7;
}

.footer-grid {
  padding: clamp(3rem, 8vw, 4.5rem) 0 clamp(2rem, 5vw, 3rem);
}

.footer-logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: 1.25rem;
}

.footer-logo img {
  height: 42px;
  width: auto;
  opacity: 0.92;
  transition: opacity var(--transition), filter var(--transition);
}

.footer-logo:hover img {
  opacity: 1;
  filter: drop-shadow(0 0 12px var(--gold-glow));
}

.footer-logo--artist {
  line-height: 1.1;
  text-decoration: none;
}

.footer-artist-name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition);
}

.footer-logo--artist:hover .footer-artist-name {
  color: var(--gold-light);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 22rem;
  margin: 0;
}

.footer-social {
  margin-top: 1.5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  font-size: 1rem;
}

@media (max-width: 767.98px) {
  .footer-social a {
    width: 2.125rem;
    height: 2.125rem;
    font-size: 0.95rem;
  }
}

.footer-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.15rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li,
.footer-contact li + li {
  margin-top: 0.65rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact a i {
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  padding: 0.65rem 1.35rem !important;
  font-size: 0.72rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-mgmt {
  color: var(--text-muted);
  opacity: 0.85;
}

.footer-back-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
  text-decoration: none;
  background: rgba(212, 175, 55, 0.06);
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.footer-back-top:hover {
  color: var(--bg-primary);
  background: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--gold-glow);
}

@media (max-width: 767.98px) {
  .footer-grid {
    text-align: center;
  }

  .footer-tagline {
    margin-inline: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact a {
    justify-content: center;
  }

  .footer-cta {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}



/* ─── Responsive ─── */

@media (max-width: 991.98px) {

  .about-image-wrap { margin-right: 0; margin-bottom: 3rem; }

  .about-stat { right: 1rem; bottom: -1rem; }

  .about-text-col { padding-left: 0; }

}



@media (max-width: 767.98px) {
}



@media (max-width: 479.98px) {
.hero-title { letter-spacing: 0.04em; }

}


