/* Tüm sayfa için scrollbar */
html {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #000 #f4f4f4; /* Firefox */
}

html::-webkit-scrollbar {
  width: 10px; /* Scrollbar genişliği */
}

html::-webkit-scrollbar-thumb {
  background-color: #000; /* Scrollbar'ın rengi */
  border-radius: 5px; /* Köşeleri yuvarlak */
}

html::-webkit-scrollbar-track {
  background-color: #f4f4f4; /* Scrollbar arka plan rengi */
}

/* Başlangıç durumu (görünmez) */
.reveal {
  opacity: 0;
  transform: translateY(100px); /* Aşağıdan yukarı kayma efekti */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Section ekrana girdiğinde görünür hale gelir */
.reveal.show {
  opacity: 1;
  transform: translateY(0); /* Yavaşça yukarı çıkar */
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: var(--font-family-lora);
}
/* Genel Ayarlar */
body {
    margin: 0;
    font-size: 16px;
  }
  
  .header {
    width: 100%;
    background: transparent;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
  }
  
  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .header__logo {
    display: flex;
    align-items: center;
  }
  
  .header__logo img {
    width: 200px;
    height: auto;
  }
  
  .header__links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
  }
  
  .header__links li {
    margin: 0 20px;
  }
  
  .header__links a {
    text-decoration: none;
    color: var(--black-75);
    font-size: calc(var(--font-size-1) * 1.1);
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
  }
  
  .header__links a:hover,
  .header__links a.active {
    color: #000;
  }
  
  .header__links a.active::after,
  .header__links a:hover::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
    transition: width 0.3s;
  }
  
  .header__links a::after {
    width: 0;
  }
  
  .header__btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }
  
  .header__btn span {
    display: block;
    width: 30px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
  }
  
 /* Header Close Button Düzenlemesi */
    .header__close {
        display: none; /* Varsayılan olarak görünmez */
        font-size: 30px;
        color: #333;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        z-index: 1100;
  }
  .header__btn{
    display: none;
  }

  /* dil seçici */ 
  /* Dil Seçici */
.language-selector {
  margin: 0;
}

.language-selector select {
  font-size: 1rem;
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #fff;
  appearance: none; /* Varsayılan ok simgesini kaldır */
  cursor: pointer;
  color: #000;
}

.language-selector select option {
  font-size: 1rem;
  padding: 5px;
}
  
  /* Responsive */
  @media (max-width: 768px) {
    .header__btn {
      display: flex; /* Menü butonu görünür */
    }
    .header__links {
      position: fixed;
      top: -200%;
      right: 0;
      width: 100%;
      height: 100vh;
      background: #fff;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      transition: top 0.4s ease-in-out;
      z-index: 1000;
    }
    .header__links.active {
        top: 0; /* Menü aşağıdan yukarı doğru gelir */
    }
    .header__logo img {
        width: 150px;
    }
    .header__logo {
        z-index: 1100; /* Logo her zaman üstte kalır */
    }
  }
  
  
  

/* ============= END HEADER ============= */


/* ============= SLİDER ============= */
.video-container {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.fullwidth-video {
  width: 100%;
  max-height: 800px; /* Video boyutunu slider boyutuna göre ayarla */
  object-fit: cover;
}
.mute-button {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  padding: 10px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.mute-button:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
  transform: scale(1.1);
}



/* ============= END SLİDER ============= */

/* ============= CARD SLIDER ============= */
/* Genel Ayarlar */
.card-slider-section {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
}

/* Slider Header */
.slider-header {
  display: flex;
  flex-direction: column; /* Başlık ve filtreyi alt alta sıralamak için */
  align-items: center; /* Ortalamak için */
  margin-bottom: 20px;
}

.slider-title {
  font-size: 28px; /* Daha büyük başlık boyutu */
  font-weight: bold;
  margin-bottom: 10px; /* Başlık ve filtre arasında boşluk */
}

.collection-filter {
  padding: 8px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ddd;
  text-align: center; /* Filtre içeriğini ortalamak için */
}


/* Slider Container */
.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}

/* Slider Card */
.slider-card {
  min-width: calc(100% / 3); /* 3 Kart */
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  transform: scale(0.9);
  transition: transform 0.3s ease-in-out;
}

.slider-card:hover {
  transform: scale(1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.slider-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.slider-card h3 {
  font-size: 18px;
  color: #333;
}

.slider-card .price {
  font-size: 16px;
  color: #555;
  margin: 10px 0;
}

.slider-card .explore {
  text-decoration: none;
  color: #007BFF;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.slider-card .explore:hover {
  color: #0056b3;
}

/* Slider Buttons */
.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease-in-out;
}

.slider-button:hover {
  background: #f0f0f0;
}

.slider-button.prev {
  left: 10px;
}

.slider-button.next {
  right: 10px;
}
/* Daha Fazla Koleksiyonlar Butonu */
.more-collections {
  text-align: center;
  margin-top: 20px;
}

.more-collections-button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.more-collections-button:hover {
  background-color: #ffffff;
  transform: scale(1.05);
}


/* Responsive Design */
@media (max-width: 768px) {
  .slider-card {
    min-width: 100%; /* Mobilde tek kart */
  }
}

/* ============= About Section ============= */

/* About Section */
.about-section {
  width: 100%;
  padding: 50px 0;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.about-text {
  flex: 1;
  padding: 20px;
}

.about-text h2 {
  font-size: 32px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.read-more-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.read-more-btn a{
  text-decoration: none;
  color: #000;
}

.read-more-btn:hover {
  background-color: #000;
}
.read-more-btn:hover a{
  color: #fff;
}

/* Görsel Alanı */
.about-image {
  flex: 1;
  position: relative;
}

.about-image .image-background {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background-color: #C3B9AC;
  z-index: 1;
  border-radius: 10px;
}

.about-image img {
  position: relative;
  width: 100%;
  border-radius: 10px;
  z-index: 2;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image .image-background {
    display: none;
  }
  .about-image img {
    position: relative;
    width: 90%;
    border-radius: 10px;
    z-index: 2;
  }
}

/* ============= Instagram section ============= */

/* Instagram Section */
.instagram-section {
  width: 100%;
  padding: 50px 0;
  background-color: #f9f9f9;
  text-align: center;
  position: relative; /* Butonun pozisyonu için */
}

.instagram-gallery {
  overflow-x: auto;
  white-space: nowrap;
  padding: 20px 0;
  position: relative;
}

.instagram-images {
  display: flex;
}

.instagram-image {
  width: calc(100% / 6); /* 6 Görsel */
  height: 300px;
  flex-shrink: 0;
}

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

/* Follow Button Overlay */
.follow-overlay {
  position: absolute;
  top: 300px; /* Görsellerin üstünde sabit */
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background-color: #2c2c2c;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  z-index: 10; /* Butonun en üstte kalması için */
}

/* Responsive Design */
@media (max-width: 768px) {
  .instagram-image {
    width: calc(100% / 3); /* Mobilde 3 Görsel */
  }
}

@media (max-width: 480px) {
  .instagram-image {
    width: calc(100% / 2); /* Mobilde 2 Görsel */
  }
}

/* ============= Contact Section ============= */

/* Contact Section */
.contact-us {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.contact-form {
  flex: 1;
  padding: 30px;
}

.contact-form h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.contact-form p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
}

.form-group textarea {
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #007bff;
}

.submit-btn {
  padding: 12px 20px;
  background-color: gray;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  border: 1px solid #ddd;
}
/* Submit Button: Disabled State */
.submit-btn[disabled] {
  background-color: #ccc;
  cursor: not-allowed;
}


.contact-map {
  margin-top: 40px;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .footer-content img{
    width: 60%;
  }
}

/* ============= scroll up ============= */

/* Scroll-up butonu */
#scrollUpButton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10; /* Popup'tan düşük olmalı */
  display: none;
  background-color: black;
  color: white;
  padding: 10px;
  border-radius: 25%;
  cursor: pointer;
}

#scrollUpButton.show {
  display: block;
}

.scroll-up-btn.hide {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
}

/* footer */
.footer{
  padding: 80px 13%;
  bottom: 0;
}
.footer-content img{
  width: 35%;
}
.footer-container{
  padding: 0px 20px;
  max-width: 1170px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  gap: 3.5rem;
  left: 0;
  right: 0;
  bottom: 0;
}
.footer-content h4{
  color: #000000;
  margin-bottom: 1.5rem;
  font-size: 20px;
}
.footer-content li{
  margin-bottom: 16px;
  list-style-type: none;
}
.footer-content li a{
  text-decoration: none;
  color: #000000;
  font-size: 13px;
  transition: all 0.40s ease;
  background-image: linear-gradient(hsl(0, 0%, 0%), hsl(0, 0%, 0%));
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.5s ease;
}
.footer-content li a:hover{
  background-size: 100% 1px;
}
.footer-icons a{
  display: inline-block;
  font-size: 22px;
  color: #000000;
  margin-right: 17px;
  transition: all 0.40s ease;
}
.footer-icons a:hover{
  color: #000000;
  transform: translateY(-5px);
}
/* Alt Çizgi Arka Plan */
.footer-bottom {
  width: 100%;
  color: #000000;
  text-align: center;
  padding: 10px 0;
  position: relative; /* En alta sabitlemek için */
  bottom: 0;
  left: 0;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: gray;
  text-decoration: none;
  transition: color 0.3s;
}

@media (max-width: 768px) {
  .footer-content img{
    width: 70%;
  }
}
@media (max-width: 375px) {
  .footer-content img{
    width: 80%;
  }
}
@media (max-width: 320px) {
  .footer-content img{
    width: 90%;
  }
}

/* ABOUT PAGE */

.mission-vision-section {
  padding: 40px 10%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.card {
  flex: 1;
  padding: 30px;
  background-color: #f5e4d5;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.card h3 {
  font-size: 2rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}
.card p {
  font-size: 1rem;
  line-height: 1.6;
}

  .misyon-text {
    flex: 1;
    padding-left: 80px;
  }
  
  .misyon-text h2 {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
  }
  
  .misyon-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
  }

  .aboutpage-section {
    width: 100%;
    padding: 50px 0;
    background-color: #f9f9f9;
  }
  
  .aboutpage-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
  }

  @media (max-width: 1024px) {
    .aboutpage-section {
      padding-right: 40px;
    }
  }

/* Responsive Tasarım */
@media (max-width: 768px) {
  .aboutpage-container {
    flex-direction: column;
    justify-content: center; /* Dikeyde ortala */
    align-items: center; /* Yatayda ortala */
    text-align: center;
  }

  .about-image,
  .about-text {
    padding: 0 15px;
  }

  .about-image img {
    width: 100%;
    max-width: 600px; /* Görselin maksimum genişliği */
    height: auto;
    border-radius: 10px;
  }

  .misyon-text {
    flex: 1;
    padding-left: 0px; /* Mobilde sola yapışmasın */
    text-align: center;
  }

  .aboutpage-section {
    padding: 20px 15px; /* Kenarlarda boşluk için */
  }
}

@media (max-width: 425px) {
  .aboutpage-container {
    margin-top: 0px;
    padding: 0 10px; /* Küçük ekranlarda içerik kenara yapışmasın */
  }

  .misyon-text h2 {
    font-size: 24px; /* Başlığı daha küçük yap */
  }
}


/* ============= END ABOUT PAGE ============= */

/* ============= CONTACT PAGE ============= */

.contact-section {
  padding: 50px 10%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.contact-header {
  text-align: center;
  margin-bottom: 40px;
}
.contact-header h2 {
  font-size: 2.5rem;
  color: #4a4a4a;
}
.contact-header p {
  font-size: 1.2rem;
  color: #666;
}
.contact-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.contact-info {
  flex: 1;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.4);
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-info-item i {
  font-size: 1.8rem;
  color: #4a4a4a;
}
.contact-map {
  margin-top: 40px;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-info {
    padding: 20px;
  }
  .contact-form {
    padding: 20px;
  }
}

/* ============= END CONTACT PAGE ============= */

/* ============= KOLEKSİYONLARIMIZ ============= */

.wide-collection {
  padding: 50px 0;
  background-color: #f5f5f5;
}

.collection-row {
  display: flex;
  justify-content: space-between; /* Yan yana eşit boşluk */
  gap: 20px; /* Kartlar arası boşluk */
  margin: 0 20px;
}

.collection-card {
  flex: 1; /* Eşit genişlikte kart */
  height: 700px; /* Normal ekran için yükseklik */
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.collection-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Fotoğraf üstü karartma */
  z-index: 1;
}

.collection-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.collection-overlay h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.disabled {
  filter: grayscale(80%);
  opacity: 0.7;
  pointer-events: none; /* Tıklamayı devre dışı bırakır */
}

.disabled h2,
.disabled p {
  color: #cccccc; /* Soluk metin rengi */
}

/* Mobil görünüm için */
@media (max-width: 1024px) {
  .collection-card {
    width: 100%; /* Tam genişlik */
    height: 900px; /* Yüksekliği artır */
  }

  .collection-overlay h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .collection-row {
    display: block;
  }

  .collection-card {
    width: 100%; /* Tam genişlik */
    height: 700px;
    margin-bottom: 20px;
  }

  .collection-overlay h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .collection-overlay h2 {
    font-size: 2rem;
  }
}
/* ============= END KOLEKSİYONLARIMIZ ============= */

/* ============= KOLEKSİYON SAYFALARI ============= */

.collection-header {
  text-align: center;
  padding: 30px 0 10px;
}

.collection-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.collection-header p {
  font-size: 1rem;
  color: #777;
}

.collection-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px 10%;
}

.collection-item {
  flex: 1 1 calc(22.222% - 20px);
  max-width: calc(20.000% - 20px);
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.collection-item:hover img {
  transform: scale(1.05); /* Hover büyütme efekti */
}

.collection-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.collection-item-title {
  text-align: center;
  padding: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

/* Popup (Lightbox) */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999; /* En üstte */
}

.popup-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.popup-overlay .close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 10000; /* Menü ve scroll-up butonundan üstün */
}

@media (max-width: 1024px) {
  .collection-item {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
  .collection-header h2 {
    font-size: 1.8rem; /* Mobilde başlık biraz daha küçüldü */
  }

  .collection-header p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .popup-overlay .close-btn {
    top: 15px;
    left: 50%; /* Mobilde de sol üst köşe */
  }
  .collection-header h2 {
    font-size: 1.8rem; /* Mobilde başlık biraz daha küçüldü */
  }

  .collection-header p {
    font-size: 1.2rem;
  }
}

@media (max-width: 425px) {
  .collection-gallery {
    gap: 10px; /* Kartlar arasındaki boşluk azaltıldı */
  }

  .collection-item {
    flex: 1 1 100%; /* 425px altında tam genişlik */
    max-width: 100%;
    margin-bottom: 15px;
  }

  .collection-header h2 {
    font-size: 1.8rem; /* Başlık daha küçük */
  }

  .collection-header p {
    font-size: 1.2rem; /* Açıklama metni daha küçük */
  }
}

/* ============= END KOLEKSİYON SAYFALARI ============= */


/* ============= GİZLİLİK POLİTİKASI SAYFASI ============= */

.privacy-header {
  background-color: #333;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.privacy-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.privacy-header p {
  font-size: 1.2rem;
}

.privacy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333;
}

.privacy-section p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

.privacy-section ul {
  padding-left: 20px;
}

.privacy-section ul li {
  margin-bottom: 10px;
}

.footer {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .privacy-header h1 {
    font-size: 2rem;
  }

  .privacy-header p {
    font-size: 1rem;
  }

  .privacy-section h2 {
    font-size: 1.5rem;
  }

  .privacy-section p {
    font-size: 0.9rem;
  }
}

/* ============= END GİZLİLİK POLİTİKASI SAYFASI ============= */


/* ============= ÇEREZLER SAYFASI ============= */

.cookie-header {
  background-color: #333;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.cookie-header h1 {
  font-size: 2.5rem;
}

.cookie-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cookie-section {
  margin-bottom: 30px;
}

.cookie-section h2 {
  font-size: 1.8rem;
  color: #333;
}

.cookie-section p {
  line-height: 1.8;
  color: #555;
}

.cookie-section ul {
  padding-left: 20px;
}

.cookie-section ul li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .cookie-header h1 {
    font-size: 2rem;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  display: none;
}

.cookie-banner p {
  margin: 0;
  font-size: 1rem;
}

.cookie-banner a {
  color: #ffcc00;
  text-decoration: underline;
}

.cookie-banner button {
  background-color: #ffcc00;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  margin-left: 20px;
  border-radius: 5px;
}


/* ============= END ÇEREZLER SAYFASI ============= */
