﻿.top-info-bar {
  background: #f1f3f5; /* Açık gri-mavi ton */
  color: #212529;
  padding: 6px 15px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Başlangıçta gizli */
.google-search-back {
  display: none;
}

/* Sadece mobilde aktif */
@media (max-width: 768px) {
  .google-search-back {
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    color: #70757a;
    cursor: pointer;
    display: none; /* mobilde de default gizli */
  }

  /* Input sola padding bırakır */
  .google-search-input {
    padding-left: 40px;
  }

  /* Yazı yazılınca geri butonu görünsün */
  .google-search-wrapper.has-text .google-search-back {
    display: block;
  }
}



/* Google tarzı arama kutusu - özel class isimleri */
.google-search-form {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 5px auto;
}

.google-search-wrapper {
  position: relative;
  flex: 1;
  margin-top:10px;
}

.google-search-input {
  width: 100%;
  padding: 8px 20px 8px 8px;
  padding-left: 25px;
  border: 1px solid #dfe1e5;
  border-radius: 24px;
  font-size: 16px;
  outline: none;
  box-shadow: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.google-search-input:focus {
  border-color: #dfe1e5;
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
}

.google-search-clear {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 26px;
  color: #70757a;
  cursor: pointer;
  display: none; 
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  padding: 0;
}


.google-search-input:valid ~ .google-search-clear {
  display: block;
}

.google-search-button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #70757a;
}

@media (max-width: 768px) {
  .google-search-form {
    width: 100%;
    max-width: 100%;
    order: 3; 
  }
}




/* Menü karartma (gerekirse açabilirsin) */
#mobileMenuOverlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 998;
}

/* Menü alanı */
#mobileSideMenu {
  position: fixed;
  right: -100%;
  height: 100%;
  width: 80%;
  max-width: 320px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: -4px 0 25px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  transition: right 0.4s ease;
  padding: 20px;
  overflow-y: auto;
  border-left: 3px solid #082288;
}
#mobileSideMenu.active {
  right: 0;
}
@media (max-width: 768px) {
  #mobileSideMenu {
    width: 100%;
    max-width: 100%;
  }
}

/* Menü toggle butonu */
#mobileMenuToggle {
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  user-select: none;
  margin-right:5px;
}
#mobileMenuToggle i {
  pointer-events: none;
  font-size: 22px;
  line-height: 1;
}

/* Menü içeriği */
.side-menu-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Logo alanı */
.menu-logo img {
  height: 50px;
  width: auto;
  display: block;
  margin: 0 auto 10px auto;
}

/* Menü başlığı */
.menu-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
  margin-bottom: 10px;
}

/* Kategoriler */
.menu-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-section ul li a {
  display: block;
  padding: 10px;
  background: #e9ecef;
  color: #212529;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  transition: background 0.3s ease;
}
.menu-section ul li a:hover {
  background-color: #dee2e6;
}





.masonry-wrapper {
  padding: 20px;
}

.masonry {
  column-count: 5;
  column-gap: 10px;
}

.wallpaper-card {
  display: inline-block;
  width: 100%;
  margin-bottom: 5px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 0; /* Çerçevesiz */
  box-shadow: none; /* Gölge yok */
  transition: opacity 0.3s ease;
}

.wallpaper-info {
    padding: 15px;
    color: #333;
    line-height: 1.4;}


.wallpaper-card img {
  object-fit: cover;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
    filter: brightness(110%) saturate(130%);
}

/* Mobil görsel (dikey) */
.wallpaper-card.portrait img {
  aspect-ratio: 3/4;
}

/* Masaüstü görsel (yatay) */
.wallpaper-card.landscape img {
  aspect-ratio: 16/9;
}

/* Responsive */
@media (max-width: 1400px) {
  .masonry { column-count: 4; }
}
@media (max-width: 992px) {
  .masonry { column-count: 3; }
}
@media (max-width: 768px) {
  .masonry { column-count: 2; }
}
@media (max-width: 480px) {
  .masonry { column-count: 1; }
}


@media (min-width: 992px) {
  .linke-spalte {
    order: 1;
  }
  .mittlere-spalte {
    order: 2;
	background-color: #ffffff;
  }
  .rechte-spalte {
    order: 3;
  }
}


@media (max-width: 991.98px) {
  .mittlere-spalte {
    order: 1; 
  }
  .linke-spalte {
    order: 2;
  }
  .rechte-spalte {
    order: 3;
  }
}


.hintergrundbild {
  display: flex;
  align-items: center;
  justify-content: center;
 
  width: 100%;
  height: auto;
  min-height: 500px;
  
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
  overflow: hidden;
  position: relative;
  filter: brightness(110%) saturate(130%);
  background: #000;
}

/* Görsel ayarları */
.hintergrundbild img {
  width: 100%;
  height: 100%;
  object-fit: contain;       /* bozulma yok */
  object-position: center;   /* ortada dursun */
  max-height: 100%;
  max-width: 100%;
  border-radius: 12px 12px 0 0;
  user-select: none;
  pointer-events: none;
  transition: transform 0.5s ease;
}

/* Mobilde tam doldurması için */
@media (max-width: 1024px) {
  .hintergrundbild {
    min-height: auto;
  }
  .hintergrundbild img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
  }
}




	.author-review-section {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 10px 0;
}

.author-review-item {
    display: flex;
    align-items: center;
    gap: 5px;
	line-height: 18px;
}

@media (max-width: 768px) {
    .author-review-item {
        width:50%;
    }
}

.author-review-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ccc;
}

.author-review-text {
    display: flex;
    flex-direction: column;
}

.author-review-label {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.author-review-name {
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.author-review-name:hover {
    color: #007BFF;
}


main {
    background-color: #F3F3F3;
    padding: 1px;
    font-family: 'Segoe UI', sans-serif;
}



.bg-white.shadow-lg {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.title {
    font-size: 32px;
	color: #000;
    line-height: 40px;
	padding: 0;
    margin: 0;
}

.description {
    font-size: 18px;
    font-weight: 400;
    color: #222;
	padding: 5px;
}

@media (max-width: 768px) {
  .title {
    font-size: 20px;
	line-height: 26px;
  }
  .description {
    font-size: 16px;
	line-height: 20px;
  }
}


.ähnliche-hintergrundbilder {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 0;
    list-style: none;
}

.ähnliche-hintergrundbilder li {
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ähnliche-hintergrundbilder li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ähnliche-hintergrundbilder li img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
	filter: brightness(110%) saturate(130%);
}

.ähnliche-hintergrundbilder li .haber-baslik {
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: left;
    line-height: 1.4;
}

.ähnliche-hintergrundbilder li a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}


.icon-list::before {
    content: none !important;
    display: none !important;
}

.social-share-icons {
    margin-top: 15px;
}


.visually-hidden {
    color: #000000;
    padding: 0;
}

.icon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.icon-list li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color:#e5e9ec;
    border-radius: 30%;
    color: #24507e;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.icon-list li a:hover {
    background-color: #007BFF;
    color: white;
}

.hinterbild-container {
    max-width: 1470px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .hinterbild-container {
       margin:2px;
	   padding: 2px;
    }
}

.comments-header {
    max-width: 700px;
    margin: 40px auto 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.comments-header h3 {
    font-weight: 700;
    font-size: 2rem;
    color: #222;
}
.comments-header p {
    font-weight: 500;
    color: #666;
    font-size: 1rem;
}

/* Genel yorum kapsayıcısı */
.comment {
    max-width: 700px;
    background: #fff;
    border-radius: 10px;
    padding: 20px 25px;
    margin: 15px auto;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
}

/* Yanıt (reply) yorumları için hafif tonlama ve margin */
.comment.reply {
    max-width: 650px;
    margin-left: 40px;
    background: #f7f9fc;
    border-left: 3px solid #357ABD;
}

/* Başlık: İsim ve Tarih */
.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.comment-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: #222;
}

.comment-date {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Yorum içeriği */
.comment-content {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    max-height: 120px;  /* Sabit yükseklik */
    overflow-y: auto;   /* Dikey kaydırma */
    padding-right: 10px;
    position: relative;
}

/* Kaydırma çubuğu özelleştirme */
.comment-content::-webkit-scrollbar {
    width: 6px;
}
.comment-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.comment-content::-webkit-scrollbar-thumb {
    background: #357ABD;
    border-radius: 10px;
}
.comment-content::-webkit-scrollbar-thumb:hover {
    background: #235a8e;
}

/* Yanıt butonu */
.btn-reply {
    position: absolute;
    top: 20px;
    right: 25px;
    background: #357ABD;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.3s ease;
}
.btn-reply:hover {
    background: #235a8e;
}

/* Form Bölümü */
.comments-form {
    max-width: 700px;
    margin: 50px auto 60px;
    background: #f9fafb;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.comments-form h3 {
    font-weight: 700;
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input.form-control,
.form-row textarea.form-control {
    flex: 1;
    padding: 12px 15px;
    border-radius: 10px;
    border: 2px solid #ddd;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    resize: vertical;
}

.form-row input.form-control:focus,
.form-row textarea.form-control:focus {
    border-color: #357ABD;
    box-shadow: 0 0 8px rgba(53,122,189,0.6);
    outline: none;
}

.btn-submit {
    background: linear-gradient(135deg, #357ABD, #4a90e2);
    border: none;
    padding: 14px 0;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    width: 100%;
    cursor: pointer;
    transition: background 0.4s ease;
}
.btn-submit:hover {
    background: linear-gradient(135deg, #4a90e2, #357ABD);
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    .btn-reply {
        position: static;
        margin-top: 10px;
        width: fit-content;
    }
}


.top-info-inner {
  max-width: 95%;
  margin: 0 auto;
}

.license-info-box {
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: #f7f7f9;
  padding: 15px;
  color: #333;
}



.btn-download-top i {
  font-size: 18px;
}

.btn-download-top:hover {
  background: #4f8a60;
}

/* Lisans ve paylaşan kişi bilgileri */
.license-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.license-left p {
  margin: 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px; /* icon ve yazı arası */
}

.license-left a {
  color: #5e17eb;
  text-decoration: underline;
}

/* Sağ butonlar varsa */
.license-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.license-right .btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #00167a;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.license-right .btn:hover {
  background-color: #4b129b;
}

/* Mobil uyumlu */
@media (max-width: 768px) {
  .license-info-box {
    flex-direction: column;
    align-items: stretch;
  }
}


.wallpaper-description {
  background: #f7f7f9;
  padding: 15px 20px;
  border-radius: 8px;
}

 .faq-section {
  padding: 60px 20px;
  background-color: #f8f9fc;
  border-radius: 30px;
  margin: 50px 0;
}

.faq-list {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  border: 1px solid #e0e6f0;
  border-radius: 12px;
  margin-bottom: 20px;
  background: white;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.07);
}

.faq-question {
  width: 100%;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #eef6ff;
}

.faq-icon {
  font-size: 1.5rem;
  color: #007bff;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
}

.faq-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-question {
    font-size: 1rem;
    padding: 18px;
  }

  .faq-icon {
    font-size: 1.3rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }
}


.download-section {
    margin: 20px 0;
    padding: 10px;
    background: #f4f7fa;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
}

.download-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.tab-button {
    padding: 4px;
    border: none;
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tab-button.active {
    background-color: #0056b3;
}

.download-links {
    display: flex;
    flex-direction: column;
}

.download-links a {
    padding: 10px 15px;
    border-radius: 5px;
    background: #e5ecf1;
    color: #24507e;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}


.download-btn {
    display: inline-block;       /* link kutu gibi davranır */
    padding: 10px;
    margin: 2px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    position: relative;
    vertical-align: top;
}

.download-btn .desc {
    display: block;             /* alt satıra geçsin */
    font-weight: normal;
    font-size: 0.75em;
    color: #000000;
    margin-top: 4px;
    line-height: 1.2em;
}

.breadcrumb-wrapper {
  font-size: 0.95rem;
}

.breadcrumb {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: inline;
}

.breadcrumb li + li::before {
  content: " › ";
  color: #888;
  font-weight: 500;
  padding: 0 4px;
}

.breadcrumb a {
  text-decoration: none;
  color: #007bff;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #0056b3;
}



.kategori-menusu-wrapper {
  position: relative;
  display: inline-block;
  margin-left: 10px;
}

.kategorien-button {
  display: flex;
  align-items: center;
  background: #e9ecef;
  border: 1px solid #5e17eb;
  padding: 6px 12px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  gap: 6px;
  transition: background 0.3s ease;
}

@media (max-width: 768px) {
  .kategorien-button {
    display: none;
  }
}


.kategorien-button:hover {
  background-color: #dee2e6;
}

.kategorien-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 10px;
  display: none;
  z-index: 1000;
  min-width: 220px;
}

ul.breadcrumb{
    padding: 10px;
    font-family: Arial, sans-serif;
    color: #555;
    font-size: 14px;
    justify-content: space-between;
    align-items: center;
    line-height: 20px;}
	
ul.breadcrumb li{display:inline;font-size:14px;text-align:left}
	
.breadcrumb li::after {
    content: ">";
    margin: 0 6px;
    color: #000;
}

.breadcrumb li:last-child::after {
    content: "";
}
	
	
.kategorien-dropdown a {
  display: flex;
  align-items: center;
  padding: 8px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  gap: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.kategorien-dropdown a:hover {
  background-color: #f1f3f5;
}


.alt-kategori-balonlari {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
	background-color: #ffffff;
}

.alt-kategori-balonlari::-webkit-scrollbar {
    display: none;
}

.alt-kategori-balon {
    flex: 0 0 auto;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
}

.alt-kategori-balon:hover {
    transform: scale(1.08);
}

.balon-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ddd;
    margin: 0 auto 0px;
    background: #f9f9f9;
    transition: border-color 0.3s ease;
}

.alt-kategori-balon:hover .balon-img {
    border-color: #007bff;
}

.balon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alt-kategori-balon span {
    font-size: 14px;
    display: block;
    white-space: nowrap;
}



/* Üst bar iskelet - sticky ve yatay kaydırma */
.scroll-menu-bar {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  background: transparent; 
  backdrop-filter: saturate(180%) blur(6px);
}

.scroll-menu-inner {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.scroll-menu-inner::-webkit-scrollbar { display: none; }

.scroll-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 45px;
    border-radius: 18px;
    background: #f5f5dc;
    text-decoration: none;
    color: #111;
    box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 1px 8px rgba(0,0,0,.06);
    transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease;
    scroll-snap-align: start;
    white-space: nowrap;
}


.scroll-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
}

.chip-thumb {
    display: block;
    width: 50px;
    height: 45px;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background: inherit;
}

.chip-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center; 
    display: block;
}


.chip-label {
     font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding-right: 15px;
}



.site-header {
  background: #fff;
  position: static;
  z-index: 1000;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.05);
}

.container {
  max-width: 95%;
  margin: 0 auto;
  padding: 0;
}


.site-header .container {
  max-width: 95%;
  margin: 0 auto;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #007bff;
  cursor: pointer;
  display: block;
}

.dropdown-menu {
  position: absolute;
  top: 60px;
  right: 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.15);
  display: none;
  min-width: 160px;
  z-index: 1100;
}

.dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.dropdown-menu li a:hover {
  background: #007bff;
  color: white;
}

@media (max-width: 768px) {
  .kategorien-dropdown {
    min-width: auto;       /* min-width'u kaldır */
    width: 200px;
    max-width: 300px;      /* maksimum genişlik sınırı koyabilirsin */
    transform: translateX(-50%); /* menüyü ortala */
    box-sizing: border-box; /* padding vs. genişliği doğru hesapla */
  }
}


@media (max-width: 768px) {
  .site-header .container {
	  overflow-x: visible;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  
  .dropdown-menu {
    order: 1; /* Menü önce gelsin */
    width: 100%;
    margin-top: 0;
  }
}

@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .site-header .container {
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    display: none;
    margin-top: 10px;
  }

  .dropdown-menu ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}



.wallpapers-section
 {margin:5px;
  }
 



.page-title h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #222;
}

.hero-content p {
  font-size: 16px;
  color: #555;
}



  .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: purple;
  }

  .wallpaper-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
  }

  .wallpaper-card {
    background: white;
    cursor: pointer;
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
  }


  /* Mobil ayarları */
  @media (max-width: 768px) {
    .page-title h1 {
      font-size: 1.3rem;
    }



    .wallpaper-grid {
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
  }

  .mobile-only .wallpaper-card {
    aspect-ratio: 9 / 16;
  }

  .mobile-only .image-wrapper {
    aspect-ratio: 9 / 16;
  }
  
  .faq-section {
  padding: 60px 20px;
  background-color: #f8f9fc;
  border-radius: 30px;
  margin: 50px 0;
}

.faq-list {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  border: 1px solid #e0e6f0;
  border-radius: 12px;
  margin-bottom: 20px;
  background: white;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.07);
}

.faq-question {
  width: 100%;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #eef6ff;
}

.faq-icon {
  font-size: 1.5rem;
  color: #007bff;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
}

.faq-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}



.scroll-arrow {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 26px;
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  padding: 4px;
  transition: color 0.3s ease;
  z-index: 5; 
}

.scroll-arrow:hover {
  color: rgba(0, 0, 0, 0.8);
}

.scroll-arrow.left {
  left: -10px;
}

.scroll-arrow.right {
  right: -10px; 
}


.hero-section {
  padding: 10px 0;
  background-color: #f8f9fa; 
}

.hero-section .hero-content h1 {
    font-size: 1.7rem;
    font-weight: 700;
}

.hero-section .hero-content p {
  font-size: 1.1rem; 
  line-height: 1.4;
  color: #555;
}


.neueste-hintergrundbilder {
  list-style: none;
  margin: 0;
  padding: 0;
}

.neueste-hintergrundbilder li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;       /* çizgi için boşluk */
  border-bottom: 1px solid #ccc; /* öğeler arası çizgi */
  transition: transform 0.2s;
}

.neueste-hintergrundbilder li:last-child {
  border-bottom: none; /* son öğede çizgi yok */
}

.neueste-hintergrundbilder li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.neueste-hintergrundbilder li a:hover {
  transform: translateX(5px);
}

.neueste-hintergrundbilder .bild-wrapper {
  width: 50px;  /* resim boyutu küçültüldü */
  height: 50px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 6px;
  margin-right: 10px;
}

.neueste-hintergrundbilder .bild-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.neueste-hintergrundbilder .titel-wrapper {
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 500;
}



.author-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.author-box:hover {
  box-shadow: 0 12px 25px rgba(0,0,0,0.09);
}

.author-box img {
 width: 100px;
}

.author-header {
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 18px;
}

.author-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f5f5f5;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.author-title {
  font-size: 0.95rem;
  color: #777;
  margin-top: 3px;
}

.author-contact {
  margin-top: 12px;
}

.author-mail {
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: #555;
}
.author-mail a {
  color: #0073e6;
  text-decoration: none;
}
.author-mail i {
  margin-right: 6px;
}

.author-socials a {
  display: inline-block;
  margin-right: 10px;
  color: #888;
  font-size: 1.2rem;
  transition: color 0.2s, transform 0.2s;
}
.author-socials a:hover {
  color: #0073e6;
  transform: translateY(-2px);
}

.author-accordion {
  margin-top: 25px;
}
.accordion-item {
  border-top: 1px solid #f1f1f1;
}
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 12px 0;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  position: relative;
}
.accordion-header::after {
  content: "+";
  position: absolute;
  right: 0;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.accordion-item.active .accordion-header::after {
  transform: rotate(45deg);
}
.accordion-content {
  display: none;
  padding: 10px 0 20px 10px;
  color: #555;
}
.accordion-item.active .accordion-content {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-5px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 600px) {
  .author-header {
    flex-direction: column;
    text-align: center;
  }
  .author-image {
    width: 80px;
    height: 80px;
  }
  .author-info {
    margin-top: 10px;
  }
}

.author-box .author-bio {
  font-size: 0.85rem; /* Küçük yazı */
  color: #555;
  margin-top: 4px;
  line-height: 1.3;
  max-height: 3.9em; /* 3 satır görünür */
  overflow: hidden;
  text-overflow: ellipsis;
}
.author-box .author-name a,
.author-box .author-image {
  cursor: pointer;
  transition: opacity 0.3s;
}
.author-box .author-name a:hover,
.author-box .author-image:hover {
  opacity: 0.8;
}



.license-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* popup için gerekli */
}

.more-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background-color: #e5e9ec;
    border-radius: 30%;
    color: #24507e;
    font-size: 16px;
    text-decoration: none;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 12px;
}

.more-info-btn:hover {
    background-color: #d1d8e0;
}

.btn-download-top {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #65b47d;
    color: #fff !important;
    font-size: 16px;
    font-weight: bold;
    height: 46px;
    border-radius: 6px;
    text-decoration: none;
    gap: 8px;
    padding: 0 20px;
    transition: background 0.3s ease;
}

.more-info-popup {
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px 16px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    min-width: 220px;
    display: none;
    z-index: 100;
    font-size: 0.9rem;
}

.more-info-popup p {
    margin: 0 0 5px 0;
}






/* --- GENEL AYARLAR --- */
.section-header {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
}
.section-header h2 {
    font-weight: 700;
    color: #222;
}
.section-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
    margin: 40px 0;
}

/* --- MASONRY LAYOUT (KARIŞIK AKIŞ) --- */
/* Bu yapı resimlerin Pinterest gibi iç içe geçmesini sağlar */
.masonry-grid {
    column-count: 5; /* Masaüstünde 5 sütun */
    column-gap: 15px; /* Sütunlar arası boşluk */
}

.masonry-item {
    break-inside: avoid; /* Resimlerin sütun arasında bölünmesini engeller */
    margin-bottom: 15px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.masonry-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Resim üzerine gelince çıkan yazı */
.overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px 10px 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.masonry-item:hover .overlay-info {
    opacity: 1;
}

.overlay-info span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- BUTONLAR --- */
.load-more-container {
    text-align: center;
    margin: 40px 0;
}
.btn-modern-outline {
    display: inline-block;
    padding: 12px 40px;
    border: 2px solid #667eea;
    color: #667eea;
    background: transparent;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-modern-outline:hover {
    background: #667eea;
    color: #fff;
}

/* --- KATEGORİ BÖLÜMLERİ --- */
.category-section {
    padding: 40px 0;
}
.bg-light {
    background-color: #f9f9f9;
}
.cat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.cat-header h3 {
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}
.see-all-link {
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.see-all-link:hover {
    color: #667eea;
}

/* Standart Grid (Yatay resim ağırlıklı kategoriler için) */
.standard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.grid-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.grid-card:hover img {
    transform: scale(1.03);
}

/* Mobil Grid (Dikey resim ağırlıklı kategoriler için - iPhone vb) */
.mobile-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Daha küçük kartlar */
    gap: 15px;
}
.mobile-card img {
    width: 100%;
    aspect-ratio: 9/16; /* Tam dikey oran */
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.mobile-card:hover img {
    transform: scale(1.05);
}


/* --- RESPONSIVE AYARLAR --- */
@media (max-width: 1200px) {
    .masonry-grid { column-count: 4; }
    .standard-grid { grid-template-columns: repeat(3, 1fr); }
    .mobile-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 992px) {
    .masonry-grid { column-count: 3; }
    .standard-grid { grid-template-columns: repeat(2, 1fr); }
    .mobile-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .masonry-grid { column-count: 2; column-gap: 10px; }
    .standard-grid { grid-template-columns: repeat(2, 1fr); }
    .mobile-grid { grid-template-columns: repeat(3, 1fr); }
    
    .cat-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .mobile-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Başlangıçta gizlenecek öğeler için - EN ALTA EKLE */
.hidden-item {
    display: none !important;
}

/* Görünür olduklarında animasyonlu gelsinler */
.masonry-item {
    transition: opacity 0.5s ease-in-out;
}

/* Masaüstü (Yatay) kartlar için bilgi alanı */
.grid-info {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}





/* --- MODERN FOOTER TASARIMI --- */
.hinterbild-footer {
    background-color: #111; /* Koyu premium tema */
    color: #b0b0b0;
    padding: 60px 0 20px;
    font-size: 14px;
    margin-top: 50px;
}

.hinterbild-footer a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
}

.hinterbild-footer a:hover {
    color: #fff;
    padding-left: 5px; /* Hover efekti */
}

/* Footer Grid Yapısı (Üst Kısım) */
.footer-top-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Kolon Genişlikleri */
.footer-col-brand { grid-column: span 4; } /* Logo ve Adres */
.footer-col-map   { grid-column: span 3; } /* Harita */
.footer-col-links { grid-column: span 2; } /* Kurumsal Linkler */
.footer-col-cats  { grid-column: span 12; border-top: 1px solid #333; padding-top: 30px; margin-top: 20px;} /* Kategoriler (Tam Genişlik) */

.footer-logo img {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #888;
}

.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Adres & İletişim */
.contact-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.contact-list i { color: #fff; margin-top: 4px; }

/* Harita */
.footer-map iframe {
    border-radius: 8px;
    filter: grayscale(100%) invert(92%) contrast(83%); /* Haritayı siteye uydurur (Koyu mod) */
    transition: 0.3s;
}
.footer-map iframe:hover { filter: none; }

/* KATEGORİ GRID (50 Kategori İçin Çözüm) */
.category-grid-wrapper {
    display: grid;
    /* Masaüstünde 5 sütun, sığmazsa otomatik alt satıra geçer */
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); 
    gap: 10px 20px;
}

.category-grid-wrapper a {
    display: block;
    padding: 3px 0;
    font-size: 13px;
    border-bottom: 1px solid #222;
}

/* Footer Alt (SEO Metni & Copyright) */
.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    margin-top: 30px;
    text-align: center;
}
.footer-seo-text {
    font-size: 12px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* --- MOBİL UYUMLULUK (ACCORDION) --- */
@media (max-width: 991px) {
    .footer-top-grid { display: block; }
    
    .footer-col-brand, .footer-col-map, .footer-col-links, .footer-col-cats {
        margin-bottom: 20px;
        border-bottom: 1px solid #222;
        padding-bottom: 10px;
    }

    /* Mobilde Başlıklar Tıklanabilir Olsun */
    .footer-heading {
        cursor: pointer;
        margin-bottom: 10px;
    }

    /* Ok İşareti */
    .footer-heading::after {
        content: '\f107'; /* FontAwesome Down Arrow */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        transition: transform 0.3s;
    }

    /* Açıkken Ok Dönsün */
    .footer-heading.active::after {
        transform: rotate(180deg);
    }

    /* İçerik Gizleme (Sadece mobilde) */
    .footer-content {
        display: none; /* Varsayılan gizli */
        padding-bottom: 20px;
    }
    
    /* Javascript ile 'open' classı eklenince aç */
    .footer-content.open { display: block; }

    /* Mobilde Kategori Grid 2 Sütun Olsun */
    .category-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-logo-section { text-align: center; }
    .footer-map iframe { height: 200px; }
}


/* SVG İkonlar İçin Genel Stil */
.icon-svg {
    width: 24px;
    height: 24px;
    fill: currentColor; /* Üst elementin yazı rengini alır */
    display: inline-block;
    vertical-align: middle;
}

/* Mobildeki menü ikonu için biraz daha büyük */
.sabit-menu-icon .icon-svg {
    width: 28px;
    height: 28px;
}

/* Arama butonu içindeki ikon ayarı */
.google-search-button .icon-svg {
    width: 18px;
    height: 18px;
}
