@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");


* { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      min-height: 100vh;
      font-family: Arial, sans-serif;
      background: #111;
      color: #fff;
      padding-bottom: 90px; /* footer yüksekliği kadar boşluk */
    }

    /* FOOTER PLAYER */
    .radio-player {
      position: fixed;
      left: 0;
      bottom: 0;
      width: 100%;
      background: #101828;
      box-shadow: 0 -2px 10px rgba(0,0,0,.5);
      display: flex;
      align-items: center;
      padding: 10px 15px;
      z-index: 9999;
    }

    .radio-cover {
      width: 50px;
      height: 50px;
      border-radius: 4px;
      background-size: cover;
      background-position: center;
      background-image: url("img/200w.gif");
      flex-shrink: 0;
    }

    .radio-info {
      flex: 1;
      margin: 0 10px;
      overflow: hidden;
    }

    .radio-title {
      font-size: 14px;
      font-weight: bold;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      display: flex;
    }

    .radio-artist {
      font-size: 12px;
      opacity: .8;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .radio-controls {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn-play {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: none;
      background: #ff5722;
      color: #ffffff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
    }

    .btn-play:active {
      transform: scale(.96);
    }

    .volume-wrap {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .volume-range {
      width: 80px;
    }

    input[type="range"] {
      -webkit-appearance: none;
      appearance: none;
      height: 4px;
      border-radius: 2px;
      background: #555;
      outline: none;
    }

    input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #ff5722;
      cursor: pointer;
    }
    
      
    .navbar {
  background: linear-gradient(135deg, 
    rgb(255 87 34),      /* Koyu siyah şeffaf */
    rgb(0, 0, 0));  /* Gri şeffaf */ 
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.navbar-logo {
  width: 200px;        /* Logo genişliği */
  height: auto;        /* Orantıyı koru */
  max-height: 60px;    /* Maksimum yükseklik */
  margin-left: 40px;
}


.nav-menu {
  display: flex;
  list-style: none;
  margin: 0 40px;
  padding: 15px;

}

.nav-item {
  margin-left: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #ff5722;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;

}

.hamburger span {
  width: 25px;
  height: 3px;
  background: rgb(245, 244, 244);
  margin: 3px 0;
  transition: 0.3s;
}


.container {
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
}

.slide-container {
  margin: 14px 30px;
  overflow: hidden;
}

.card {
  background: #fff;
  border-radius: 8px;
}

.card .image-box {
  height: 200px;
}

.card .image-box img {
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
}

.card .profile-details {
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding: 15px;
}

.card .profile-details img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.profile-details .name {
  font-size: 15px;
  font-weight: 500;
  color: #000;
}

.profile-details .job {
  font-size: 12px;
  font-weight: 500;
  color: #4d4d4d;
}

.swiper-navBtn {
  color: #000;
  height: 40px;
  width: 40px;
  background: #fff;
  border-radius: 50%;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 18px;
}

.swiper-pagination-bullet {
  background-color: #000;
}

  h2{
    border: 2px solid #ff5722;
    border-bottom-right-radius: 40px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255, 255, 255);
    font-size: 23px;
    margin-top: 15px;
    width: 50vh;
  }

  .button-container {
   display: flex;
   align-items: center;
   justify-content: center;
   margin-top: 5px;
  }

  i {
  margin-right: 5px;
}


.carousel-one {
  margin-top: 20px;    /* Üstten 60px boşluk */
  max-width: 1060px;
  height: 300px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.mySlides {
  height: 100%;      /* Slayt yüksekliğini kapsayıcıya uydur */
}


.mySlides img {
  width: 100%;       /* Genişlik %100 kapsayıcıya */
  height: 100%;      /* Yükseklik %100 kapsayıcıya */
  object-fit: cover; /* Resmi kırpmadan doldur, orantıyı koru */
  display: block;
}
.prev-slide, .next-slide { position: absolute; top: 50%; width: auto; padding: 16px; cursor: pointer; font-size: 18px; }
.prev-slide { left: 0; }
.next-slide { right: 0; }
.dot { cursor: pointer; height: 15px; width: 15px; margin: 0 2px; display: inline-block; border-radius: 50%; }
.active, .dot:hover { background-color: #717171; }



.haberler h2 {
    border: 2px solid #ff5722;
    border-bottom-right-radius: 40px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    margin: 0 auto -15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255, 255, 255);
    font-size: 23px;
    margin-top: -25px;
    width: 50vh;
}


.haberler {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;  /* Başlığı ortala */
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.haber-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.haber-card:hover {
  transform: translateY(-10px);
}

.haber-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
   object-position: center;
   display: block;
}

.haber-card h3 {
  padding: 20px 20px 10px;
  margin: 0;
  font-size: 1.2em;
  color: #333;
}

.haber-card p {
  padding: 0 20px 15px;
  color: #666;
}


.footer {
  background: linear-gradient(rgba(34,34,34,0.9), rgba(34,34,34,0.9)), 
    url('img/footer-arka.jpg') center/cover no-repeat;
  color: white;
  margin-top: -10px;
  position: relative;
  
  
}

.iletisim-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
}

.iletisim-item i {
  width: 20px;
  color: #f39c12;
  font-size: 1.1em;
}

.iletisim-item span {
  color: #ccc;
  font-size: 0.95em;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  gap: 40px;
}

.footer-section h4 {
  margin-bottom: 25px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-section h4::before {
  
  font-size: 1.2em;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #ff5722;
}

.social-links a {
  display: inline-block;
  font-size: 1.5em;
  margin-right: 15px;
  transition: transform 0.3s;
}

.social-links a:hover {
  transform: scale(1.2);
}

.footer-bottom {
  background: #111;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}


.copyright {
  margin-top: 20px;
  padding-top: 55px;
  border-top: 1px solid #333;
  font-size: 0.85em;
  color: #aaa;
}


    /* Mobil uyum */
    @media (max-width: 768px) {
      .radio-player {
        flex-wrap: wrap;
        margin-top: 0;    /* Player üst boşluğunu kaldır */
      }
      .radio-info {
        order: 3;
        width: 100%;
        margin-top: -1px;
      }
      .radio-controls {
        order: 2;
        margin-left: auto;
      }
      .volume-range {
        width: 50px;
      }

       .radio-cover {
    display: none !important;
  }

  .nav-menu {
    position: fixed;
    top: 88px;
    left: -100%;
    margin-left: -35px;
    width: 70%;
    height: calc(62vh - 55px);
    background-color: rgba(0, 0, 0, 0.8);  /* Siyah %80 şeffaf */
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: 0.3s;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    margin: 0;
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid #444;
  }

  .hamburger {
    display: flex;
  }
.swiper-navBtn {
    display: none;
  }

  h2 {
    margin-top: 20px;
    margin: 16px 0 ;
    width: 40vh;
  }
  .carousel-one {
    width: 95%;
    height: 200px;
    margin-top: 20px;
  }

  .prev-slide, .next-slide {
    padding: 12px;
    font-size: 20px;
  }

  .dot {
    height: 12px;
    width: 12px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .haber-card img {
    height: 180px;
  }
  
  .haberler h2 {
    margin-top: -20px;
    margin-bottom: 30px;
    width: 40vh;
  }

.footer {
    margin-top: -25px;
    
  }
  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 35px;
    padding: 40px 20px !important;
    text-align: center !important;
  }
  
  .footer-section {
    padding: 0 !important;
  }
  .footer-section h4 {
    justify-content: center !important;
    margin-bottom: 25px !important;
    font-size: 1.4em !important;
    gap: 12px !important;
  }

  .iletisim-item {
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 18px !important;
    padding: 10px 0;
  }
  .iletisim-item i {
    font-size: 1.4em !important;
    color: #f39c12 !important;
    min-width: 30px !important;
  }
  
  .iletisim-item span {
    font-size: 1em !important;
    color: #ddd !important;
  }
  
  .footer-section ul {
    padding: 0 !important;
    margin: 0 !important;
  }
   .footer-section ul li {
    margin: 12px 0 !important;
    padding: 8px 0;
  }
  
  .social-links {
    justify-content: center !important;
    gap: 25px !important;
    margin: 20px 0 15px 0 !important;
  }
  .social-links a {
    width: 55px !important;
    height: 55px !important;
    font-size: 1.4em !important;
  }
  
  .copyright {
    margin-top: 25px !important;
    padding-top: 20px !important;
    font-size: 0.95em !important;
    border-top: 1px solid #444 !important;
    
  }

  .navbar-logo{
  width: 180px;        /* Logo genişliği */     /* Orantıyı koru */
  max-height: 60px;    /* Maksimum yükseklik */
  margin-left: -20px;       /* Logo genişliği */
  
  }
}


    