/* ==========================================
   ASWEDDING ORGANİZASYON — SİNEMATİK TASARIM
   Renk Paleti: Koyu zeminler + Altın vurgu
   Fontlar: Montserrat (başlık), Inter (gövde)
   ========================================== */

:root {
  /* Renk Değişkenleri */
  --color-bg: #0A0A0B;
  --color-surface: #141518;
  --color-surface-2: #1E2024;
  --color-accent: #C6A961;
  --color-text: #E8E6E3;
  --color-text-muted: #9A9A94;
  --color-overlay: rgba(10, 10, 11, 0.65);

  /* Tipografi */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-base: 8px;
  --space-section: 80px;
  --space-section-mobile: 40px;

  /* Gölge */
  --shadow-base: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-elevated: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-overlay: 0 16px 48px rgba(0, 0, 0, 0.5);

  /* Border Radius */
  --radius-lg: 0px;
  --radius-md: 2px;

  /* Geçiş */
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Js yüklendikten sonra reveal için başlangıçta gizle */
html.js .reveal {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  clip-path: inset(0 0 100% 0);
  transition: opacity 0.9s ease, transform 0.9s ease, clip-path 0.9s ease, visibility 0.9s;
}

html.js .reveal.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

/* Bağımsız taslak ibaresi */
.draft-notice {
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-align: center;
  padding: 6px 16px;
  text-transform: uppercase;
  width: 100%;
  z-index: 1;
  position: relative;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.site-header.has-scrolled {
  background: rgba(10, 10, 11, 0.92);
  box-shadow: var(--shadow-base);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.8;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  color: var(--color-bg);
  border-radius: var(--radius-lg);
  font-size: 1rem;
}

.main-nav {
  display: none;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.toggle-bar {
  width: 26px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobil menü açıldığında */
.main-nav.open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 11, 0.98);
  padding: 20px;
  border-top: 1px solid var(--color-surface-2);
}

.main-nav.open .nav-list {
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Scroll progress */
.scroll-progress {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 100%;
  background: transparent;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.2s ease-out;
  z-index: 5;
}

.scroll-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--color-accent);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.1); /* Parallax için hafif büyük başlangıç */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  max-width: 800px;
}

.eyebrow {
  font-size: 0.875rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 4.5rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-accent);
  transform: scale(1.03);
}

.btn-outline {
  border-color: var(--color-text);
  color: var(--color-text);
}

.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-bg);
  transform: scale(1.03);
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-text);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 2;
  opacity: 0.7;
}

.scroll-indicator span {
  width: 4px;
  height: 8px;
  background: var(--color-text);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0; }
}

/* Genel Sahne (Scene) */
.scene {
  padding: var(--space-section-mobile) 24px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 480px) {
  .scene {
    padding: var(--space-section-mobile) 32px;
  }
}

@media (min-width: 768px) {
  .scene {
    padding: var(--space-section) 48px;
  }
}

.content-block {
  max-width: 600px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.body-copy {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Hikaye */
.story {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
}

.story-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

.story-text {
  padding-right: 0;
}

.story-visual img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-overlay);
  aspect-ratio: 16/9; /* Görsel boyutu optimize */
}

@media (min-width: 768px) {
  .story-inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }

  .story-text,
  .story-visual {
    flex: 1;
  }
}

/* Hizmetler */
.services {
  background: var(--color-surface);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-header {
  margin-bottom: 48px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.service-item {
  position: relative;
  min-height: 55vh;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-overlay);
}

.service-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,11,0.1) 0%, rgba(10,10,11,0.8) 100%);
  z-index: 1;
}

.service-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  max-width: 600px;
}

.service-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--color-text);
}

.service-content p {
  font-size: 0.95rem;
  color: rgba(232, 230, 227, 0.9);
  margin-bottom: 16px;
}

.service-item:hover .service-bg {
  transform: scale(1.05);
}

.text-link {
  font-size: 0.875rem;
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}

.text-link:hover {
  border-bottom-color: var(--color-accent);
  color: var(--color-accent);
}

@media (min-width: 768px) {
  .services-list {
    gap: 40px;
  }

  .service-item {
    min-height: 65vh;
  }

  .service-content {
    padding: 48px;
  }
}

/* Neden Biz */
.why {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-bg);
}

.why-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.why-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 11, 0.75);
}

.why-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.why-content .body-copy {
  color: #d8cdbd;
  opacity: 0.95;
}

.why-content .section-title {
  color: var(--color-text);
}

/* İletişim */
.contact {
  background: var(--color-surface);
  min-height: 100vh;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  padding-right: 0;
}

.contact-list {
  list-style: none;
  margin-top: 24px;
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-surface-2);
}

.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.contact-value {
  font-size: 1rem;
  color: var(--color-text);
  text-decoration: none;
  text-align: right;
}

a.contact-value {
  transition: color 0.3s;
}

a.contact-value:hover {
  color: var(--color-accent);
}

.contact-form-wrap {
  flex: 1;
}

.contact-form {
  background: var(--color-bg);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
}

.form-notice {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  padding: 10px 14px;
  background: var(--color-surface-2);
  border-left: 3px solid var(--color-accent);
  line-height: 1.5;
}

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-surface-2);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(198, 169, 97, 0.3);
}

.form-status {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--color-accent);
  min-height: 20px;
}

@media (min-width: 768px) {
  .contact-inner {
    flex-direction: row;
    align-items: start;
    gap: 80px;
  }

  .contact-info,
  .contact-form-wrap {
    flex: 1;
  }

  .contact-form {
    padding: 48px;
  }
}

/* Footer */
.site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-surface-2);
  padding: 32px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.footer-note {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Parallax katmanları */
.parallax-layer {
  will-change: transform;
}

/* Animasyonlar */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-bg,
  .why-bg,
  .parallax-layer {
    transform: none !important;
  }

  .hero-title,
  .hero-sub,
  .hero-ctas .btn {
    animation: none;
  }

  .scroll-indicator {
    display: none;
  }

  .service-item,
  .service-bg {
    transition: none;
  }

  .btn {
    transition: none;
    transform: none !important;
  }

  html.js .reveal {
    opacity: 1;
    visibility: visible;
    transform: none;
    clip-path: none;
    transition: none;
  }
}

/* Mobil menü görünürlüğü */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: block;
  }
}

/* Focus state */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* Outreach demo disclosure — otomatik kaldırmayın. */
.outreach-demo-notice{position:relative;z-index:9999;width:100%;padding:8px 16px;background:#111;color:#fff;font:600 12px/1.4 Arial,sans-serif;text-align:center;letter-spacing:.01em}
