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



/* 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: #00167a;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  user-select: none;
}
#mobileMenuToggle i {
  pointer-events: none;
  font-size: 20px;
  line-height: 1;
}

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

/* Logo alanı */
.menu-logo img {
  height: 45px;
  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;
}

/* Footer linkleri */
.menu-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  padding-top: 15px;
  border-top: 1px dashed #bbb;
}
.menu-footer a {
  color: #555;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.menu-footer a:hover {
  color: #000;
  text-decoration: underline;
}



.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-card img {
  object-fit: cover;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    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;
  }
  .rechte-spalte {
    order: 3;
  }
}


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


.hintergrundbild {
  display: block;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
  overflow: hidden;
  position: relative;
  transition: height 0.5s ease;
  filter: brightness(110%) saturate(130%);
}


.hintergrundbild img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
  user-select: none;
  pointer-events: none;
  transition: top 0.5s ease, transform 0.5s ease;
}


	.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: #fff;
    padding: 1px;
    font-family: 'Segoe UI', sans-serif;
}

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

.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: 36px;
	padding: 5px;
	color: #00167a;
    line-height: 40px;
}

.description {
    font-size: 20px;
    font-weight: 400;
    color: #6c757d;
	padding: 5px;
}

@media (max-width: 768px) {
  .title {
    font-size: 22px !important;
	line-height: 24px;
  }
  .description {
    font-size: 18px !important;
  }
}



.ähnliche-hintergrundbilder {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 0;
    margin: 40px 0 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: 16 / 9;
    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 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 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: 1340px;
    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: 1200px;
  margin: 0 auto;
}


.license-info-box {
 display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #5e17eb;
    background: #f7f7f9;
    padding: 10px;
    color: #333;
    gap: 15px;
    flex-wrap: wrap;
}

.license-left h4 {
  margin: 0 0 8px 0;
  font-weight: 600;
  color: #5e17eb;
}

.license-left p {
  margin: 3px 0;
  font-size: 14px;
}

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

.license-right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.license-right .btn {
  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;
}


.report-form {
  background: #f1f1f5;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
}

.report-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #aaa;
  border-radius: 6px;
  resize: vertical;
  margin-bottom: 10px;
}

.report-form button {
  background-color: #5e17eb;
  color: white;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.report-form button:hover {
  background-color: #4b129b;
}



.wallpaper-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;

  border: 2px solid #5e17eb;
  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: 10px;
    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 {
  padding: 10px 0;
  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: 8px 15px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    color: #555;
    font-size: 14px;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    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;
    padding: 15px 10px;
    scrollbar-width: none;
}

.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: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ddd;
    margin: 0 auto 8px;
    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;
}





.scroll-menu-bar {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  background: linear-gradient(90deg, #203d67, #00167a);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.scroll-menu-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 10px;
}

.scroll-menu-inner::-webkit-scrollbar {
  display: none;
}

.scroll-menu-inner a {
  flex: 0 0 auto;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #f0f6fc;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.scroll-menu-inner a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0%;
  height: 2px;
  background: #58a6ff;
  transition: width 0.3s ease, left 0.3s ease;
}

.scroll-menu-inner a:hover {
  color: #58a6ff;
}

.scroll-menu-inner a:hover::after {
  width: 100%;
  left: 0;
}

@media (min-width: 992px) {
  .scroll-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
  }
}





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

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

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

.header-search-form {
  flex-grow: 1;
  max-width: 600px;
  display: flex;
  border-radius: 10px;
  background: #f1f3f5;
  padding: 5px 10px;
  box-shadow: inset 0 0 6px rgb(0 0 0 / 0.1);
}

.header-search-form input {
  flex-grow: 1;
  border: none;
  background: transparent;
  padding: 0;
  font-size: 1rem;
  border-radius: 30px 0 0 30px;
  transition: box-shadow 0.3s ease;
}

.header-search-form input:focus {
  outline: none;
  box-shadow: 0 0 6px #007bff;
}

.header-search-form button {
    border: none;
    background: #00167a;
    color: #ffffff;
    font-size: 14px;
    padding: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.header-search-form button:hover {
  background: #0056b3;
}

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

.dropdown-menu {
  position: absolute;
  top: 60px; /* header yüksekliği */
  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; /* Logoyu sola hizala */
    gap: 10px;
    flex-wrap: wrap; /* Taşmayı önlemek için sarmalayıcı */
  }

  .header-search-form {
    order: 2; /* Arama formunu altta göster */
    width: 100%; /* Tam genişlik */
    margin-top: 10px;
    max-width: none;
    box-shadow: 0 0 6px rgb(0 123 255 / 0.3);
  }

  .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;
  }

  .header-search-form {
    max-width: 100%;
    margin-left: 10px;
  }

  .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;
  }
 
.hero-section {
  padding: 1px;
  background-color: #f8f9fa; 
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.search-form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.search-form input[type="text"] {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.search-form button {
  padding: 10px 16px;
  background-color: #222;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.search-form button:hover {
  background-color: #000;
}





  .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) {
    .hero-section h1 {
      font-size: 1.3rem;
    }


    .search-form {
      max-width: 100%;
    }


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

  .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;
}


.hinterbild-footer {
  color: #000;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  border-top: 4px solid #00167a;
}

.hinterbild-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo-section {
  flex: 1 1 250px;
}
.footer-logo img {
  height: 60px;
  width: 300px;
}
.footer-slogan {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #000;
  max-width: 300px;
}

.footer-links {
  display: flex;
  flex: 2 1 500px;
  gap: 80px;
}


.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  margin-bottom: 10px;
}
.footer-column ul li a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.footer-column ul li a:hover {
  color: #ffffff;
}

.footer-seo {
  margin: 40px 0 20px;
  font-size: 0.95rem;
  color: #c2cee1;
  line-height: 1.6;
  text-align: left;
  max-width: 900px;
}

.footer-bottom {
  text-align: left;
  font-size: 0.9rem;
  color: #99a6c9;
  border-top: 1px solid #2c3c5a;
  padding-top: 15px;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  .footer-seo,
  .footer-bottom {
    text-align: center;
  }
}

.kurumsal-footer {
  background-color: #131c2f;
}

.footer-column h4 {
  border-bottom: 2px solid #2f80ed;
}

.footer-column ul li a:hover {
  color: #2f80ed;
}
