
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: white;
  box-sizing: border-box;
}


.project-detail-container {
  margin-top: 120px; 
}


.top-container.sticky + .project-detail-container {
  margin-top: 100px; 
}



.top-container.sticky {
  padding: 10px 30px;
  background-color: white;
}

.top-container.sticky .logo {
  height: 25px;
}

.top-container.sticky .navbar ul {
  gap: 20px; 
}

.top-container.sticky .navbar a {
  font-size: 14px;
}


.slideshow-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: calc(100% - 100px);
  max-width: 1200px;
  margin: 30px auto;
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: auto;
  max-height: 650px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}


.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 32px;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s ease, transform 0.3s ease;
}

#prev-btn {
  left: 0; 
}

#next-btn {
  right: 0; 
}

.slideshow-btn:hover {
  color: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.2);
}


.info-container {
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto;
  max-width: 1200px;
}

.details-section {
  flex: 1;
  padding: 10px;
  font-family: 'Maven Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  color: rgb(90, 93, 96);
  font-size: 14px;
  line-height: 25px;
  text-align: justify;
  text-transform: uppercase;
   word-wrap: break-word; 
  overflow-wrap: break-word;
}

.description-section {
  flex: 1;
  padding: 10px;
  font-family: 'Maven Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  color: rgb(90, 93, 96);
  font-size: 15px;
  line-height: 27px;
  text-align: justify;
  text-transform: lowercase;
}

.description-section p::first-letter {
  text-transform: uppercase; 
}


@media (max-width: 768px) {
  .slideshow-container {
    width: calc(100% - 60px);
  }

  .slideshow-btn {
    font-size: 28px;
  }

  #prev-btn {
    left: 0; 
  }

  #next-btn {
    right: 0; 
  }

  .info-container {
    padding: 0 30px; 
  }

  .details-section,
  .description-section {
    padding: 0; 
  }
}


@media (max-width: 480px) {
  .slideshow-container {
    width: calc(100% - 40px);
  }

  .slideshow-btn {
    font-size: 24px;
  }

  #prev-btn {
    left: 0; 
  }

  #next-btn {
    right: 0; 
  }

  .info-container {
    flex-direction: column;
  }

  .details-section {
    order: 1; 
    margin-top: 10px;
  }

  .description-section {
    order: 2; 
    margin-top: 20px; 
  }
}
