/* Temel Değişkenler */
:root {
  --primary-color: #5CB85C;
  --secondary-color: #111111;
  --secondary-color-light: #232220;
  --text-light: #a3a3a3;
  --white: #ffffff;
  --black: #000000;
  --max-width: 1200px;
}

/* Temel Stiller */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}


body {
  font-family: "Poppins", sans-serif;
  color: var(--white);
  background-color: var(--secondary-color);
}

.container {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 1rem;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}



.section__subheader {
  position: relative;
  isolation: isolate;
  margin-bottom: 1rem;
  padding-left: 20px;
  font-size: 1.2rem;
  font-weight: 500;
    margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

/* sayfalar.css dosyasına ekleyin */
.highlight-letters {
  position: relative;
  display: inline-block;
  padding: 0 5px;
  color: var(--white);
}

.highlight-letters::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: -1;
  border-radius: 4px;
}

.title-divider {
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), rgba(255, 255, 255, 0.2));
  margin: 1rem auto;
  border-radius: 3px;
}

/* Mevcut section__header stilini güncelleyin */
.section__header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 2.3rem;
}




/* Referanslar Sayfası Stilleri */
.referanslar-main {
  background-color: var(--secondary-color);
  padding: 2rem 0;
}

.referanslar__container {
  padding: 4rem 1rem;
}

.referanslar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.referans-card {
  background-color: var(--secondary-color-light);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.referans-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.referans-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.referans-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.referans-card:hover .referans-image img {
  transform: scale(1.1);
}

.referans-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.referans-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.referans-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.referans-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  flex-grow: 1;
}

.referans-detay-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .referanslar-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .referans-image {
    height: 180px;
  }
  
  .referans-content h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .referanslar-grid {
    grid-template-columns: 1fr;
  }
  
  .referans-card {
    max-width: 100%;
  }
  
  .referans-content h3 {
    font-size: 1rem;
  margin-bottom: 0.3rem;
  }
  
  .referans-content p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}



/* İletişim Sayfası Stilleri */
.iletisim-main {
  background-color: var(--secondary-color);
  padding: 2rem 0;
}

.iletisim__container {
  padding: 4rem 1rem;
}

.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 3rem;
}

.iletisim-bilgileri {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.bilgi-kart {
  background-color: var(--secondary-color-light);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bilgi-kart:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.bilgi-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--secondary-color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.bilgi-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.bilgi-icerik h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.bilgi-icerik p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

.iletisim-formu {
  background-color: var(--secondary-color-light);
  border-radius: 10px;
  padding: 2rem;
}

.iletisim-formu h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.iletisim-formu p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.form-grup {
  margin-bottom: 1.5rem;
}

.form-grup input,
.form-grup select,
.form-grup textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  background-color: var(--secondary-color);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.form-grup input:focus,
.form-grup select:focus,
.form-grup textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 88, 31, 0.2);
}

.form-grup textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  display: flex;
  justify-content: flex-end;
}

/* Responsive Tasarım */
@media (max-width: 900px) {
  .iletisim-grid {
    grid-template-columns: 1fr;
  }
  
  .iletisim-bilgileri {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .iletisim-bilgileri {
    grid-template-columns: 1fr;
  }
  
  .iletisim-formu {
    padding: 1.5rem;
  }
  
  .form-submit {
    justify-content: center;
  }
}

/* Scroll Reveal Animasyonları */
.iletisim-bilgileri .bilgi-kart:nth-child(1) {
  animation-delay: 100ms;
}

.iletisim-bilgileri .bilgi-kart:nth-child(2) {
  animation-delay: 200ms;
}

.iletisim-bilgileri .bilgi-kart:nth-child(3) {
  animation-delay: 300ms;
}

.iletisim-bilgileri .bilgi-kart:nth-child(4) {
  animation-delay: 400ms;
}



/* Buton Stilleri */
.btn {
  display: inline-flex; /* İçerik genişliğine göre ayarla */
  align-items: center;
  gap: 10px;
  padding: 0.5rem 1rem; /* Daha küçük padding */
  outline: none;
  font-size: 1rem;
  color: var(--white);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: auto; /* Otomatik genişlik */
  border: 1px solid var(--white); /* İnce border */
}
.btn__secondary {
  background-color: transparent;
  border: 1px solid var(--white);
}

.btn__primary {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn span {
  font-size: 1.2rem;
  transition: 0.3s;
}

.btn:hover span {
  transform: translateX(5px);
}

.btn:hover {
  opacity: 0.9;
}

/* Header Stilleri */
.sayfa-header {
  background-color: transparent; 
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.nav {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo a {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.nav__logo img {
  height: 100px;
  width: auto;
}

.nav__logo span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.link a {
  padding: 5px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  transition: 0.3s;
  text-decoration: none;
}

.link a:hover {
  color: var(--primary-color);
}

.nav__menu__btn {
  display: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

/* Hizmetler Bölümü */
/* Hizmetler Bölümü Yeni Stilleri */
.hizmetler-container {
  padding: 0;
  background-color: var(--secondary-color-light);
}

.hizmetler-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hizmet-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hizmet-full-image {
  width: 100%;
  height: 100%;
  position: relative;
}


.hizmet-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hizmet-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-end; /* Ortanın biraz altı */
  justify-content: center;
  padding-bottom: 5vh; /* yazılar alta yaklaşıyor */
  z-index: 10;
}


.hizmet-content {
  max-width: 800px;
  text-align: center;
  padding: 2rem;
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.5s ease;
  background: transparent !important; /* Arka planı tamamen şeffaf yap */
  border-radius: 0 !important; /* Köşe yuvarlaklığını kaldır */
  margin: 1rem;
  z-index: 20;
}


/* Buton hover efektleri */
.btn__primary {
  background-color: transparent; /* Normalde şeffaf */
  border: 1px solid var(--white); /* Beyaz border */
}

/* Buton hover efekti */
.btn__primary:hover {
  background-color: var(--white) !important; /* Beyaz dolgu */
  color: var(--secondary-color) !important; /* Yazı rengi koyu */
}

/* Buton içindeki ikon rengi hover'da değişsin */
.btn__primary:hover span i {
  color: var(--secondary-color) !important;
}

/* Yazıların okunaklılığını artırmak için gölge ekle */
.hizmet-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hizmet-content p {
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1.2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}



.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 2rem;
    opacity: 0;
  animation: bounce 2s infinite;
  transition: opacity 0.3s ease;
}

.hizmet-section.active .scroll-indicator {
  opacity: 0.5;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .hizmet-section {
    height: auto !important;
    min-height: auto !important;
    margin-bottom: 0 !important;
    padding: 0; /* biraz boşluk verilebilir */
  }

  .hizmet-full-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto; /* Dinamik yükseklik */
    background-color: var(--secondary-color-light);
    padding: 0; /* İç boşluk */
  }

  .hizmet-full-image img {
    max-width: 100%;
    height: auto;
    width: auto;
    display: block;
  }

  .hizmet-overlay {
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    margin-bottom: 0 !important;
  }

  .hizmet-content {
    width: 90%;
    max-width: 100%;
    padding: 1.5rem;
    margin: 0;
    background-color: transparent !important;
    border: none !important;
    text-align: center;
  }

  .hizmet-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .hizmet-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
@media (width < 480px){
    .hizmet-content h3 {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .hizmet-content p {
    font-size: 0.7rem;
    margin-bottom: 0.8rem;
  }

}


/* Belgelerimiz Sayfası Stilleri */
.belgeler-main {
  background-color: var(--secondary-color);
  padding: 2rem 0;
}

.belgeler__container {
  padding: 4rem 1rem;
}

.belgeler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.belge-card {
  background-color: var(--secondary-color-light);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}

.belge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.belge-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.belge-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.belge-card:hover .belge-image img {
  transform: scale(1.05);
}

.belge-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.belge-card:hover .belge-overlay {
  opacity: 1;
}

.belge-card h3 {
  padding: 1.5rem;
  font-size: 1.2rem;
  text-align: center;
  color: var(--white);
}

/* Modal Stilleri */
.belge-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-content {
  position: relative;
  max-width: 800px;
  width: 100%;
  background-color: var(--secondary-color-light);
  border-radius: 8px;
  overflow: hidden;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-content img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.modal-text {
  padding: 2rem;
}

.modal-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.modal-text p {
  color: var(--text-light);
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: var(--white);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--primary-color);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .belgeler-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .belge-image {
    height: 200px;
  }
  
  .modal-content {
    max-width: 95%;
  }
  
  .modal-content img {
    max-height: 300px;
  }
  
  .modal-text {
    padding: 1rem;
  }
  
  .modal-text h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .belgeler-grid {
    grid-template-columns: 1fr;
  }
  
  .belge-card h3 {
    font-size: 1rem;
    padding: 1rem;
  }
  
  .modal-text h3 {
    font-size: 1rem;
  }
  
  .modal-text p {
    font-size: 0.9rem;
  }
}


/* Footer Stilleri */
.footer {
  background-color: var(--black);
  padding: 4rem 0 0;
}

.footer__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}

.footer__col h5 a {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}

.footer__col p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials a {
  padding: 9px 10px;
  font-size: 1.25rem;
  color: var(--primary-color);
  background-color: var(--secondary-color-light);
  border-radius: 100%;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.footer__socials a:hover {
  color: var(--white);
  background-color: var(--primary-color);
}

.footer__col h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__links a {
  color: var(--text-light);
  transition: 0.3s;
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__help {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.footer__help a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--secondary-color-light);
  color: var(--primary-color);
  font-size: 1.25rem;
  transition: 0.3s;
  text-decoration: none;
}

.footer__help a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
}

.footer__bar {
  padding: 1rem;
  font-size: 0.8rem;
  text-align: center;
  color: var(--text-light);
  margin-top: 4rem;
  border-top: 1px solid var(--secondary-color-light);
}

/* Responsive Tasarım */
@media (width < 900px) {
  .nav__links {
    position: fixed;
    left: 0;
    top: 130px; /* Header yüksekliği kadar aşağıda */
    width: 100%;
    flex-direction: column;
    background-color: var(--secondary-color);
    gap: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease; /* 0.5s yerine 0.3s */
    padding: 0;
    max-height: calc(100vh - 68px); /* Ekran yüksekliği - header */
    overflow-y: auto; /* İçerik fazlaysa scroll */
    z-index: 1000; /* Diğer içeriklerin üstünde */
  }
  

  .nav__links.open {
    transform: scaleY(1);
    padding: 0; /* Padding kaldırıldı */
  }

  .nav__links .link {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Ayırıcı çizgiler */
  }

  .nav__menu__btn {
    display: block;
  }


  .menu-item {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    min-width: auto;
    background: transparent;
  }

  .menu-item i {
    margin-bottom: 0;
    margin-right: 10px;
    font-size: 1.2rem;
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
  body.menu-open {
    position: relative; /* fixed yerine relative */
    overflow-y: auto; /* scroll'a izin ver */
    width: auto;
  }
}

@media (width < 600px) {
  .section__header {
    font-size: 2rem;
  }

  .footer__container {
    grid-template-columns: 1fr;
  }

  .footer__help {
    flex-direction: row;
    justify-content: flex-start;
  }
}






.paket-bilgi-kart {
  background-color: rgba(92, 184, 92, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  display: none; /* Varsayılan olarak gizli */
}

.paket-bilgi-kart h3 {
  color: var(--primary-color);
  margin-bottom: 5px;
}


.selected-service-container {
  margin-bottom: 2rem;
}

.selected-service-card {
  background-color: var(--secondary-color-light);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.selected-service-card h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

.selected-service-card p {
  color: var(--white);
  font-weight: 500;
  margin: 0;
}








/* Blog Sayfası Stilleri */
.blog-main {
  background-color: var(--secondary-color);
  padding: 2rem 0;
}

.blog__container {
  padding: 4rem 1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background-color: var(--secondary-color-light);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta i {
  font-size: 1rem;
}

.blog-content h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--white);
  line-height: 1.4;
}

.blog-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.blog-read-more {
  margin-top: auto;
  align-self: flex-start;
}

/* Blog Detay Sayfası */
.blog-detail {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--secondary-color-light);
  border-radius: 10px;
}

.blog-detail img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.blog-detail h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.blog-detail-content {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.blog-detail-content p {
  margin-bottom: 1.5rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .blog-card img {
    height: 180px;
  }
  
  .blog-content h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-card {
    max-width: 100%;
  }
  
  .blog-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .blog-content p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .blog-meta {
    font-size: 0.7rem;
    gap: 0.5rem;
  }
}