/*
 * Burhan Çakır Official Artist Portfolio
 * Royal stage, cinematic performance, and private artist identity.
 */

:root {
  --ink: #050608;
  --obsidian: #0b0d10;
  --velvet: #2a0710;
  --velvet-2: #5f101f;
  --imperial: #a2762a;
  --gold: #d8b25a;
  --pale-gold: #f2ddb0;
  --ivory: #f4efe4;
  --mist: #b9b2a4;
  --line: rgba(216, 178, 90, 0.24);
  --line-strong: rgba(216, 178, 90, 0.48);
  --shadow: rgba(0, 0, 0, 0.52);
  --nav-height: 88px;
  --max: 1220px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(95, 16, 31, 0.48), transparent 32rem),
    radial-gradient(circle at 86% 18%, rgba(162, 118, 42, 0.18), transparent 28rem),
    linear-gradient(180deg, #030405 0%, #0b0d10 46%, #050608 100%);
  color: var(--ivory);
  font-family: "Montserrat", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(216, 178, 90, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 178, 90, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 80%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(216, 178, 90, 0.08) 1px, transparent 1px) 50% 0 / 1px 100% no-repeat,
    radial-gradient(circle at 50% 0, rgba(216, 178, 90, 0.2), transparent 30rem);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.main-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(216, 178, 90, 0.2);
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.94), rgba(5, 6, 8, 0.68));
  backdrop-filter: blur(18px);
}

.nav-container {
  width: min(100% - 34px, 1380px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
}

.brand-seal {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(216, 178, 90, 0.22), transparent 62%),
    linear-gradient(145deg, rgba(95, 16, 31, 0.92), rgba(5, 6, 8, 0.96));
  color: var(--pale-gold);
  font-family: "Cinzel", serif;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.36);
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-family: "Cinzel", serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ivory);
}

.brand-copy small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  list-style: none;
}

.nav-menu a {
  color: rgba(244, 239, 228, 0.86);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-menu a:hover {
  color: var(--pale-gold);
}

.nav-cta {
  padding: 12px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(216, 178, 90, 0.2), rgba(95, 16, 31, 0.48));
}

.mega-dropdown,
.gallery-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 24px);
  left: 0;
  width: 410px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(8, 9, 12, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.mega-dropdown:hover .mega-menu,
.gallery-dropdown:hover .mega-menu {
  display: grid;
}

.menu-column h4 {
  margin-bottom: 14px;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 15px;
  font-weight: 700;
}

.menu-column ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.menu-column a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--mist);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.front-data-line {
  display: grid;
  gap: 6px;
  margin: 0 0 16px;
  padding: 14px 0 14px 18px;
  border-left: 2px solid var(--gold);
}

.front-data-line strong {
  color: var(--pale-gold);
  font-family: "Cinzel", serif;
  font-size: 18px;
}

.front-data-line span,
.press-ledger small,
.project-info small {
  display: block;
  color: var(--mist);
  font-size: 12px;
  margin-top: 4px;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: 1px;
  height: 84px;
  background: linear-gradient(var(--gold), transparent);
  opacity: 0.35;
}

.section-title {
  color: var(--ivory);
  font-family: "Cinzel", serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.08;
}

.section-title::after {
  content: "";
  display: block;
  width: 96px;
  height: 1px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading-row p,
.bio-content,
.stage-copy p,
.voice-grid p,
.showreel-copy p,
.press-layout p,
.contact-copy p {
  color: var(--mist);
  font-size: 17px;
  line-height: 1.85;
}

.royal-split {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  margin-bottom: 58px;
}

.section-mark {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 14px;
  padding-left: 22px;
  border-left: 1px solid var(--line-strong);
}

.section-mark span {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.section-mark strong {
  color: var(--mist);
  font-size: 12px;
  text-transform: uppercase;
}

.royal-copy .section-title {
  max-width: 800px;
  margin-bottom: 28px;
}

.bio-content {
  max-width: 920px;
}

.career-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.highlight-card,
.project-card,
.contact-form-container,
.press-ledger,
.showreel-frame,
.stage-panel,
.voice-grid {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(244, 239, 228, 0.055), rgba(244, 239, 228, 0.02)),
    rgba(9, 10, 13, 0.72);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.24);
}

.highlight-card {
  min-height: 245px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.highlight-card:hover,
.project-card:hover {
  transform: translateY(-7px);
  border-color: var(--line-strong);
}

.highlight-card i {
  color: var(--gold);
  font-size: 28px;
}

.highlight-card h3 {
  color: var(--ivory);
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
  font-weight: 700;
}

.highlight-card p {
  color: var(--mist);
  font-size: 14px;
  line-height: 1.7;
}

.cinema-section {
  background:
    linear-gradient(90deg, rgba(95, 16, 31, 0.16), transparent 36%, rgba(216, 178, 90, 0.06)),
    linear-gradient(180deg, transparent, rgba(95, 16, 31, 0.12));
}

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

.project-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 72%;
  background: linear-gradient(180deg, transparent, rgba(3, 4, 5, 0.96));
  pointer-events: none;
}

.project-image {
  position: absolute;
  inset: 0;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
}

.project-card-text {
  background: linear-gradient(135deg, rgba(95, 16, 31, 0.42), rgba(5, 6, 8, 0.92));
}

.project-info {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 28px;
}

.project-info span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.project-info h3 {
  margin: 12px 0 10px;
  color: var(--ivory);
  font-family: "Cinzel", serif;
  font-size: 27px;
}

.project-info p {
  color: var(--mist);
  font-size: 14px;
  line-height: 1.75;
}

.stage-panel {
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
  padding: 54px;
  background:
    linear-gradient(135deg, rgba(95, 16, 31, 0.52), rgba(5, 6, 8, 0.92)),
    radial-gradient(circle at 88% 18%, rgba(216, 178, 90, 0.18), transparent 22rem);
}

.stage-ornament {
  min-height: 360px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px 8px 140px 140px;
  overflow: hidden;
}

.stage-ornament::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(216, 178, 90, 0.42);
  border-radius: 8px 8px 120px 120px;
}

.stage-ornament strong {
  position: relative;
  z-index: 2;
  color: var(--pale-gold);
  font-family: "Cinzel", serif;
  font-size: 34px;
  line-height: 1.2;
  text-align: center;
}

.voice-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 260px;
  gap: 42px;
  align-items: center;
  padding: 44px;
}

.voice-emblem {
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold);
  font-size: 44px;
  background: radial-gradient(circle, rgba(216, 178, 90, 0.18), transparent 66%);
}

.voice-list {
  display: grid;
  gap: 12px;
}

.voice-list span {
  padding: 13px 14px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ivory);
  font-size: 13px;
  font-weight: 700;
}

.showreel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 46px;
  align-items: center;
}

.showreel-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  padding: 12px;
  background: linear-gradient(135deg, rgba(216, 178, 90, 0.22), rgba(95, 16, 31, 0.16));
}

.showreel-frame::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(216, 178, 90, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.showreel-frame video,
.showreel-empty {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #050608;
  object-fit: cover;
}

.showreel-empty {
  color: var(--mist);
  gap: 14px;
}

.showreel-empty i {
  color: var(--gold);
  font-size: 42px;
}

.showreel-copy .section-title,
.contact-copy .section-title,
.press-layout .section-title {
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  border-color: rgba(242, 221, 176, 0.5);
  background: linear-gradient(135deg, #d8b25a, #8c611d);
  color: #080808;
}

.btn-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  color: var(--pale-gold);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.press-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: start;
}

.press-ledger {
  display: grid;
  gap: 1px;
  padding: 12px;
}

.press-ledger div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--ivory);
  font-weight: 600;
}

.press-ledger span {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--pale-gold);
  font-weight: 700;
}

.contact-line i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.contact-form-container {
  padding: 34px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 9px;
  color: var(--pale-gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(216, 178, 90, 0.26);
  border-radius: 4px;
  background: rgba(5, 6, 8, 0.66);
  color: var(--ivory);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
  min-height: 142px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 178, 90, 0.12);
}

.checkbox-group {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}

.checkbox-group input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.checkbox-group label {
  color: var(--mist);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  text-transform: none;
}

.footer {
  border-top: 1px solid var(--line);
  background: #030405;
  padding: 44px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand p,
.footer-inner > p {
  color: var(--mist);
  font-size: 13px;
}

.footer-inner > p {
  text-align: right;
}

.social-links {
  display: inline-flex;
  gap: 10px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  transition: background 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--ink);
}

/* Compatibility for older inner pages */
header .top-bar {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 8, 0.9);
}

header .logo h1 {
  color: var(--ivory);
  font-family: "Cinzel", serif;
}

.gold-text,
.tagline {
  color: var(--gold);
}

header .main-nav {
  position: static;
  height: auto;
  background: transparent;
  border: 0;
}

header .main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
}

.about,
.acting-career,
.filmography,
.seriesography,
.portfolio {
  padding: 96px 0;
}

.modern-card,
.film-item,
.series-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

@media (max-width: 1180px) {
  .nav-menu {
    gap: 13px;
  }

  .nav-menu a {
    font-size: 12px;
  }

  .career-highlights,
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  :root {
    --nav-height: 76px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 6, 8, 0.98);
  }

  .nav-menu.active {
    display: flex;
  }

  .mega-menu {
    position: static;
    width: 100%;
    margin-top: 14px;
    grid-template-columns: 1fr;
  }

  .royal-split,
  .stage-panel,
  .voice-grid,
  .showreel-layout,
  .press-layout,
  .contact-layout,
  .section-heading-row {
    grid-template-columns: 1fr;
  }

  .section-mark,
  .contact-copy {
    position: static;
  }

  .voice-emblem {
    width: 104px;
    height: 104px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .social-links {
    justify-content: center;
  }

  .footer-inner > p {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 26px, var(--max));
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-seal {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .section {
    padding: 78px 0;
  }

  .section-title {
    font-size: 31px;
  }

  .career-highlights,
  .projects-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .stage-panel,
  .voice-grid,
  .contact-form-container {
    padding: 24px;
  }

  .stage-ornament {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
