@charset "UTF-8";
/* CSS Document */

:root {
    --black: #111110;
    --white: #fafaf8;
    --gray-100: #f2f1ee;
    --gray-200: #e0dfd9;
    --gray-400: #a8a79f;
    --gray-700: #444441;
    --purple-50: #EEEDFE;
    --purple-200: #AFA9EC;
    --purple-400: #7F77DD;
    --purple-600: #534AB7;
    --purple-800: #3C3489;
    --font-display: 'Unbounded', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-mono: 'DM Mono', monospace;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--white);
    color: var(--gray-700);
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
  }

.angled-top {
  width: 100%;
  height: 150px;
  background-color: #dddaea;
  clip-path: polygon(0 100%, 100% 100%, 0 0);
    z-index:1000000000000;
}

.angled-top-footer {
  width: 100%;
  height: 100px;
  background-color: #dddaea;
  clip-path: polygon(0 100%, 100% 100%, 0 0);
    z-index:1000000000000;
}



  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px; height: 56px;
    background: transparent;
    transition: background .3s, border-bottom .3s;
  }
  nav.scrolled {
    background: rgba(17,17,16,.92);
    border-bottom: 1px solid rgba(127,119,221,.2);
    backdrop-filter: blur(12px);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 13px; font-weight: 400; letter-spacing: .2em;
    color: var(--white); text-decoration: none; text-transform: uppercase;
  }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
    color: rgba(250,250,248,.6); text-decoration: none; text-transform: uppercase;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--purple-200); }
  .nav-btn {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
    color: var(--white) !important; border: 1px solid rgba(127,119,221,.5);
    padding: 6px 16px; border-radius: 2px; text-transform: uppercase;
    transition: background .2s, border-color .2s !important;
  }
  .nav-btn:hover { background: var(--purple-600) !important; border-color: var(--purple-600) !important; color: var(--white) !important; }

  /* HERO */
  .hero {
    position: relative; width: 100%; height: 100vh; min-height: 600px;
    overflow: hidden; display: flex; align-items: center; justify-content: center;
  }

  /* SEÇENEK A: Video arkaplan */
  .hero-video-bg {
    position: absolute; inset: 0; z-index: 0;
    background: var(--black);
  }
  .hero-video-bg video {
    width: 100%; height: 100%; object-fit: cover; opacity: .5;
  }
  /* Video yoksa animasyonlu fallback */
  .hero-video-fallback {
    position: absolute; inset: 0;
    background: var(--black);
    overflow: hidden;
  }
  .falling-word {
    position: absolute;
    font-family: var(--font-display);
    font-weight: 200;
    color: rgba(250,250,248,.06);
    animation: wordfall linear infinite;
    white-space: nowrap;
    pointer-events: none;
  }
  @keyframes wordfall {
    0% { transform: translateY(-120px) scale(.8); opacity: 0; }
    10% { opacity: 1; }
    60% { opacity: 1; }
    100% { transform: translateY(110vh) scale(1.4); opacity: 0; }
  }

  /* SEÇENEK B: Harita animasyonu (JS ile çizilir) */
  .hero-map-bg {
    position: absolute; inset: 0; z-index: 0;
    background: var(--black);
  }
  #hero-canvas {
    position: absolute; inset: 0; width: 100%; height: 100%; opacity: .45;
  }

  /* SEÇENEK C: Slider */
  .hero-slider {
    position: absolute; inset: 0; z-index: 0;
  }
  .slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.2s ease;
  }
  .slide.active { opacity: 1; }
  .slide::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(17,17,16,.85) 0%, rgba(17,17,16,.4) 100%);
  }

  /* HERO overlay ve içerik */
  .hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, rgba(17,17,16,.2) 0%, rgba(17,17,16,.6) 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 0 24px; max-width: 860px;
  }
  .hero-eyebrow {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: .25em;
    color: var(--purple-200); text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0; animation: fadeup .8s .3s forwards;
  }
  .hero-title {
    font-family: var(--font-serif); font-weight: 300;
    font-size: clamp(42px, 7vw, 96px); line-height: 1.05;
    color: var(--white); letter-spacing: -.01em;
    margin-bottom: 28px;
    opacity: 0; animation: fadeup .8s .5s forwards;
  }
  .hero-title em {
    font-style: italic; color: var(--purple-200);
  }
  .hero-subtitle {
    font-family: var(--font-serif); font-weight: 300; font-style: italic;
    font-size: clamp(16px, 2vw, 22px); color: rgba(250,250,248,.65);
    margin-bottom: 48px; max-width: 560px; margin-left: auto; margin-right: auto;
    opacity: 0; animation: fadeup .8s .7s forwards;
  }
  .hero-actions {
    display: flex; gap: 16px; justify-content: center; align-items: center;
    opacity: 0; animation: fadeup .8s .9s forwards;
  }
  .btn-primary {
    font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em;
    text-transform: uppercase; text-decoration: none;
    background: var(--purple-600); color: var(--white);
    padding: 14px 32px; border-radius: 2px;
    transition: background .2s, transform .15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--purple-400); transform: translateY(-1px); }
  .btn-ghost {
    font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em;
    text-transform: uppercase; text-decoration: none;
    color: rgba(250,250,248,.7);
    border: 1px solid rgba(250,250,248,.2);
    padding: 14px 32px; border-radius: 2px;
    transition: border-color .2s, color .2s;
    display: inline-block;
  }
  .btn-ghost:hover { border-color: var(--purple-400); color: var(--purple-200); }

  .hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; animation: fadeup .8s 1.2s forwards;
  }
  .hero-scroll span {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em;
    color: rgba(250,250,248,.35); text-transform: uppercase;
  }
  .scroll-line {
    width: 1px; height: 40px; background: rgba(127,119,221,.4);
    animation: scrollpulse 2s ease-in-out infinite;
  }
  @keyframes scrollpulse {
    0%,100% { opacity: .3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
  }

  @keyframes fadeup {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* STORIES SECTION */
  .stories-section {
    background: var(--white); padding: 100px 0 80px;
  }
  .section-label {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
    color: var(--purple-400); text-transform: uppercase;
    text-align: center; margin-bottom: 16px;
  }
  .section-title {
    font-family: var(--font-serif); font-weight: 300;
    font-size: clamp(32px, 4vw, 52px); line-height: 1.1;
    color: var(--black); text-align: center;
    margin-bottom: 64px;
  }
  .section-title em { font-style: italic; color: var(--purple-600); }

  .stories-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px; background: var(--gray-200);
    max-width: 1200px; margin: 0 auto;
    border: 1px solid var(--gray-200);
  }
  .story-card {
    background: var(--white); padding: 40px 36px;
    cursor: pointer; transition: background .2s;
    position: relative; overflow: hidden;
  }
  .story-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 3px; height: 0; background: var(--purple-400);
    transition: height .3s;
  }
  .story-card:hover { background: var(--gray-100); }
  .story-card:hover::before { height: 100%; }
  .story-tag {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: .15em;
    color: var(--purple-400); text-transform: uppercase; margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
  }
  .story-tag::before {
    content: ''; display: block; width: 20px; height: 1px; background: var(--purple-400);
  }
  .story-title {
    font-family: var(--font-serif); font-weight: 400; font-size: 22px;
    color: var(--black); line-height: 1.25; margin-bottom: 12px;
  }
  .story-excerpt {
    font-family: var(--font-serif); font-style: italic;
    font-size: 15px; color: var(--gray-400); line-height: 1.6;
    margin-bottom: 24px;
  }
  .story-meta {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em;
    color: var(--gray-400); text-transform: uppercase;
    display: flex; align-items: center; justify-content: space-between;
  }
  .fork-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--purple-50); color: var(--purple-600);
    padding: 3px 10px; border-radius: 2px; font-size: 10px;
  }
  .fork-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--purple-400);
  }

  /* ABOUT STRIP */
  .about-strip {
    background: var(--black); padding: 80px 40px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    max-width: 1200px; margin: 0 auto;
  }
  .about-left {}
  .about-label {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
    color: var(--purple-400); text-transform: uppercase; margin-bottom: 20px;
  }
  .about-title {
    font-family: var(--font-serif); font-weight: 300;
    font-size: clamp(28px, 3vw, 44px); color: var(--white);
    line-height: 1.15; margin-bottom: 24px;
  }
  .about-title em { font-style: italic; color: var(--purple-200); }
  .about-text {
    font-family: var(--font-serif); font-size: 17px;
    color: rgba(250,250,248,.6); line-height: 1.8;
  }
  .about-right {
    display: flex; flex-direction: column; justify-content: center; gap: 32px;
  }
  .about-stat {
    border-left: 1px solid rgba(127,119,221,.3); padding-left: 24px;
  }
  .stat-number {
    font-family: var(--font-display); font-size: 36px; font-weight: 200;
    color: var(--purple-200); line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: .15em;
    color: rgba(250,250,248,.4); text-transform: uppercase;
  }

  /* HOW IT WORKS */
  .how-section {
    padding: 100px 40px; background: var(--gray-100);
  }
  .how-steps {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0; max-width: 1000px; margin: 0 auto;
    position: relative;
  }
  .how-steps::before {
    content: ''; position: absolute;
    top: 28px; left: calc(16.6% + 28px); right: calc(16.6% + 28px);
    height: 1px; background: var(--purple-200); z-index: 0;
  }
  .how-step { text-align: center; padding: 0 32px; position: relative; z-index: 1; }
  .step-num {
    width: 56px; height: 56px; border-radius: 50%;
    border: 1px solid var(--purple-400);
    background: var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-mono); font-size: 13px;
    color: var(--purple-600);
  }
  .step-title {
    font-family: var(--font-serif); font-weight: 400; font-size: 20px;
    color: var(--black); margin-bottom: 12px;
  }
  .step-text {
    font-family: var(--font-serif); font-style: italic; font-size: 15px;
    color: var(--gray-400); line-height: 1.6;
  }

  /* FOOTER */
  footer {
    background: var(--black); padding: 48px 40px;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(127,119,221,.15);
  }
  .footer-logo {
    font-family: var(--font-display); font-size: 12px; font-weight: 400;
    letter-spacing: .25em; color: var(--white); text-transform: uppercase;
  }
  .footer-links { display: flex; gap: 28px; }
  .footer-links a {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em;
    color: rgba(250,250,248,.35); text-decoration: none; text-transform: uppercase;
    transition: color .2s;
  }
  .footer-links a:hover { color: var(--purple-200); }
  .footer-copy {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em;
    color: rgba(250,250,248,.2);
  }

  /* MODE TOGGLE (hero seçenekleri için geliştirici panel) */
  .dev-panel {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    background: rgba(17,17,16,.9); border: 1px solid rgba(127,119,221,.3);
    border-radius: 4px; padding: 12px 16px;
    backdrop-filter: blur(8px);
  }
  .dev-panel p {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em;
    color: var(--purple-200); text-transform: uppercase; margin-bottom: 8px;
  }
  .dev-panel button {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em;
    background: transparent; border: 1px solid rgba(127,119,221,.3);
    color: rgba(250,250,248,.6); padding: 5px 10px; cursor: pointer;
    margin-right: 6px; border-radius: 2px; transition: all .15s;
    text-transform: uppercase;
  }
  .dev-panel button.active,
  .dev-panel button:hover {
    background: var(--purple-600); border-color: var(--purple-600); color: var(--white);
  }



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

.editorial-input {
    width: 100%; 
    padding: 15px; 
    background-color: #f9f9f9; 
    border: 1px solid #ddd; 
    border-radius: 4px; 
    font-family: inherit; 
    font-size: 16px;
    outline: none; 
    transition: all 0.3s ease; 
}

   
.editorial-input:focus {
    border-color: #333; 
    background-color: #fff; 
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1); 
}

    
.editorial-input::placeholder {
    color: #999;
    font-weight: 300;
}






/* ============================================
   MOBİL UYARLAMA — max-width: 768px
   ============================================ */

@media (max-width: 768px) {

  /* NAV */
  nav {
    padding: 0 20px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-links a:not(.nav-btn) {
    display: none;
  }

  /* HERO */
  .hero-content {
    padding: 0 20px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .btn-primary, .btn-ghost {
    width: 100%;
    text-align: center;
  }

  /* STORIES */
  .stories-section {
    padding: 60px 0 50px;
  }
  .stories-grid {
    grid-template-columns: 1fr;
    margin: 0 16px;
  }
  .story-card {
    padding: 28px 24px;
  }

  /* ABOUT */
  .about-strip {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }
  .about-right {
    flex-direction: column;
    gap: 24px;
  }
  .about-stat {
    flex: 1 1 100%;
  }
  /* HOW IT WORKS */
  .how-section {
    padding: 60px 24px 100px;
  }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .how-steps::before {
    display: none;
  }
  .how-step {
    padding: 0 16px;
  }

  /* FOOTER */
  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 36px 24px;
  }
  .footer-links {
    gap: 20px;
  }

  /* DEV PANEL */
  .dev-panel {
    bottom: 12px;
    right: 50%;
    transform: translateX(50%);
    white-space: nowrap;
  }
}

/* ============================================
   KÜÇÜK MOBİL — max-width: 480px
   ============================================ */

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }
  .section-title {
    font-size: 28px;
    padding: 0 16px;
  }
  .about-right {
    flex-direction: column;
  }
  .about-stat {
    flex: 1 1 100%;
  }
}







