/*
Theme Name: Mobil Sohbet
Theme URI: https://example.com/mobil-sohbet
Author: Studio
Author URI: https://example.com
Description: Mobil sesli ve görüntülü sohbet siteleri için tasarlanmış, "gelen çağrı" temalı karanlık mor-mercan renk paletine sahip haber/blog temalı WordPress teması. Kategori döngüsü, popüler yazılar, sosyal ikonlar ve özelleştirilebilir hero alanı içerir.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mobilsohbet
Tags: blog, two-columns, right-sidebar, custom-logo, custom-menu, featured-images, translation-ready
*/

/* =========================================================
   TOKENS
   ========================================================= */
:root{
  /* color */
  --night-950:#170F29;
  --night-900:#1B1330;
  --night-800:#251A44;
  --night-700:#332457;
  --night-600:#443269;
  --coral-500:#FF6F5E;
  --coral-600:#E85A4B;
  --gold-400:#F4B942;
  --gold-300:#F8CC6E;
  --cream-100:#F6EFE4;
  --cream-200:#EDE3D3;
  --mute-400:#B4A8CC;
  --mute-500:#8B7EAC;
  --line:rgba(246,239,228,0.12);
  --online:#4ADE80;

  /* type */
  --font-display:'Baloo 2', ui-rounded, 'Segoe UI', sans-serif;
  --font-body:'Manrope', -apple-system, 'Segoe UI', sans-serif;
  --font-mono:'IBM Plex Mono', ui-monospace, monospace;

  /* layout */
  --max-w: 1160px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--night-950);
  background-image:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(255,111,94,0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at -10% 20%, rgba(244,185,66,0.10), transparent 55%);
  color:var(--cream-100);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
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,h4{font-family:var(--font-display);margin:0 0 .5em;line-height:1.15;font-weight:700;}
p{margin:0 0 1.1em;color:var(--mute-400);}
button{font-family:inherit;}
:focus-visible{outline:2px solid var(--gold-400);outline-offset:3px;border-radius:4px;}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}

.container{max-width:var(--max-w);margin:0 auto;padding:0 24px;}
.screen-reader-text{position:absolute !important;clip:rect(1px,1px,1px,1px);width:1px;height:1px;overflow:hidden;}

/* eyebrow / tag style shared */
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-mono);
  font-size:11px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--gold-300);
}
.eyebrow .dot{
  width:7px;height:7px;border-radius:50%;background:var(--online);
  box-shadow:0 0 0 0 rgba(74,222,128,.6);
  animation:pulse-dot 2s infinite;
}
@keyframes pulse-dot{
  0%{box-shadow:0 0 0 0 rgba(74,222,128,.55);}
  70%{box-shadow:0 0 0 8px rgba(74,222,128,0);}
  100%{box-shadow:0 0 0 0 rgba(74,222,128,0);}
}

/* =========================================================
   SITE HEADER
   ========================================================= */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(23,15,41,0.82);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.site-header .wrap{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 24px;max-width:var(--max-w);margin:0 auto;gap:24px;
}
.site-branding{display:flex;align-items:center;gap:10px;}
.site-branding img.custom-logo{height:36px;width:auto;}
.site-title{
  font-family:var(--font-display);font-size:22px;font-weight:800;
  color:var(--cream-100);letter-spacing:-.01em;
}
.site-title .accent{color:var(--coral-500);}
.site-description{display:none;}

.main-navigation ul{display:flex;gap:6px;align-items:center;}
.main-navigation a{
  display:block;padding:10px 16px;border-radius:999px;
  font-size:14.5px;font-weight:600;color:var(--mute-400);
  transition:color .2s ease, background .2s ease;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a{
  color:var(--night-950);background:var(--gold-400);
}
.header-cta{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--coral-500);color:var(--night-950);
  font-weight:700;font-size:14px;padding:11px 20px;border-radius:999px;
  box-shadow:0 6px 20px rgba(255,111,94,.35);
  white-space:nowrap;
}
.header-cta:hover{background:var(--coral-600);}
.menu-toggle{display:none;}

@media (max-width:860px){
  .main-navigation{display:none;}
  .menu-toggle{
    display:inline-flex;background:var(--night-700);border:none;color:var(--cream-100);
    width:42px;height:42px;border-radius:12px;align-items:center;justify-content:center;
  }
}

/* =========================================================
   HERO — "GELEN ÇAĞRI" (incoming call) signature element
   ========================================================= */
.hero{padding:64px 0 88px;}
.hero .wrap{
  max-width:var(--max-w);margin:0 auto;padding:0 24px;
  display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center;
}
.hero-eyebrow{margin-bottom:18px;}
.hero h1{
  font-size:clamp(34px,4.4vw,54px);color:var(--cream-100);
  letter-spacing:-0.01em;
}
.hero h1 .hl{color:var(--coral-500);}
.hero .lede{
  font-size:17.5px;color:var(--mute-400);max-width:46ch;margin-bottom:28px;
}
.hero-actions{display:flex;align-items:center;gap:16px;flex-wrap:wrap;}
.btn-primary{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--coral-500);color:var(--night-950);
  font-weight:800;font-size:16px;padding:16px 30px;border-radius:999px;
  box-shadow:0 10px 30px rgba(255,111,94,.4);
  transition:transform .18s ease, background .18s ease;
}
.btn-primary:hover{transform:translateY(-2px);background:var(--coral-600);}
.btn-primary svg{width:18px;height:18px;}
.hero-meta{font-family:var(--font-mono);font-size:12.5px;color:var(--mute-500);}

/* phone call card */
.call-card{
  position:relative;margin-inline:auto;width:min(300px,100%);
  background:linear-gradient(180deg,var(--night-800),var(--night-900));
  border:1px solid var(--line);border-radius:36px;
  padding:34px 26px 30px;
  box-shadow:0 30px 70px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.04);
}
.call-card::before{
  content:"";position:absolute;top:16px;left:50%;translate:-50% 0;
  width:56px;height:5px;border-radius:3px;background:var(--night-600);
}
.call-status{
  text-align:center;font-family:var(--font-mono);font-size:11px;
  letter-spacing:.12em;text-transform:uppercase;color:var(--gold-300);
  margin-top:14px;
}
.call-avatar{
  width:96px;height:96px;border-radius:50%;margin:22px auto 14px;
  background:conic-gradient(from 210deg, var(--coral-500), var(--gold-400), var(--coral-500));
  display:flex;align-items:center;justify-content:center;
  animation:ring-glow 1.8s ease-in-out infinite;
}
@keyframes ring-glow{
  0%,100%{box-shadow:0 0 0 0 rgba(255,111,94,.45);}
  50%{box-shadow:0 0 0 14px rgba(255,111,94,0);}
}
.call-avatar span{
  width:84px;height:84px;border-radius:50%;background:var(--night-800);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-size:30px;font-weight:800;color:var(--cream-100);
}
.call-name{text-align:center;font-family:var(--font-display);font-weight:700;font-size:19px;color:var(--cream-100);}
.call-sub{text-align:center;font-size:13px;color:var(--mute-500);margin-bottom:20px;}

.waveform{
  display:flex;align-items:flex-end;justify-content:center;gap:4px;
  height:38px;margin-bottom:26px;
}
.waveform span{
  width:4px;border-radius:3px;background:var(--gold-400);
  animation:wave 1.1s ease-in-out infinite;
}
.waveform span:nth-child(1){height:14px;animation-delay:.0s}
.waveform span:nth-child(2){height:28px;animation-delay:.1s}
.waveform span:nth-child(3){height:12px;animation-delay:.2s}
.waveform span:nth-child(4){height:34px;animation-delay:.3s}
.waveform span:nth-child(5){height:20px;animation-delay:.4s}
.waveform span:nth-child(6){height:30px;animation-delay:.5s}
.waveform span:nth-child(7){height:16px;animation-delay:.6s}
.waveform span:nth-child(8){height:26px;animation-delay:.7s}
.waveform span:nth-child(9){height:12px;animation-delay:.8s}
@keyframes wave{
  0%,100%{transform:scaleY(.55);}
  50%{transform:scaleY(1.15);}
}
.call-buttons{display:flex;justify-content:center;gap:22px;}
.call-btn{
  width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  border:none;
}
.call-btn.decline{background:var(--night-700);color:var(--mute-400);}
.call-btn.accept{background:var(--online);color:var(--night-950);box-shadow:0 8px 22px rgba(74,222,128,.4);}
.call-btn svg{width:22px;height:22px;}

@media (max-width:920px){
  .hero .wrap{grid-template-columns:1fr;text-align:center;}
  .hero .lede{margin-inline:auto;}
  .hero-actions{justify-content:center;}
  .call-card{margin-top:20px;}
}

/* =========================================================
   CONTENT LAYOUT
   ========================================================= */
.content-area{padding:12px 0 80px;}
.content-area .wrap{
  max-width:var(--max-w);margin:0 auto;padding:0 24px;
  display:grid;grid-template-columns:1fr 320px;gap:48px;align-items:start;
}
.section-heading{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:24px;}
.section-heading h2{font-size:26px;color:var(--cream-100);}

/* message-bubble style post cards */
.post-list{display:flex;flex-direction:column;gap:18px;}
.post-bubble{
  position:relative;
  background:var(--night-800);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:22px;
  display:grid;grid-template-columns:132px 1fr;gap:20px;
  transition:border-color .2s ease, transform .2s ease;
}
.post-bubble:hover{border-color:rgba(255,111,94,.5);transform:translateY(-2px);}
.post-bubble::after{
  content:"";position:absolute;left:40px;bottom:-8px;
  width:18px;height:18px;background:var(--night-800);
  border-right:1px solid var(--line);border-bottom:1px solid var(--line);
  clip-path:polygon(0 0,100% 0,0 100%);
}
.post-thumb{
  width:132px;height:132px;border-radius:var(--radius-md);overflow:hidden;
  background:linear-gradient(160deg,var(--night-700),var(--night-600));
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.post-thumb img{width:100%;height:100%;object-fit:cover;}
.post-thumb .ph-icon{width:34px;height:34px;color:var(--mute-500);}
.post-body .eyebrow{margin-bottom:10px;}
.post-title{font-size:20px;margin-bottom:8px;}
.post-title a{color:var(--cream-100);}
.post-title a:hover{color:var(--gold-300);}
.post-excerpt{font-size:14.5px;margin-bottom:10px;}
.post-meta{
  display:flex;gap:14px;font-family:var(--font-mono);font-size:11.5px;
  color:var(--mute-500);text-transform:uppercase;letter-spacing:.06em;
}

.pagination{display:flex;gap:8px;margin-top:32px;flex-wrap:wrap;}
.pagination a,.pagination span{
  min-width:40px;height:40px;padding:0 12px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:var(--night-800);border:1px solid var(--line);
  font-family:var(--font-mono);font-size:13px;color:var(--mute-400);
}
.pagination .current{background:var(--coral-500);color:var(--night-950);border-color:transparent;font-weight:700;}
.pagination a:hover{border-color:var(--gold-400);color:var(--cream-100);}

/* =========================================================
   SIDEBAR — "contact list" widgets
   ========================================================= */
.widget{
  background:var(--night-800);border:1px solid var(--line);
  border-radius:var(--radius-md);padding:22px;margin-bottom:22px;
}
.widget-title{
  font-family:var(--font-mono);font-size:12px;letter-spacing:.12em;text-transform:uppercase;
  color:var(--gold-300);margin-bottom:16px;padding-bottom:12px;
  border-bottom:1px solid var(--line);
}
.widget ul li{margin-bottom:4px;}
.widget ul li a{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:10px 12px;border-radius:10px;font-size:14px;color:var(--mute-400);
  transition:background .15s ease,color .15s ease;
}
.widget ul li a:hover{background:var(--night-700);color:var(--cream-100);}
.widget ul li a .count{
  font-family:var(--font-mono);font-size:11px;color:var(--mute-500);
  background:var(--night-900);border-radius:6px;padding:2px 7px;
}
.widget_recent_entries li a::before{content:"";}
.popular-item{display:flex;gap:12px;align-items:center;padding:8px 0;}
.popular-rank{
  font-family:var(--font-display);font-weight:800;font-size:20px;color:var(--night-600);
  width:26px;flex-shrink:0;
}
.popular-item a{color:var(--mute-400);font-size:14px;font-weight:600;}
.popular-item a:hover{color:var(--gold-300);}

.widget-cta{
  background:linear-gradient(160deg,var(--coral-500),var(--coral-600));
  border:none;color:var(--night-950);text-align:center;
}
.widget-cta h3{font-size:18px;margin-bottom:8px;}
.widget-cta p{color:rgba(23,15,41,.75);font-size:13.5px;}
.widget-cta a.btn-primary{background:var(--night-950);color:var(--cream-100);box-shadow:none;width:100%;justify-content:center;}

/* =========================================================
   SINGLE / PAGE
   ========================================================= */
.single-post-header{padding:56px 0 28px;border-bottom:1px solid var(--line);}
.single-post-header .eyebrow{margin-bottom:16px;}
.single-post-header h1{font-size:clamp(28px,4vw,42px);color:var(--cream-100);}
.single-meta{display:flex;gap:18px;font-family:var(--font-mono);font-size:12px;color:var(--mute-500);text-transform:uppercase;letter-spacing:.06em;margin-top:16px;}
.single-thumb{border-radius:var(--radius-lg);overflow:hidden;margin:32px 0;border:1px solid var(--line);}
.entry-content{font-size:16.5px;color:var(--cream-200);}
.entry-content p{color:var(--cream-200);}
.entry-content h2,.entry-content h3{color:var(--cream-100);margin-top:1.4em;}
.entry-content a{color:var(--gold-300);text-decoration:underline;text-underline-offset:3px;}
.entry-content blockquote{
  margin:24px 0;padding:18px 22px;border-left:3px solid var(--coral-500);
  background:var(--night-800);border-radius:0 var(--radius-sm) var(--radius-sm) 0;color:var(--mute-400);
}
.entry-content img{border-radius:var(--radius-md);}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background:var(--night-900);border-top:1px solid var(--line);padding:64px 0 0;
}
.footer-top{
  max-width:var(--max-w);margin:0 auto;padding:0 24px 48px;
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;
}
.footer-brand .site-title{display:block;margin-bottom:14px;}
.footer-brand p{max-width:34ch;font-size:14px;}
.social-row{display:flex;gap:10px;margin-top:18px;}
.social-row a{
  width:38px;height:38px;border-radius:50%;background:var(--night-700);
  display:flex;align-items:center;justify-content:center;color:var(--cream-100);
  transition:background .2s ease,transform .2s ease;
}
.social-row a:hover{background:var(--coral-500);transform:translateY(-2px);}
.social-row svg{width:16px;height:16px;}
.footer-col h3{
  font-family:var(--font-mono);font-size:12px;letter-spacing:.12em;text-transform:uppercase;
  color:var(--gold-300);margin-bottom:16px;
}
.footer-col ul li{margin-bottom:10px;}
.footer-col ul li a{font-size:14px;color:var(--mute-400);}
.footer-col ul li a:hover{color:var(--cream-100);}
.footer-bottom{
  border-top:1px solid var(--line);padding:22px 24px;
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:10px;
  max-width:var(--max-w);margin:0 auto;
  font-family:var(--font-mono);font-size:12px;color:var(--mute-500);
}

@media (max-width:920px){
  .content-area .wrap{grid-template-columns:1fr;}
  .footer-top{grid-template-columns:1fr 1fr;}
}
@media (max-width:600px){
  .footer-top{grid-template-columns:1fr;}
  .post-bubble{grid-template-columns:1fr;}
  .post-thumb{width:100%;height:170px;}
}
