:root {
  --teal: #003B44;
  --amber: #F7AB30;
  --cream: #F6EEDB;
  --mint: #9AD8A5;
  --white: #FFFFFF;
  --gray: #6B8A8D;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--teal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.08;
  color: var(--teal);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Subscribe banner ---------- */

.subscribe-banner {
  display: block; background: var(--amber); color: var(--teal);
  text-align: center; padding: 14px 20px; font-weight: 800; font-size: 15px;
  transition: background 0.2s;
}
.subscribe-banner:hover { background: #e59a1f; }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--teal); color: var(--cream);
  border-bottom: 3px solid var(--amber);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 48px; width: 48px; border-radius: 50%; object-fit: cover; }
.brand span {
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 22px; color: var(--cream);
}

.nav-links { display: flex; gap: 30px; font-size: 15px; font-weight: 700; }
.nav-links a { position: relative; padding: 6px 0; opacity: 0.85; transition: opacity 0.2s, color 0.2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--amber); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; background: var(--amber); border-radius: 2px;
}

.lang-switch {
  color: var(--cream); opacity: 0.85; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em; margin-right: 20px;
  border: 1.5px solid rgba(246,238,219,0.5); border-radius: 999px; padding: 7px 14px;
  transition: opacity 0.2s, border-color 0.2s;
}
.lang-switch:hover { opacity: 1; border-color: var(--cream); }
.side-panel .lang-switch {
  color: var(--teal); border-color: var(--teal); opacity: 0.85; align-self: flex-start; margin: 0;
}
.side-panel .lang-switch:hover { opacity: 1; }

.nav-cta {
  background: var(--amber); color: var(--teal);
  padding: 12px 26px; border-radius: 999px;
  font-size: 14px; font-weight: 800;
  border: 2px solid var(--amber);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.nav-cta:hover { background: transparent; color: var(--amber); transform: translateY(-2px); }

.menu-toggle {
  display: none; background: none; border: 2px solid var(--cream); color: var(--cream);
  border-radius: 999px; width: 46px; height: 46px; font-size: 18px;
}

/* ---------- Side nav panel (mobile) ---------- */

.side-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 86vw);
  background: var(--cream); color: var(--teal);
  z-index: 300; padding: 100px 34px 40px;
  transform: translateX(100%); transition: transform 0.45s var(--ease);
  display: flex; flex-direction: column; gap: 30px;
}
.side-panel.open { transform: translateX(0); }
.side-panel .panel-links { display: flex; flex-direction: column; gap: 4px; }
.side-panel .panel-links a {
  font-family: 'Fraunces', serif; font-size: 24px; font-weight: 700;
  padding: 12px 0; border-bottom: 1px solid rgba(0,59,68,0.15);
}
.side-panel .panel-cta { align-self: flex-start; }
.panel-close {
  position: absolute; top: 24px; right: 24px; width: 44px; height: 44px;
  border-radius: 999px; border: 2px solid var(--teal); background: transparent; font-size: 16px; color: var(--teal);
}
.panel-overlay {
  position: fixed; inset: 0; background: rgba(0,59,68,0.55); z-index: 250;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.panel-overlay.open { opacity: 1; pointer-events: auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block; padding: 16px 32px; border-radius: 999px;
  font-size: 14px; font-weight: 800; letter-spacing: 0.02em;
  border: 2px solid currentColor; transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--amber); color: var(--teal); border-color: var(--amber); }
.btn-solid:hover { background: transparent; color: var(--amber); }
.btn-outline { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-outline:hover { background: var(--cream); color: var(--teal); }
.on-light .btn-outline { color: var(--teal); border-color: var(--teal); }
.on-light .btn-outline:hover { background: var(--teal); color: var(--cream); }

/* ---------- Hero ---------- */

.hero { position: relative; padding: 90px 0 80px; background: var(--teal); color: var(--cream); overflow: hidden; }
.hero .leaf-deco { position: absolute; opacity: 0.12; }
.hero .label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: #FFFFFF; margin-bottom: 22px; border: 1.5px solid var(--amber); border-radius: 999px; padding: 8px 18px;
}
.hero h1 { font-size: clamp(36px, 6vw, 68px); max-width: 780px; color: #FFFFFF; }
.hero h1 .accent { color: #FFFFFF; }
.hero p.lead {
  margin-top: 24px; font-size: 18px; max-width: 560px; color: rgba(246,238,219,0.85);
}
.hero .actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Sections ---------- */

section.block { padding: 90px 0; position: relative; }
.section-head { margin-bottom: 48px; max-width: 700px; }
.section-head .label {
  display: block; font-size: 13px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(28px, 4.4vw, 46px); }
.section-head p { margin-top: 18px; font-size: 17px; color: #3a5559; }

.surface-white { background: var(--white); }
.surface-mint { background: #eaf6ee; }

/* ---------- Home: intro cards ---------- */

.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.intro-card {
  background: var(--white); border: 2px solid var(--teal); border-radius: 18px;
  padding: 34px 28px; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.intro-card:hover { transform: translateY(-6px); box-shadow: 8px 8px 0 var(--amber); }
.intro-card .icon { font-size: 34px; margin-bottom: 16px; }
.intro-card h3 { font-size: 22px; margin-bottom: 10px; }
.intro-card p { font-size: 15px; color: #3a5559; margin-bottom: 18px; }
.intro-card a { font-weight: 800; color: var(--teal); border-bottom: 2px solid var(--amber); padding-bottom: 2px; }

@media (max-width: 860px) {
  .intro-grid { grid-template-columns: 1fr; }
}

/* ---------- Home: about strip ---------- */

.about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-strip .logo-badge img { width: 100%; max-width: 380px; margin: 0 auto; }
.about-strip .values { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }
.value-pill {
  background: var(--mint); color: var(--teal); font-weight: 800; font-size: 13px;
  padding: 8px 16px; border-radius: 999px;
}
@media (max-width: 860px) {
  .about-strip { grid-template-columns: 1fr; gap: 34px; text-align: center; }
  .about-strip .values { justify-content: center; }
}

/* ---------- CTA band ---------- */

.cta-band { background: var(--amber); color: var(--teal); padding: 90px 0; text-align: center; }
.cta-band h2 { font-size: clamp(28px, 5vw, 48px); margin-bottom: 20px; }
.cta-band p { font-size: 17px; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn-solid { background: var(--teal); color: var(--cream); border-color: var(--teal); }
.cta-band .btn-solid:hover { background: transparent; color: var(--teal); }

/* ---------- Bolumler grid ---------- */

.episodes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.episode-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 2px solid var(--teal); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.episode-card:hover { transform: translateY(-6px); box-shadow: 8px 8px 0 var(--mint); }
.episode-card a.thumb-link { position: relative; display: block; aspect-ratio: 16/9; background: var(--teal); overflow: hidden; }
.episode-card .thumb-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.episode-card:hover .thumb-link img { transform: scale(1.05); }
.episode-card .duration {
  position: absolute; right: 8px; bottom: 8px; background: rgba(0,59,68,0.85); color: var(--cream);
  font-size: 12px; font-weight: 800; padding: 3px 8px; border-radius: 6px;
}
.episode-card .play-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 54px; height: 54px; border-radius: 50%; background: rgba(247,171,48,0.92);
  display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 18px;
  opacity: 0; transition: opacity 0.2s;
}
.episode-card:hover .play-badge { opacity: 1; }
.episode-card .info { padding: 18px 20px 22px; }
.episode-card h3 { font-size: 17px; line-height: 1.3; margin-bottom: 8px; min-height: 44px; }
.episode-card .date { font-size: 13px; color: var(--gray); font-weight: 700; }

@media (max-width: 980px) {
  .episodes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .episodes-grid { grid-template-columns: 1fr; }
}

/* ---------- Etkinlikler ---------- */

.event-card {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: start;
  background: var(--white); border: 2px solid var(--teal); border-radius: 24px; padding: 36px;
}
.event-card .poster { border-radius: 16px; overflow: hidden; border: 2px solid var(--teal); }
.event-card .badge {
  display: inline-block; background: var(--mint); color: var(--teal); font-weight: 800;
  font-size: 12px; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.event-card h2 { font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 18px; }
.event-facts { display: flex; flex-direction: column; gap: 14px; margin: 20px 0 28px; }
.event-fact { display: flex; align-items: center; gap: 14px; font-size: 16px; font-weight: 700; }
.event-fact .ico {
  width: 40px; height: 40px; border-radius: 50%; background: var(--teal); color: var(--cream);
  display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0;
}
.event-card p.desc { font-size: 15px; color: #3a5559; margin-bottom: 26px; }

@media (max-width: 860px) {
  .event-card { grid-template-columns: 1fr; padding: 24px; }
}

.no-event {
  text-align: center; padding: 60px 20px; background: var(--white);
  border: 2px dashed var(--teal); border-radius: 20px; color: var(--gray);
}

/* ---------- Iletisim ---------- */

.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info .value-line { margin-bottom: 26px; }
.contact-info .value-line .label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); font-weight: 800; margin-bottom: 6px; }
.contact-info .value-line .value { font-size: 18px; font-weight: 700; }
.contact-info .socials { display: flex; gap: 10px; margin-top: 30px; flex-wrap: wrap; }
.contact-info .socials a {
  background: var(--teal); color: var(--cream); border-radius: 999px; padding: 10px 20px;
  font-size: 13px; font-weight: 800;
}

.contact-form {
  background: var(--white); border: 2px solid var(--teal); border-radius: 20px;
  padding: 36px; display: flex; flex-direction: column; gap: 20px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row-double { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row label { font-size: 13px; font-weight: 800; color: var(--teal); }
.form-row input, .form-row select, .form-row textarea {
  font-family: 'Nunito Sans', sans-serif; font-size: 15px; padding: 13px 14px;
  border: 2px solid #cfe0de; border-radius: 10px; background: var(--cream);
  color: var(--teal); outline: none; resize: vertical;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--amber); }
.form-row input::placeholder, .form-row textarea::placeholder { color: #8fa8aa; }
.contact-form .btn { align-self: flex-start; border-width: 2px; cursor: pointer; }
.contact-form .btn:disabled { opacity: 0.5; cursor: not-allowed; }
.hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: 14px; margin: -6px 0 0; min-height: 20px; font-weight: 700; }
.form-status.success { color: #1f7a4d; }
.form-status.error { color: #b3432b; }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .form-row-double { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */

.site-footer { padding: 60px 0 28px; background: var(--teal); color: var(--cream); }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 36px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(246,238,219,0.2);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { height: 54px; width: 54px; border-radius: 50%; }
.footer-brand span { font-family: 'Fraunces', serif; font-weight: 700; font-size: 24px; }
.footer-links { display: flex; gap: 28px; font-size: 14px; font-weight: 700; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  border: 1.5px solid var(--cream); border-radius: 999px; padding: 9px 18px;
  font-size: 12px; font-weight: 800;
}
.footer-bottom {
  padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 10px; font-size: 12px; color: rgba(246,238,219,0.65);
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  section.block { padding: 60px 0; }
  .hero { padding: 60px 0 50px; }
}
