.content-wrapper {
  max-width: 1200px;
  margin: 51px auto;
  padding: 20px;
}

/* Main heading styling */
.main-heading {
  font-size: 36px;
  margin: 0 0 10px 0;
}
.section-aboutProject {
  background-color: #ffffff;
  color: #333;
  padding: 5% 10%; /* Daha iyi kenar boşluğu */
  text-align: center;
  line-height: 1.8; /* Daha uygun bir satır yüksekliği */
}

.aboutProjectMedia {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  gap: 20px; 
}

.aboutProject-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 2rem; 
  color: #686868;
  width: 100%;
  line-height: 1.8; 
}

.aboutProject-list li {
  margin-bottom: 1rem; 
}


@media (min-width: 768px) {
  .aboutProjectMedia {
    flex-direction: row; 
    justify-content: space-between; 
  }

  .aboutProject-list {
    width: 100%; 
    margin-bottom: 3rem; 
  }

  .section-aboutProject {
    padding: 5% 12%; 
  }
}

@media (min-width: 1024px) {
  .aboutProjectMedia {
    gap: 40px; 
  }

  .aboutProject-list {
    line-height: 2;
  }

  .section-aboutProject {
    padding: 4% 15%; 
  }
}


/* Subheading styling */
.subheading {
  font-size: 14px;
  color: #986667;
  margin-bottom: 30px;
  font-weight: bold;
  text-align: left;
}

.project-description{
  line-height: 3rem;
}
/* Image frame styling */
.image-frame {
  margin-bottom: 20px;
}

/* Full width image styling */
.full-width-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.gallery-image {
  width: 100%;
  height: auto;
}

.shadow-effect {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cardContainer {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  max-width: 1200px;
  margin: 0 auto;
}

.heading {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bolder;
}

.infoWrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.infoItem {
  flex: 1;
  text-align: center; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  box-sizing: border-box;

  
}

.infoLabel {
  font-size: 16px;
  font-weight: bold;
  color: #66B2B2;
  margin-bottom: 5px; 
}

.infoValue {
  font-size: 14px;
  margin: 0;
  color: #000;
}

/* Mevcut mobil düzen */
@media (max-width: 768px) {
  .infoWrapper {
    display: grid; /* Grid düzeni */
    grid-template-columns: repeat(2, 1fr); /* 2 sütun düzeni */
    gap: 15px; /* Öğeler arası boşluk */
  }

  .infoItem {
    flex: none; /* Flex davranışını kaldır */
  }
}

/* Daha küçük mobil cihazlar */
@media (max-width: 480px) {
  .infoWrapper {
    grid-template-columns: repeat(2, 1fr); /* 2 sütun düzeni korunur */
    gap: 10px; /* Daha az boşluk */
  }

  .infoItem {
    padding: 15px; /* Küçük ekranlarda iç boşluğu artır */
  }

  .infoLabel {
    font-size: 14px; /* Daha küçük yazı */
  }

  .infoValue {
    font-size: 12px; /* Daha küçük yazı */
  }
}

  :root {
    --background: #ffffff;
    --foreground: #333333;
    --card: #ffffff;
    --card-foreground: #333333;
    --popover: #ffffff;
    --popover-foreground: #333333;
    --primary: #1a8cff;
    --primary-foreground: #ffffff;
    --secondary: #e0e0e0;
    --secondary-foreground: #1a1a1a;
    --muted: #e0e0e0;
    --muted-foreground: #404040;
    --accent: #e0e0e0;
    --accent-foreground: #1a1a1a;
    --destructive: #ff3b30;
    --destructive-foreground: #ffffff;
    --border: #e0e0e0;
    --input: #e0e0e0;
    --ring: #1a8cff;
    --radius: 0.95rem;
}

.layout-container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: var(--card);
    color: var(--foreground);
    width: 80%;
    gap: 20%;
}
.project-details{
  margin: 8%;
}
.project-description {
    flex: 2;
}



.about-title {
    font-size: 2.25rem !important; /* Slightly smaller font size */
    font-weight: bold;
    margin-bottom: 1rem;
}

.project-list {
    list-style-type: disc;
    padding-left: 1.25rem;
    margin-bottom: 5rem;
    color: #686868;
}

.description-text {
    color: var(--muted-foreground);
    font-size: 0.875rem; /* Slightly smaller font size */
}




@media (min-width: 768px) {
    .layout-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .project-description {
        width: 66.66667%;
    }

    .brochure-section {
        width: 33.33333%;
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .layout-container {
        width: 90%;
        padding: 1rem; /* Küçük ekranlar için padding ayarı */
    }

    .cardContainer {
        margin: 10px 2%; /* Ekran boyutuna göre margin ayarı */
    }

    .heading {
        font-size: 1.125rem; /* Daha küçük ekranlar için font boyutu */
    }
}
@media (max-width: 768px) {
    .cardContainer {
        margin: 10px 5%; /* Ekran boyutuna göre margin ayarı */
    }

    .heading {
        font-size: 1.25rem; /* Daha küçük ekranlar için font boyutu */
    }

    .infoWrapper {
        flex-direction: column; /* Dikey hizalama */
        gap: 0.5rem; /* Öğeler arasındaki boşluk */
    }

    .infoItem {
        min-width: 100%; /* Her öğe tam genişlikte olacak */
    }
}

@media (max-width: 576px) {
    .cardContainer {
        margin: 5px 2%; 
        padding: 1rem; 
    }

    .heading {
        font-size: 1.125rem; 
    }

    .infoItem {
        padding: 0.5rem; 
    }
}
.content-wrapper {
  text-align: center;
}

.main-heading {
  font-size: 2.5rem;
  margin-top: 20px;
  text-align: left;
  margin-bottom: 2%;

}

.subheading {
  font-size: 1rem;
  margin-bottom: 10px;
}

.image-frame {
  margin: 20px auto;
  max-width: 80%; 
}

.full-width-image {
  width: 100%;
  height: auto;
  cursor: pointer;
}

.image-gallery {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.gallery-item {
  flex: 1;
  max-width: 30%; 
}

.gallery-image {
  width: 100%;
  height: auto;
  cursor: pointer;
}

/* Modal styles */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  padding-top: 0; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.9); 
}

.modal-contentImage {
  margin: 50%;
  max-width: 90%; /* Adjusted for smaller screens */
  max-height: 90%; /* Adjusted for smaller screens */
  border-radius: 8px;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: auto;
}

/* Close button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Navigation buttons */
.photoPrevButton,
.photoNextButton {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white !important;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.photoPrevButton {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.photoNextButton {
  right: 0;
  border-radius: 0 3px 3px 0;
}

.photoPrevButton:hover,
.photoNextButton:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .modal-contentImage {
      max-width: 80%;
      max-height: 80%;
      margin: 50%;
  }
}

@media (max-width: 768px) {
  .modal-contentImage {
      max-width: 70%;
      max-height: 70%;
      margin: 50%;
  }
}

@media (max-width: 480px) {
  .modal-contentImage {
      max-width: 65%;
      max-height: 65%;
      margin: 50%;
  }
}

@media (max-width: 390px) {
  .modal-contentImage {
      max-width: 60%;
      max-height: 60%;
      margin: 50%;
  }
}