/* HEADER START  */
    :root{
  --sidebar-w: 280px;
  --navy: #081120;
  --gold: #ffb020;
}

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* SIDEBAR */
.sidebar{
  position: fixed;
  inset: 0 auto 0 0;           /* top:0 left:0 bottom:0 */
  width: var(--sidebar-w);
  background: linear-gradient(180deg, #081120 0%, #081120 100%);
  color:#fff;
  z-index: 1000;
  border-right: 1px solid rgba(255,255,255,.08);
}

.sidebar__inner{
  height: 100%;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
}

.brand{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-bottom: 30px;
}

.brand__logo{
  width: 240px;
  height: 300px;
  object-fit: contain;
  align-items: center;
}

.brand__name{
  font-weight: 700;
  letter-spacing: .8px;
  line-height: 1.05;
  font-size: 18px;
}

/* NAV */
.sidebar__nav{
  display:flex;
  flex-direction:column;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}

.navlink{
  color: rgba(255,255,255,.88);
  text-decoration:none;
  font-weight: 600;
  padding: 6px 0;
}

.navlink:hover{
  color:#fff;
}

.sidebar__footer{
  margin-top: auto;
}

.socials{
  display:flex;
  gap: 10px;
}

.social{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color: var(--gold);
  border: 1px solid rgba(255,176,32,.6);
}

.social:hover{
  background: rgba(255,176,32,.12);
}

/* RIGHT CONTENT */
.content{
  margin-left: var(--sidebar-w);
  min-height: 100vh;
}


/* MOBILE: Sidebar üstte hamburger'a döner (şimdilik basit) */
@media (max-width: 991px){
  :root{ --sidebar-w: 0px; }
  .sidebar{ position: static; width:100%; }
  .content{ margin-left:0; }
}

/* HEADER END */

/* HAKKIMDA START */

.about-split{
  background: #fff; /* sayfanın laciverdiyle uyumlu */
}

.about-panel{
  background: #fff;
  display: flex;
  align-items: center;
}

.about-panel__inner{
  max-width: 780px;
  padding: 60px 70px;
}

.about-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 44px;
  margin: 0;
  color: #111;
}

.about-line{
  width: 120px;
  height: 3px;
  background: #ffb020;
  margin: 14px 0 34px;
  border-radius: 99px;
}

.about-lead{
  font-weight: 600;
  color: #222;
  margin-bottom: 18px;
}

.about-panel p{
  color: #666;
  line-height: 1.85;
  font-size: 16px;
  margin-bottom: 18px;
}
.about-photo{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 80px 60px;   /* FOTOĞRAF ETRAFINDA BOŞLUK */
  background: #fff;  /* beyazdan hafif ayrışsın */
}

.about-photo img{
  width: 100%;
  height: 100%;
  margin-right: 15px;
  max-width: 520px;     /* kontrol burada */
  max-height: 720px;

  object-fit: cover;
  object-position: center;

  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
@media (max-width: 991px){
  .about-photo{
    min-height: auto;
    padding: 40px 24px;
  }

  .about-photo img{
    max-width: 100%;
    max-height: 420px;
  }
}




/* HAKKIMDA END */

/* ETKİNLİKLER START */

  .news-section{
  background:#081120; /* jodok lacivert */
}

.news-title{
  color:#fff;
  font-weight:700;
  letter-spacing:.3px;
}

.news-underline{
  width:80px;
  height:3px;
  background:#ffb020;
  border-radius:99px;
  margin-top:10px;
}

/* Card */
.news-card{
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.news-card__media{
  display:block;
  overflow:hidden;
}

.news-card__media img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
  transform: scale(1);
  transition: transform .5s ease;
}

.news-card:hover .news-card__media img{
  transform: scale(1.05);
}

/* Caption bar (alttaki beyaz panel) */
.news-card__caption{
  background:#fff;
  padding:16px 16px 14px;
  min-height: 110px;
}

.news-card__kicker{
  font-size:11px;
  letter-spacing:1px;
  font-weight:700;
  color:#6b7280;
  text-transform:uppercase;
}

.news-card__title{
  font-size:18px;
  font-weight:700;
  color:#111827;
  line-height:1.25;
}

.news-card__link{
  font-size:13px;
  font-weight:700;
  color:#111827;
  text-decoration:none;
}

.news-card__link:hover{
  text-decoration:underline;
}

/* Responsive image height */
@media (max-width: 575px){
  .news-card__media img{ height:240px; }
}


/* ETKİNLİKLER END */


/* VİDEOLAR START */

  .videos-section { background:#081120; }

.videos-title { color:#fff; font-weight:800; }

.videos-underline{
  width:140px; height:3px; background:#ffb020;
  border-radius:999px; margin-top:10px;
}

.video-thumb{
  width:100%;
  border:0;
  padding:0;
  background:transparent;
  position:relative;
  overflow:hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.video-thumb img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio: 16/9;
  object-fit:cover;
  transform: scale(1);
  transition: transform .35s ease;
}

.video-thumb:hover img{ transform: scale(1.03); }

.play-btn{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
}
.play-btn::before{
  content:"";
  width:70px; height:48px;
  border-radius:12px;
  background:rgba(0,0,0,.65);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.play-btn::after{
  content:"";
  position:absolute;
  width:0; height:0;
  border-left:16px solid #fff;
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  margin-left:4px;
}


/* VİDEOLAR END */



/* FOOTER START */
  .site-footer{
    margin-top: 15px;
  background:#081120;
  color:#fff;
}

.footer-logo{
  width: 155px;
  object-fit: contain;
  margin-left: -40px;
}

.footer-muted{
  color: rgba(255,255,255,.65);
  font-size: 14px;
}

.footer-title{
  font-weight: 800;
  letter-spacing: .4px;
  margin-bottom: 53px;
}

.footer-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-list a{
  color:#fff;
  text-decoration: none;
  opacity: .9;
}

.footer-list a:hover{ opacity: 1; text-decoration: underline; }

.footer-socials{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#ffb020;
  border: 1px solid rgba(255,176,32,.6);
}

.footer-social:hover{
  background: rgba(255,176,32,.12);
}

.footer-links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a{
  color: rgba(255,255,255,.8);
  text-decoration:none;
  font-weight:600;
  font-size: 14px;
}

.footer-links a:hover{ color:#fff; }

.footer-hr{
  border-color: rgba(255,255,255,.12);
  margin: 30px 0 18px;
}

.footer-dev{
  color:#ffb020;
  text-decoration:none;
}
.footer-dev:hover{ text-decoration: underline; }

/* FOOTER END */