/*
Theme Name: WWC Istanbul 2027
Theme URI: https://worldwatercongress.org/
Author: 20th World Water Congress
Author URI: https://worldwatercongress.org/
Description: 20th World Water Congress - Istanbul 2027 resmi WordPress teması. Statik tasarımın birebir WordPress karşılığı: hazır sayfa şablonları, yönetilebilir menü, geri sayım ve Özelleştirici ayarları ile gelir.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wwc
Tags: one-column, custom-menu, custom-logo, featured-images, translation-ready
*/

/* ============================================================
   20th World Water Congress – Istanbul 2027
   Statik site stil dosyası
   Renkleri değiştirmek için sadece :root bloğunu düzenlemen yeterli.
   ============================================================ */

:root{
  --navy:        #0d2c56;   /* ana lacivert */
  --navy-deep:   #08203f;   /* koyu lacivert (hero / footer) */
  --navy-soft:   #14477f;
  --cyan:        #2ea3dd;   /* vurgu mavisi */
  --cyan-light:  #5cc3ef;
  --ink:         #1b2a3d;   /* gövde metni */
  --muted:       #5b6b80;   /* soluk metin */
  --line:        #dde6ef;
  --bg:          #ffffff;
  --bg-soft:     #f4f7fb;   /* welcome bölümü zemini */
  --bg-blue:     #e6f0fa;   /* özellik şeridi zemini */
  --radius:      10px;
  --shadow-sm:   0 2px 10px rgba(13,44,86,.06);
  --shadow-md:   0 10px 30px rgba(13,44,86,.10);
  --max:         1180px;
}

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

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
  max-width:100%;
}

body{
  margin:0;
  font-family:"Poppins", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  font-size:15px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  max-width:100%;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3{ margin:0; line-height:1.2; font-weight:700; color:var(--navy); }
p{ margin:0 0 1em; }
svg{ display:block; }

.container{
  width:100%;
  max-width:var(--max);
  margin-inline:auto;
  padding-inline:24px;
}

/* ---------- Butonlar ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:13px 26px;
  border-radius:6px;
  font-weight:600; font-size:14px;
  border:1.5px solid transparent;
  transition:.25s ease;
  white-space:nowrap;
}
.btn .arrow{ width:18px; height:18px; transition:transform .25s ease; }
.btn:hover .arrow{ transform:translateX(4px); }

.btn-ghost{ color:#fff; border-color:rgba(255,255,255,.85); background:rgba(255,255,255,.06); }
.btn-ghost:hover{ background:#fff; color:var(--navy); border-color:#fff; }

.btn-primary{ color:#fff; background:var(--navy); }
.btn-primary:hover{ background:var(--navy-soft); }


/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:sticky; top:0; z-index:60;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; gap:28px;
  min-height:86px;
  min-width:0;
}

/* --- logo --- */
.brand{ display:flex; align-items:center; flex-shrink:0; }
.brand-mark{
  display:block;
  height:58px;
  width:auto;
  max-width:min(200px, 46vw);
  object-fit:contain;
}

/* --- ana menü --- */
.main-nav{ margin-inline:auto; }
.main-nav > ul{ display:flex; align-items:center; gap:22px; }
.main-nav > ul > li{ position:relative; }
.main-nav a{
  display:flex; align-items:center; gap:5px;
  font-size:13.5px; font-weight:500; color:var(--navy);
  padding:10px 0;
  white-space:nowrap;
  transition:color .2s;
}
.submenu a{ white-space:normal; }
.main-nav a:hover{ color:var(--cyan); }
.caret{ width:9px; height:6px; }

.submenu{
  position:absolute; top:100%; left:-16px;
  min-width:230px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  box-shadow:var(--shadow-md);
  padding:8px 0;
  opacity:0; visibility:hidden; transform:translateY(8px);
  transition:.2s ease;
}
.has-sub:hover .submenu{ opacity:1; visibility:visible; transform:translateY(0); }
.submenu a{ padding:9px 18px; font-size:13px; }
.submenu a:hover{ background:var(--bg-soft); }

/* --- sağdaki aksiyonlar (hamburger: yalnızca menü sığmadığında) --- */
.header-actions{ display:flex; align-items:center; gap:16px; flex-shrink:0; margin-left:auto; }

.menu-btn{
  display:none;
  align-items:center; gap:12px;
  background:var(--navy); color:#fff;
  border:0; border-radius:6px; cursor:pointer;
  font:inherit; font-size:13.5px; font-weight:600;
  padding:12px 20px;
  transition:background .25s;
}
.menu-btn:hover{ background:var(--navy-soft); }
.burger{ display:flex; flex-direction:column; gap:3.5px; }
.burger i{ display:block; width:17px; height:2px; background:#fff; border-radius:2px; }


/* ============================================================
   HERO
   ============================================================ */
.hero{ position:relative; overflow:hidden; }
.hero-bg{
  position:absolute; inset:0;
  background-color:var(--navy-deep);
  background-size:cover; background-position:center;
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(96deg, rgba(6,26,52,.94) 0%, rgba(8,32,63,.80) 38%, rgba(9,40,76,.34) 68%, rgba(9,40,76,.18) 100%),
    linear-gradient(to top, rgba(6,26,52,.55), rgba(6,26,52,0) 45%);
}
.hero-inner{
  position:relative;
  min-height:520px;
  padding-block:74px 60px;
  display:flex; flex-direction:column; justify-content:center;
}

.hero-eyebrow{
  margin:0 0 6px;
  color:#fff; font-size:26px; font-weight:700; letter-spacing:.5px;
}
.hero-eyebrow sup{ font-size:13px; }

.hero-title{
  color:#fff;
  font-size:clamp(38px, 5.6vw, 66px);
  font-weight:800;
  letter-spacing:-.5px;
  line-height:1.03;
  margin:0;
}
.hero-rule{
  display:block; width:110px; height:3px;
  background:var(--cyan); border-radius:2px;
  margin:26px 0 20px;
}

.hero-meta{
  display:flex; align-items:center; flex-wrap:wrap; gap:14px;
  color:rgba(255,255,255,.94);
  font-size:14.5px; font-weight:500; letter-spacing:.6px;
  margin:0 0 24px;
}
.meta-item{ display:inline-flex; align-items:center; gap:9px; }
.meta-item .ico{ width:18px; height:18px; color:var(--cyan-light); }
.meta-sep{ width:1px; height:18px; background:rgba(255,255,255,.4); }

.hero-save{
  margin:0 0 2px;
  color:var(--cyan-light);
  font-size:clamp(26px, 3.4vw, 40px);
  font-weight:800; letter-spacing:.4px;
}
.hero-sub{
  margin:0 0 30px;
  color:rgba(255,255,255,.9);
  font-size:16.5px; font-weight:400;
}

/* --- geri sayım kutusu --- */
.countdown{
  position:absolute; right:24px; bottom:44px;
  display:flex;
  background:rgba(10,32,60,.55);
  border:1px solid rgba(255,255,255,.22);
  border-radius:10px;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  overflow:hidden;
}
.cd-cell{
  padding:16px 22px;
  text-align:center;
  min-width:92px;
  border-right:1px solid rgba(255,255,255,.18);
}
.cd-cell:last-child{ border-right:0; }
.cd-num{
  display:block;
  color:#fff; font-size:29px; font-weight:700; line-height:1.1;
  font-variant-numeric:tabular-nums;
}
.cd-label{
  display:block; margin-top:3px;
  color:rgba(255,255,255,.72);
  font-size:9.5px; font-weight:600; letter-spacing:1.5px;
}


/* ============================================================
   WELCOME MESSAGE
   ============================================================ */
.welcome{ background:var(--bg-soft); padding-block:74px; }
.welcome-inner{
  display:grid;
  grid-template-columns:370px 1fr;
  gap:56px;
  align-items:start;
}

.welcome-photo{
  margin:0;
  aspect-ratio:1/1.02;
  border-radius:var(--radius);
  overflow:hidden;
  background:linear-gradient(150deg,#1c4d86,#0d2c56 60%,#08203f);
  box-shadow:var(--shadow-md);
}
/* Fotoğraf varsa kutuyu doldurur, yoksa (onerror) degrade zemin kalır. */
.welcome-photo img{ width:100%; height:100%; object-fit:cover; object-position:center top; }

.eyebrow{
  display:flex; flex-direction:column; align-items:flex-start; gap:12px;
  margin:0 0 18px;
  color:var(--cyan);
  font-size:12px; font-weight:700; letter-spacing:2.2px;
}
.eyebrow-rule{ display:block; width:42px; height:3px; background:var(--cyan); border-radius:2px; }

.section-title{
  font-size:clamp(28px, 3.2vw, 38px);
  font-weight:700;
  margin:0 0 26px;
}

.welcome-quote{ position:relative; margin:0 0 30px; padding-left:34px; }
.quote-mark{
  position:absolute; left:-2px; top:-12px;
  font-size:64px; line-height:1; font-weight:700;
  color:#c8ddf1;
  font-family:Georgia, serif;
}
.welcome-quote p{ margin:0; color:var(--muted); font-size:15px; line-height:1.85; }

.welcome-foot{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:32px; flex-wrap:wrap;
}
.signature{ width:110px; height:auto; margin-bottom:8px; opacity:.85; }
.signer-name{ margin:0 0 2px; font-weight:700; font-size:16px; color:var(--navy); }
.signer-role{ margin:0; font-size:13px; color:var(--muted); line-height:1.5; }

/* Welcome slider: bakan / IWRA mesajları arasında geçiş */
.welcome-slider{ position:relative; }
.welcome-slide{ display:none; }
.welcome-slide.is-active{ display:grid; animation:welcomeFade .6s ease; }
@keyframes welcomeFade{ from{ opacity:0; } to{ opacity:1; } }

.welcome-dots{ display:flex; justify-content:center; gap:10px; margin-top:38px; }
.welcome-dot{
  width:10px; height:10px; padding:0; border:none; border-radius:50%;
  background:#c9d8e8; cursor:pointer;
  transition:background .25s ease, transform .25s ease;
}
.welcome-dot:hover{ background:var(--navy); }
.welcome-dot.is-active{ background:var(--cyan); transform:scale(1.25); }


/* ============================================================
   EXPLORE THE CONGRESS
   ============================================================ */
.explore{ padding-block:72px 84px; }

.section-heading{
  text-align:center;
  font-size:clamp(22px, 2.6vw, 28px);
  font-weight:700; letter-spacing:1.2px;
  margin:0 0 46px;
}
.heading-rule{
  display:block; width:56px; height:3px;
  background:var(--cyan); border-radius:2px;
  margin:16px auto 0;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:22px;
}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex; flex-direction:column;
  box-shadow:var(--shadow-sm);
  transition:transform .28s ease, box-shadow .28s ease;
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }

.card-media{
  position:relative;
  aspect-ratio:16/10;
  background:linear-gradient(140deg,#2f7fc4,#12457e 55%,#0d2c56);
}
/* Kart görseli varsa alanı doldurur, yoksa (onerror) degrade zemin kalır. */
.card-media img{ width:100%; height:100%; object-fit:cover; }
.card-ico{
  position:absolute; left:16px; bottom:-20px;
  width:42px; height:42px;
  display:grid; place-items:center;
  background:var(--navy);
  color:#fff;
  border-radius:50%;
  border:3px solid #fff;
}
.card-ico svg{ width:20px; height:20px; }

.card-body{ padding:32px 18px 20px; display:flex; flex-direction:column; flex:1; }
.card-body h3{ font-size:15.5px; margin:0 0 9px; }
.card-body p{ font-size:12.5px; color:var(--muted); line-height:1.65; margin:0 0 16px; flex:1; }

.card-link{
  display:inline-flex; align-items:center; gap:7px;
  font-size:12.5px; font-weight:600; color:var(--cyan);
}
.card-link .arrow{ width:15px; height:15px; transition:transform .25s; }
.card-link:hover .arrow{ transform:translateX(4px); }


/* ============================================================
   PARTNERS
   ============================================================ */
.partners{ border-top:1px solid var(--line); padding-block:34px; }
.partners-inner{
  display:flex; align-items:center; justify-content:center;
  gap:56px; flex-wrap:wrap;
}
.partners img{
  height:54px; width:auto; max-width:min(160px, 42vw);
  object-fit:contain;
  filter:grayscale(1); opacity:.6;
  transition:.3s ease;
}
.partners img:hover{ filter:none; opacity:1; }


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  position:relative;
  background:var(--navy-deep);
  color:#fff;
  overflow:hidden;
}
/* dekoratif dalga deseni */
.site-footer::after{
  content:"";
  position:absolute; right:-60px; bottom:-40px;
  width:520px; height:220px;
  background:
    radial-gradient(closest-side, rgba(46,163,221,.20), transparent 70%);
  pointer-events:none;
}

.footer-inner{
  position:relative; z-index:1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-block:36px;
}

.footer-social{ text-align:center; }
.footer-social p{ margin:0 0 12px; font-size:12.5px; color:rgba(255,255,255,.65); }
.social-row{ display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }
.social-row a{
  width:40px; height:40px;
  display:inline-flex; align-items:center; justify-content:center;
  border:1.4px solid rgba(255,255,255,.35);
  border-radius:50%;
  color:#fff;
  transition:.25s ease;
  flex-shrink:0;
}
.social-row a svg{
  width:18px; height:18px;
  display:block;
  flex-shrink:0;
}
.social-row a:hover{ background:var(--cyan); border-color:var(--cyan); }

.footer-bottom{
  position:relative; z-index:1;
  border-top:1px solid rgba(255,255,255,.13);
}
.footer-bottom .container{
  display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap;
  padding-block:16px;
}
.footer-bottom p{ margin:0; font-size:12px; color:rgba(255,255,255,.55); }
.footer-bottom a:hover{ color:#fff; }


/* ============================================================
   TAM EKRAN MENÜ (akordeon alt menüler)
   ============================================================ */
.overlay-menu{
  position:fixed; inset:0; z-index:90;
  background:rgba(8,32,63,.98);
  display:grid; place-items:center;
  padding:72px 20px 32px;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
}
.overlay-menu[hidden]{ display:none; }
.overlay-close{
  position:absolute; top:18px; right:20px;
  background:none; border:0; cursor:pointer;
  color:#fff; font-size:44px; line-height:1;
  z-index:2;
}
.overlay-menu nav{
  width:100%;
  max-width:420px;
  max-height:none;
  overflow:visible;
  padding:0;
}
.overlay-menu nav > ul{ text-align:left; }
.overlay-menu nav > ul > li{ border-bottom:1px solid rgba(255,255,255,.1); }
.overlay-menu nav > ul > li > a,
.overlay-parent > a{
  display:block;
  padding:14px 8px;
  color:#fff; font-size:20px; font-weight:600;
  transition:color .2s;
}
.overlay-menu nav > ul > li > a:hover,
.overlay-parent > a:hover{ color:var(--cyan-light); }

.overlay-parent{
  display:flex; align-items:center; gap:8px;
}
.overlay-parent > a{ flex:1; min-width:0; }
.overlay-acc{
  flex-shrink:0;
  width:44px; height:44px;
  display:inline-flex; align-items:center; justify-content:center;
  background:transparent; border:0; border-radius:6px;
  color:#fff; cursor:pointer;
  transition:background .2s, transform .25s;
}
.overlay-acc:hover{ background:rgba(255,255,255,.08); }
.overlay-acc .caret{
  width:12px; height:8px;
  transition:transform .25s ease;
}
.overlay-group.is-open > .overlay-parent .overlay-acc .caret{
  transform:rotate(180deg);
}
.overlay-sub{
  display:none;
  margin:0 0 10px;
  padding:0 8px 8px 16px;
}
.overlay-group.is-open > .overlay-sub{ display:block; }
.overlay-sub a{
  display:block;
  padding:9px 0;
  font-size:15px; font-weight:500;
  color:rgba(255,255,255,.72);
  transition:color .2s;
}
.overlay-sub a:hover{ color:var(--cyan-light); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1180px){
  .main-nav{ display:none; }
  .menu-btn{ display:flex; }
  .header-inner{ justify-content:space-between; }
}

@media (max-width:1100px){
  .card-grid{ grid-template-columns:repeat(3,1fr); }
}

@media (max-width:980px){
  .welcome-inner{ grid-template-columns:1fr; gap:34px; }
  .welcome-photo{ max-width:380px; width:100%; aspect-ratio:1/1; }
  .container{ padding-inline:20px; }
  .countdown{ right:16px; bottom:24px; }
  .cd-cell{ min-width:0; padding:14px 14px; }
}

@media (max-width:760px){
  .card-grid{ grid-template-columns:repeat(2,1fr); gap:16px; }
  .countdown{ position:static; margin-top:34px; width:100%; max-width:100%; }
  .cd-cell{ flex:1; min-width:0; padding:13px 8px; }
  .cd-num{ font-size:22px; }
  .hero-inner{ min-height:auto; padding-block:56px; }
  .hero-title{ font-size:clamp(32px, 10vw, 56px); }
  .hero-meta{ flex-direction:column; align-items:flex-start; gap:10px; }
  .meta-sep{ display:none; }
  .brand-mark{ height:48px; }
  .header-inner{ min-height:70px; }
  .menu-btn{ padding:11px 14px; }
  .menu-btn-label{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
  .page-hero .container{ padding-block:48px 42px; }
  .page-body{ padding-block:40px 56px; }
  .cta{ flex-direction:column; align-items:flex-start; }
}

@media (max-width:520px){
  .card-grid{ grid-template-columns:1fr; }
  .partners-inner{ gap:30px; }
  .partners img{ height:42px; }
  .footer-bottom .container{ justify-content:center; text-align:center; }
  .container{ padding-inline:16px; }
  .overlay-menu nav > ul > li > a,
  .overlay-parent > a{ font-size:18px; }
  .brand-mark{ height:42px; }
}

/* ============================================================
   İÇ SAYFALAR
   ============================================================ */

/* aktif menü öğesi */
.main-nav > ul > li.active > a{ color:var(--cyan); }

/* --- sayfa başlık bandı --- */
.page-hero{ position:relative; overflow:hidden; background:var(--navy-deep); }
.page-hero-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center 35%;
  opacity:.42;
}
.page-hero::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(96deg, rgba(6,26,52,.92) 0%, rgba(8,32,63,.72) 55%, rgba(9,40,76,.42) 100%);
}
.page-hero .container{ position:relative; z-index:2; padding-block:64px 58px; }
.crumb{
  margin:0 0 10px;
  color:var(--cyan-light);
  font-size:11.5px; font-weight:700; letter-spacing:2.2px;
}
.page-hero h1{
  color:#fff; margin:0;
  font-size:clamp(28px, 4vw, 44px);
  font-weight:700; letter-spacing:-.3px;
}
.page-lede{
  margin:14px 0 0;
  color:rgba(255,255,255,.82); font-size:15.5px;
}

/* --- sayfa gövdesi --- */
.page-body{ padding-block:56px 78px; }
.page-body > .container > *:first-child{ margin-top:0; }

.block-head{ margin:52px 0 24px; }
.block-head h2{
  font-size:clamp(20px, 2.4vw, 26px);
  font-weight:700;
  padding-bottom:12px;
  border-bottom:2px solid var(--line);
  position:relative;
}
.block-head h2::after{
  content:""; position:absolute; left:0; bottom:-2px;
  width:52px; height:2px; background:var(--cyan);
}
.block-sub{ margin:12px 0 0; color:var(--muted); font-size:14px; }

/* --- düz metin --- */
.prose{ width:100%; }
.prose p{ color:var(--ink); font-size:15px; line-height:1.85; margin:0 0 1.1em; }
.prose strong{ color:var(--navy); font-weight:600; }
.prose ul{ margin:0 0 1.2em; padding-left:0; }
.prose li{
  position:relative; padding-left:26px; margin-bottom:.7em;
  color:var(--ink); font-size:15px; line-height:1.8;
}
.prose li::before{
  content:""; position:absolute; left:2px; top:.72em;
  width:7px; height:7px; border-radius:50%; background:var(--cyan);
}
.prose a{ color:var(--cyan); text-decoration:underline; text-underline-offset:2px; }

/* --- bilgi notu --- */
.notice{
  display:flex; gap:15px; align-items:flex-start;
  background:var(--bg-blue);
  border-left:3px solid var(--cyan);
  border-radius:6px;
  padding:20px 22px;
  margin:26px 0;
  width:100%;
}
.notice-ico{ flex-shrink:0; color:var(--navy); }
.notice-ico svg{ width:22px; height:22px; }
.notice p{ margin:0; font-size:14px; line-height:1.7; color:var(--navy); }

/* --- üye listeleri --- */
.mem-block{ margin-bottom:52px; }
.mem-head{
  display:flex; align-items:baseline; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
  padding-bottom:12px; margin-bottom:22px;
  border-bottom:2px solid var(--line);
}
.mem-head h2{ font-size:20px; font-weight:700; }
.mem-count{
  font-size:11.5px; font-weight:600; letter-spacing:1.4px;
  color:var(--cyan); text-transform:uppercase;
}
.mem-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.mem{
  background:#fff;
  border:1px solid var(--line);
  border-left:3px solid var(--cyan);
  border-radius:8px;
  padding:18px 20px;
  box-shadow:var(--shadow-sm);
}
.mem-role{
  margin:0 0 7px;
  font-size:10.5px; font-weight:700; letter-spacing:1.4px;
  color:var(--cyan); text-transform:uppercase;
}
.mem-name{ font-size:15.5px; font-weight:700; margin:0 0 6px; }
.mem-org{ margin:0; font-size:12.5px; line-height:1.6; color:var(--muted); }

/* --- hub kartları --- */
.hub-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin:26px 0; }
.hub-card{
  display:flex; flex-direction:column;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px 22px;
  box-shadow:var(--shadow-sm);
  transition:transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}
.hub-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:#c3d8ee; }
.hub-ico{
  width:46px; height:46px; margin-bottom:16px;
  display:grid; place-items:center;
  border:1.6px solid var(--cyan);
  border-radius:50%;
  color:var(--navy);
}
.hub-ico svg{ width:22px; height:22px; }
.hub-card h3{ font-size:16px; margin:0 0 8px; }
.hub-card p{ font-size:13px; color:var(--muted); line-height:1.65; margin:0 0 16px; flex:1; }
.hub-link{
  display:inline-flex; align-items:center; gap:7px;
  font-size:12.5px; font-weight:600; color:var(--cyan);
}
.hub-link .arrow{ width:15px; height:15px; transition:transform .25s; }
.hub-card:hover .hub-link .arrow{ transform:translateX(4px); }

/* --- bilgi ızgarası --- */
.info-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin:26px 0; }
.info-cell{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:8px;
  padding:22px 20px;
}
.info-ico{
  width:42px; height:42px; margin-bottom:14px;
  display:grid; place-items:center;
  background:#fff; border:1.5px solid var(--cyan);
  border-radius:50%; color:var(--navy);
}
.info-ico svg{ width:20px; height:20px; }
.info-label{
  margin:0 0 4px;
  font-size:10.5px; font-weight:700; letter-spacing:1.4px;
  color:var(--cyan); text-transform:uppercase;
}
.info-value{ margin:0 0 7px; font-size:17px; font-weight:700; color:var(--navy); }
.info-note{ margin:0; font-size:12.5px; line-height:1.6; color:var(--muted); }

/* --- numaralı liste --- */
.num-list{ display:flex; flex-direction:column; gap:16px; margin:26px 0; }
.num-card{
  display:flex; gap:22px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px 26px;
  box-shadow:var(--shadow-sm);
}
.num{
  flex-shrink:0;
  font-size:30px; font-weight:800; line-height:1;
  color:#cfe1f2;
  font-variant-numeric:tabular-nums;
}
.num-card h3{ font-size:17px; margin:0 0 9px; }
.num-card p{ font-size:14px; line-height:1.75; color:var(--muted); margin:0 0 13px; }
.tag{
  display:inline-block;
  padding:5px 13px;
  background:var(--bg-blue);
  color:var(--navy);
  border-radius:99px;
  font-size:11.5px; font-weight:600; letter-spacing:.4px;
}

/* --- akordiyon --- */
.acc-list{ margin:26px 0; width:100%; }
.acc{
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  margin-bottom:10px;
  overflow:hidden;
}
.acc summary{
  cursor:pointer; list-style:none;
  padding:16px 48px 16px 20px;
  font-size:14.5px; font-weight:600; color:var(--navy);
  position:relative;
}
.acc summary::-webkit-details-marker{ display:none; }
.acc summary::after{
  content:""; position:absolute; right:20px; top:50%;
  width:9px; height:9px; margin-top:-6px;
  border-right:2px solid var(--cyan); border-bottom:2px solid var(--cyan);
  transform:rotate(45deg); transition:transform .25s;
}
.acc[open] summary::after{ transform:rotate(-135deg); margin-top:-2px; }
.acc[open] summary{ background:var(--bg-soft); }
.acc-body{ padding:4px 20px 18px; }
.acc-body p{ margin:0; font-size:14px; line-height:1.8; color:var(--muted); }
.acc-body a{ color:var(--cyan); }

/* --- sponsor seviyeleri --- */
.tier-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin:26px 0; }
.tier{
  background:#fff;
  border:1px solid var(--line);
  border-top:4px solid var(--cyan);
  border-radius:var(--radius);
  padding:24px 24px 26px;
  box-shadow:var(--shadow-sm);
}
.tier-principal{ border-top-color:#0d2c56; }
.tier-platinum{ border-top-color:#7f95ab; }
.tier-gold{ border-top-color:#c9a227; }
.tier-silver{ border-top-color:#9fadbb; }
.tier-badge{
  display:inline-block; margin-bottom:9px;
  font-size:10.5px; font-weight:700; letter-spacing:1.6px;
  color:var(--cyan); text-transform:uppercase;
}
.tier h3{ font-size:19px; margin:0 0 11px; }
.tier p{ margin:0; font-size:13.5px; line-height:1.75; color:var(--muted); }

/* --- iletişim kartları --- */
.con-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin:26px 0; }
.con-card{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px 24px;
}
.con-ico{
  width:46px; height:46px; margin-bottom:16px;
  display:grid; place-items:center;
  background:#fff; border:1.5px solid var(--cyan);
  border-radius:50%; color:var(--navy);
}
.con-ico svg{ width:22px; height:22px; }
.con-card h3{ font-size:15.5px; margin:0 0 12px; line-height:1.4; }
.con-card p{ margin:0 0 9px; font-size:13.5px; line-height:1.7; color:var(--muted); }
.con-card a{ color:var(--cyan); word-break:break-word; }

/* --- galeri --- */
.gallery{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin:26px 0; }
.gallery figure{ margin:0; }
.gallery img{
  width:100%; aspect-ratio:3/2; object-fit:cover;
  border-radius:8px; box-shadow:var(--shadow-sm);
}
.gallery figcaption{ margin-top:9px; font-size:12px; color:var(--muted); line-height:1.5; }

.wide-figure{ margin:26px 0; }
.wide-figure img{ width:100%; border-radius:var(--radius); border:1px solid var(--line); }

/* --- ana tema kutusu --- */
.main-theme{
  background:linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius:var(--radius);
  padding:38px 36px;
  margin-bottom:10px;
}
.main-theme-label{
  margin:0 0 10px;
  font-size:11px; font-weight:700; letter-spacing:2.2px;
  color:var(--cyan-light); text-transform:uppercase;
}
.main-theme h2{
  margin:0; color:#fff;
  font-size:clamp(22px, 3vw, 32px); font-weight:700; line-height:1.25;
}

/* --- alt eylem çağrısı --- */
.cta{
  display:flex; align-items:center; justify-content:space-between;
  gap:26px; flex-wrap:wrap;
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px 30px;
  margin-top:44px;
}
.cta p{ margin:0; font-size:16px; font-weight:600; color:var(--navy); }

/* --- logo bloğu --- */
.logos-block{ justify-content:flex-start; padding-block:12px; }

/* --- ızgaralar: taşmayı önle --- */
.mem-grid, .hub-grid, .info-grid, .con-grid, .gallery, .tier-grid, .card-grid, .welcome-inner{
  width:100%;
  min-width:0;
}
.mem, .hub-card, .info-cell, .con-card, .tier, .card, .num-card{
  min-width:0;
  max-width:100%;
}

/* --- iç sayfa responsive --- */
@media (max-width:980px){
  .mem-grid, .hub-grid, .info-grid, .con-grid, .gallery{ grid-template-columns:repeat(2,1fr); }
  .main-theme{ padding:30px 24px; }
  .notice{ padding:16px 18px; }
}
@media (max-width:640px){
  .mem-grid, .hub-grid, .info-grid, .con-grid, .gallery, .tier-grid{ grid-template-columns:1fr; }
  .num-card{ flex-direction:column; gap:10px; padding:22px; }
  .main-theme{ padding:28px 20px; }
  .cta{ padding:20px; }
  .mem-head{ gap:8px; }
}


/* ============================================================
   WORDPRESS UYUMLULUK EKLERİ
   (statik sitede olmayan, WordPress'in ürettiği sınıflar)
   ============================================================ */

/* Yönetici çubuğu açıkken yapışkan başlığın altında kalmasın */
.admin-bar .site-header{ top:32px; }
@media (max-width:782px){ .admin-bar .site-header{ top:46px; } }

/* Ekran okuyucu metni */
.screen-reader-text{
  border:0; clip:rect(1px,1px,1px,1px); clip-path:inset(50%);
  height:1px; width:1px; margin:-1px; padding:0;
  overflow:hidden; position:absolute !important; word-wrap:normal !important;
}
.screen-reader-text:focus{
  background:#fff; clip:auto !important; clip-path:none;
  color:var(--navy); display:block; font-size:14px; font-weight:600;
  height:auto; left:8px; top:8px; line-height:normal;
  padding:14px 22px; text-decoration:none; width:auto; z-index:100000;
  border-radius:6px; box-shadow:var(--shadow-md);
}

/* Editör (Gutenberg) çıktısı .prose içinde düzgün görünsün */
.prose img,
.prose figure img{ max-width:100%; height:auto; border-radius:var(--radius); }
.prose figure{ margin:22px 0; }
.prose figcaption,
.wp-caption-text{ font-size:13px; color:var(--muted); text-align:center; margin-top:8px; }
.prose .alignleft{ float:left; margin:6px 24px 16px 0; }
.prose .alignright{ float:right; margin:6px 0 16px 24px; }
.prose .aligncenter{ display:block; margin-inline:auto; }
.prose .alignwide,
.prose .alignfull{ margin-inline:0; }
.prose blockquote{
  margin:24px 0; padding:4px 0 4px 22px;
  border-left:3px solid var(--cyan); color:var(--muted);
}
.prose table{ width:100%; border-collapse:collapse; margin:22px 0; }
.prose th,
.prose td{ border:1px solid var(--line); padding:10px 14px; text-align:left; }
.prose th{ background:var(--bg-soft); font-weight:600; }
.prose pre{
  background:var(--bg-soft); border:1px solid var(--line);
  border-radius:var(--radius); padding:16px; overflow-x:auto;
}
.prose .wp-block-button__link{
  display:inline-flex; align-items:center; gap:10px;
  padding:13px 26px; border-radius:6px;
  font-weight:600; font-size:14px; color:#fff; background:var(--navy);
}

/* Blog / arşiv listesi (temada blog kullanılırsa) */
.post-list{
  display:grid; gap:26px;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  margin-top:8px;
}
.post-item{
  border:1px solid var(--line); border-radius:var(--radius);
  background:#fff; box-shadow:var(--shadow-sm); overflow:hidden;
  display:flex; flex-direction:column;
}
.post-item .post-thumb img{ display:block; width:100%; height:190px; object-fit:cover; }
.post-item .post-body{ padding:22px 24px 26px; display:flex; flex-direction:column; gap:10px; }
.post-item h2{ font-size:18px; line-height:1.35; color:var(--navy); margin:0; }
.post-item h2 a{ color:inherit; }
.post-item h2 a:hover{ color:var(--cyan); }
.post-meta{ font-size:12.5px; color:var(--muted); letter-spacing:.04em; text-transform:uppercase; }
.post-item p{ margin:0; color:var(--muted); font-size:14px; }

.wwc-pagination{ margin-top:38px; display:flex; justify-content:center; }
.wwc-pagination .page-numbers{
  display:inline-block; min-width:38px; text-align:center;
  padding:8px 12px; margin:0 4px;
  border:1px solid var(--line); border-radius:6px;
  color:var(--navy); font-size:14px; font-weight:600;
}
.wwc-pagination .page-numbers.current,
.wwc-pagination .page-numbers:hover{ background:var(--navy); color:#fff; border-color:var(--navy); }

/* Arama formu */
.wwc-search{ display:flex; gap:10px; margin:0 0 30px; max-width:520px; }
.wwc-search input[type="search"]{
  flex:1; min-width:0; padding:12px 16px; font:inherit; font-size:14px;
  border:1px solid var(--line); border-radius:6px; color:var(--ink);
}
.wwc-search button{
  padding:12px 22px; border:0; border-radius:6px; cursor:pointer;
  background:var(--navy); color:#fff; font-weight:600; font-size:14px;
}
.wwc-search button:hover{ background:var(--navy-soft); }
