/* ============================================================
   busramutlu.com — Sunucu & Moderatör kişisel sitesi
   Palet: gece laciverti + şampanya altını + fildişi
   ============================================================ */

:root {
  --bg: #faf8f4;
  --ink: #1c2230;
  --ink-soft: #5a6275;
  --navy: #141a28;
  --navy-2: #1b2336;
  --gold: #c2a05a;
  --gold-soft: #e6d3a8;
  --line: rgba(28, 34, 48, 0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Segoe UI', sans-serif;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(20, 26, 40, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: min(1140px, 92%); margin: 0 auto; }

em { font-style: italic; color: var(--gold); }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: 1.35rem; }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* ===== Reveal animasyonu ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Nav ===== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.nav.scrolled {
  background: rgba(20, 26, 40, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  padding: 0.7rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.logo span { color: var(--gold); }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold);
  padding: 0.45rem 1.3rem;
  border-radius: 999px;
  color: var(--gold) !important;
}
.nav-cta:hover { background: var(--gold); color: var(--navy) !important; }

.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.hamburger span {
  display: block; width: 26px; height: 2px; margin: 6px 0;
  background: #fff; transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  color: #fff;
  padding: 7rem 0 4rem;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 500px at 80% 15%, rgba(194, 160, 90, 0.18), transparent 60%),
    radial-gradient(700px 600px at 10% 90%, rgba(194, 160, 90, 0.10), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, #0e1320 100%);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, transparent, #000 30%, transparent);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.6rem);
  font-weight: 700;
  margin: 0.2em 0 0.35em;
}
.hero-sub {
  max-width: 34rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
  border: 0; cursor: pointer; font-family: var(--sans);
}
.btn-gold { background: linear-gradient(135deg, var(--gold), #a8853f); color: #fff; box-shadow: 0 10px 30px rgba(194, 160, 90, 0.35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(194, 160, 90, 0.5); }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.4); color: #fff; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; }

/* Hero foto */
.hero-photo { display: flex; justify-content: center; }
.photo-frame {
  position: relative;
  width: min(360px, 80vw);
  aspect-ratio: 3 / 4;
  border-radius: 180px 180px var(--radius) var(--radius);
  overflow: hidden;
  border: 1px solid rgba(194, 160, 90, 0.5);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  background: linear-gradient(160deg, #232c44, #161d2f);
}
.photo-frame::before {
  content: "";
  position: absolute; inset: 12px;
  border: 1px solid rgba(194, 160, 90, 0.35);
  border-radius: 168px 168px 8px 8px;
  pointer-events: none; z-index: 2;
}
.photo-frame img, .about-frame img, .g-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.photo-initials {
  position: absolute; inset: 0;
  display: none; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 5rem; font-weight: 700;
  color: rgba(194, 160, 90, 0.55);
  letter-spacing: 0.05em;
}
.placeholder .photo-initials { display: flex; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}
.scroll-hint span {
  position: absolute; left: 50%; top: 8px;
  width: 4px; height: 8px; border-radius: 4px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: drop 1.8s infinite;
}
@keyframes drop { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 100% { opacity: 0; top: 24px; } }

/* ===== İstatistikler ===== */
.stats { background: var(--navy); border-top: 1px solid rgba(194,160,90,0.25); padding: 2.6rem 0; color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem; font-weight: 700;
  color: var(--gold);
}
.stat span { font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); }

/* ===== Bölümler ===== */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section-dark { background: var(--navy); color: #fff; }
.section-dark .eyebrow { color: var(--gold-soft); }
.section-head { text-align: center; margin-bottom: 3.5rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.split-text p { margin-bottom: 1.1rem; color: var(--ink-soft); }
.split-text strong { font-weight: 500; color: var(--ink); }
.split-text h2 { margin-bottom: 1.4rem; }

.about-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(160deg, #e9e2d2, #d6cab0);
}
.about-frame::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(194, 160, 90, 0.4);
  border-radius: var(--radius);
  transform: translate(14px, 14px);
  pointer-events: none;
}
.about-frame .photo-initials { color: rgba(140, 110, 50, 0.45); }

.signature {
  margin-top: 1.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--gold);
}

/* ===== Timeline ===== */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 2rem; }
.timeline::before {
  content: "";
  position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(194,160,90,0.15));
}
.t-item { position: relative; padding-bottom: 2.6rem; }
.t-item:last-child { padding-bottom: 0; }
.t-item::before {
  content: "";
  position: absolute; left: calc(-2rem - 5px); top: 8px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(194, 160, 90, 0.2);
}
.t-year {
  font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 0.5rem; font-weight: 500;
}
.t-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
  transition: border-color 0.3s, transform 0.3s;
}
.t-card:hover { border-color: rgba(194, 160, 90, 0.5); transform: translateX(6px); }
.t-card h3 { margin-bottom: 0.5rem; color: #fff; }
.t-card p { color: rgba(255, 255, 255, 0.7); font-size: 0.97rem; }

/* ===== Hizmet kartları ===== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.7rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(194, 160, 90, 0.5); }
.card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.7rem; font-size: 1.25rem; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }

/* ===== Galeri ===== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.g-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(150deg, #222b42, #171e31);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.g-item img { transition: transform 0.5s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item.placeholder::after {
  content: "Fotoğraf yakında";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(230, 211, 168, 0.5);
}

/* ===== İletişim ===== */
.contact-split { align-items: start; }
.contact-list { list-style: none; margin-top: 1.8rem; }
.contact-list li {
  display: flex; gap: 1rem; align-items: baseline;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-list span {
  min-width: 90px;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.contact-list a { color: var(--ink); text-decoration: none; }
.contact-list a:hover { color: var(--gold); }

.btn-vcard {
  margin-top: 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-vcard:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input, .contact-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.97rem;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(194, 160, 90, 0.18);
}
.form-note { margin-top: 0.8rem; font-size: 0.8rem; color: var(--ink-soft); text-align: center; }

/* ===== Footer ===== */
.footer {
  background: #0e1320;
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; gap: 0.8rem; align-items: center; }
.footer p { font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; }
.socials { display: flex; gap: 1.6rem; margin: 0.5rem 0 1rem; }
.socials a {
  color: var(--gold-soft); text-decoration: none;
  font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.socials a:hover { color: var(--gold); }
.footer small { color: rgba(255, 255, 255, 0.4); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero { padding-top: 6rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split-media { max-width: 460px; margin: 0 auto; width: 100%; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hamburger { display: block; }
  .nav { background: rgba(20, 26, 40, 0.95); padding: 0.8rem 0; }
  .nav-links {
    position: fixed; top: 58px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(14, 19, 32, 0.98);
    backdrop-filter: blur(14px);
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .nav-links.open { max-height: 22rem; }
  .nav-links a { padding: 1rem 0; width: 100%; text-align: center; }
  .nav-cta { border: 0; border-top: 1px solid rgba(194, 160, 90, 0.3); border-radius: 0; }

  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .stats-grid { gap: 1.8rem 1rem; }
  .stat strong { font-size: 2.1rem; }
  .timeline { padding-left: 1.4rem; }
  .t-item::before { left: calc(-1.4rem - 5px); }
  .contact-form { padding: 1.5rem; }
  .scroll-hint { display: none; }
}
