:root {
  --bg: #faf6ec;
  --bg-alt: #f3ede0;
  --text: #1b1b1b;
  --text-muted: #55524a;
  --border: #e3dcc9;
  --green: #17a374;
  --green-dark: #0e7c58;
  --green-light: #e3f5ee;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  scroll-behavior: smooth;
}

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

/* ---------- Header / Nav ---------- */
header.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 100;
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-right { justify-content: flex-end; }

.nav-item {
  position: relative;
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-item:hover { color: var(--green-dark); }
.nav-item .chev { font-size: 10px; margin-top: 1px; }

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.02em;
}

.btn-login { font-size: 15px; }
.btn-apply {
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
}
.btn-apply:hover { background: var(--green-dark); }

/* dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
  padding: 10px 0;
  min-width: 240px;
  display: none;
  flex-direction: column;
}
.nav-item.open .dropdown { display: flex; }
.dropdown a {
  padding: 12px 24px;
  font-size: 15px;
  color: var(--text);
}
.dropdown a:hover { background: var(--green-light); color: var(--green-dark); }

/* mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; }

@media (max-width: 900px) {
  .nav-left, .nav-right { display: none; }
  .nav-toggle { display: block; }
  .nav-wrap.mobile-open .nav-left,
  .nav-wrap.mobile-open .nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    position: absolute;
    left: 0;
    background: var(--bg);
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
  }
  .nav-wrap.mobile-open .nav-left { top: 100%; }
  .nav-wrap.mobile-open .nav-right { top: calc(100% + 220px); }
  .dropdown { position: static; box-shadow: none; margin-left: 12px; }
}

/* ---------- Hero ---------- */
.hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
}
.hero .eyebrow {
  color: var(--green-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 56px;
  line-height: 1.15;
  margin: 0 0 24px;
}
.hero p.lead {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
}
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary {
  border: 1.5px solid var(--text);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
}
.btn-secondary:hover { border-color: var(--green-dark); color: var(--green-dark); }

/* ---------- Tagline hero (logo destination) ---------- */
.tagline-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 24px 60px;
  text-align: center;
}
.tagline-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 68px;
  line-height: 1.2;
  margin: 0;
}
.scroll-chevron {
  margin-top: 50px;
  font-size: 22px;
  color: var(--text-muted);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 800px) {
  .tagline-hero { padding: 80px 24px 40px; }
  .tagline-hero h1 { font-size: 40px; }
}

/* ---------- "Be in the room with" photo grid ---------- */
.room-section { text-align: center; }
.room-title {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 34px;
  margin: 0 0 32px;
}
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.room-photo {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: var(--bg-alt);
  border: 1.5px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
}
@media (max-width: 800px) {
  .room-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Coming soon / placeholder blocks ---------- */
.coming-soon-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 22px;
  border: 1.5px dashed var(--green);
  border-radius: 999px;
  color: var(--green-dark);
  font-weight: 600;
  font-style: italic;
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
}
.placeholder-card {
  border: 1.5px dashed var(--border);
  border-radius: 14px;
  padding: 28px;
  color: var(--text-muted);
  font-size: 15px;
  text-align: center;
  background: var(--bg-alt);
}

.avatar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
}
.avatar-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.avatar-placeholder .circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1.5px dashed var(--border);
}
.avatar-placeholder span { font-size: 14px; color: var(--text-muted); }

.team-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 900px;
}
.team-card {
  display: flex;
  align-items: stretch;
  gap: 24px;
}
.team-card-photo {
  width: 240px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-card-photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  color: var(--text-muted);
  border-style: dashed;
}
.team-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
}
.team-card-name {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}
.team-card-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}
.team-card-linkedin {
  font-size: 14px;
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
}
.team-card-linkedin:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .team-card { flex-direction: column; }
  .team-card-photo { width: 100%; height: 220px; }
}

.logo-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
}
.logo-placeholder {
  aspect-ratio: 3 / 2;
  border: 1.5px dashed var(--border);
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
}
.logo-card {
  aspect-ratio: 3 / 2;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.vc-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
  margin: 0 0 40px;
}
.vc-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.vc-row:hover {
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.vc-row .vc-logo {
  width: 96px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}
.vc-row .vc-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.vc-row .vc-name {
  font-size: 17px;
  font-weight: 600;
}

@media (max-width: 800px) {
  .placeholder-grid { grid-template-columns: 1fr; }
  .avatar-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-placeholder-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Simple form (Kaynaklar / Find a cofounder) ---------- */
.simple-form {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.simple-form label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.simple-form input,
.simple-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}
.simple-form textarea { resize: vertical; min-height: 100px; }
.simple-form button[disabled] {
  background: var(--bg-alt);
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  cursor: not-allowed;
  align-self: flex-start;
}
.form-note {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

.kvkk-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}
.kvkk-box p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 12px;
  line-height: 1.5;
}

/* ---------- Application wizard ---------- */
.hidden { display: none !important; }

.app-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.app-section:last-of-type { border-bottom: none; }
.app-section h2 {
  font-size: 22px;
  margin: 0 0 8px;
}
.app-section .help-text {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 18px;
  line-height: 1.6;
}
.app-section .help-text a { color: var(--green-dark); text-decoration: underline; }

.founders-box {
  border: 1.5px solid var(--text);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
}
.founder-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.founder-row:last-child { border-bottom: none; }
.founder-row .remove-founder {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 13px;
  cursor: pointer;
}
.founder-row .remove-founder:hover { color: #b33; }

.btn-dark-pill {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 15px;
  font-style: italic;
  font-family: Georgia, serif;
  cursor: pointer;
  margin-top: 14px;
}
.btn-dark-pill:hover { background: var(--green-dark); }

.cofounder-search {
  margin-top: 16px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  background: var(--bg-alt);
}
.cofounder-search-row { display: flex; gap: 10px; }
.cofounder-search-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
}
.cofounder-search-row button {
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.search-results { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
}
.search-result-item button {
  padding: 6px 14px;
  border-radius: 8px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}
.search-result-item button:hover { background: var(--green-dark); }

.toggle-buttons { display: flex; gap: 12px; }
.toggle-btn {
  flex: 1;
  padding: 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}
.toggle-btn:hover { border-color: var(--green); }
.toggle-btn.selected {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green-dark);
}

.dropzone {
  display: block;
  border: 1.5px dashed var(--border);
  border-radius: 14px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  background: var(--bg-alt);
}
.dropzone:hover, .dropzone.dragover { border-color: var(--green); background: var(--green-light); }
.dropzone .arrow { font-size: 28px; color: var(--text-muted); margin-bottom: 10px; }
.dropzone .filename { font-weight: 600; color: var(--green-dark); margin-top: 6px; font-size: 14px; }
.dropzone input[type="file"] { display: none; }
.dropzone .browse { color: var(--green-dark); text-decoration: underline; }

.cta-box {
  border: 1.5px solid var(--green);
  border-radius: 14px;
  padding: 24px;
  background: var(--green-light);
  text-align: center;
}
.cta-box p { margin: 0 0 14px; color: var(--text); }

/* ---------- Cards / intro sections on home ---------- */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.card h3 {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 26px;
  margin: 0 0 12px;
}
.card p { color: var(--text-muted); line-height: 1.65; margin: 0 0 18px; }
.card a.more { color: var(--green-dark); font-weight: 600; }
.card a.more:hover { text-decoration: underline; }

@media (max-width: 800px) {
  .hero h1 { font-size: 38px; }
  .card-grid { grid-template-columns: 1fr; }
}

/* ---------- Detail page layout ("Nedir" pages) ---------- */
.page-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 24px 30px;
}
.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 52px;
  margin: 0 0 20px;
}
.page-hero p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 0 14px;
}
.page-hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 720px;
}

.page-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px 100px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
}
.page-nav {
  position: sticky;
  top: 24px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page-nav a { font-size: 15px; color: var(--text-muted); }
.page-nav a:hover, .page-nav a.active { color: var(--green-dark); font-weight: 600; }

.page-content h2 {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 26px;
  margin: 40px 0 14px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
  font-size: 17px;
  line-height: 1.75;
  color: #2b2a26;
  margin: 0 0 18px;
  max-width: 720px;
}
.page-content ul { padding-left: 20px; max-width: 720px; }
.page-content li { font-size: 17px; line-height: 1.7; margin-bottom: 8px; }

@media (max-width: 800px) {
  .page-body { grid-template-columns: 1fr; gap: 24px; }
  .page-nav { position: static; flex-direction: row; flex-wrap: wrap; }
  .page-hero h1 { font-size: 36px; }
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: #111;
  color: #d8d5cb;
  padding: 60px 24px 30px;
}
.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-brand { max-width: 320px; }
.footer-logo { height: 56px; width: auto; display: block; border-radius: 8px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: #a9a69c; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; color: #8b887e; margin: 0 0 16px; }
.footer-col a { display: block; font-size: 15px; margin-bottom: 10px; color: #d8d5cb; }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid #2a2a2a;
  font-size: 13px;
  color: #8b887e;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
