/* Project Page Styles */
.project-main {
  padding: 20px 0 80px;
  min-height: calc(100vh - 200px);
}

.container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Breadcrumb */
.breadcrumb {
  line-height: 17px;
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 13px;
  font-weight: 500;
  color: rgba(96, 96, 96, 1);
}

.breadcrumb__link {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
  text-transform: uppercase;
}

.breadcrumb__link:hover {
  color: rgba(149, 129, 237, 1);
}

.breadcrumb__sep {
  margin: 0 8px;
  color: rgba(0, 0, 0, 1);
}

.breadcrumb__link--current {
  color: rgba(149, 129, 237, 1);
}

/* Project Header */
.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.project-title {
  line-height: 1;
  font-size: 52px;
  font-weight: 600;
  color: #323232;
  margin-top: 43px;
  margin-bottom: 56px;
}

/* Project Slider Section */
.project-slider-arrows {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}
.project-slider-prev, .project-slider-next {
  background: none;
  border: none;
  cursor: pointer;
}
.project-slider-prev:hover path,
.project-slider-next:hover path {
  stroke: #B4A3FF;
}
.project-slider-section {
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.project-slider-wrapper {
  position: relative;
}

/* Project Swiper */
.project-swiper .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
}

.project-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-bottom: 20px;
}

.project-swiper .swiper-scrollbar {
  height: 6px !important;
}

.project-swiper .swiper-scrollbar-drag {
  background: #9581ed;
  border-radius: 3px;
}

/* Project Description */
.project-description {
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.project-description p {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Project Actions */
.project-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.project-btn {
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  min-width: 200px;
}

.project-btn--primary {
  background: #2c2c2c;
  color: white;
  border-color: #2c2c2c;
}

.project-btn--primary:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  transform: translateY(-2px);
}

.project-btn--secondary {
  background: white;
  color: #2c2c2c;
  border-color: #2c2c2c;
}

.project-btn--secondary:hover {
  background: #f8f8f8;
  border-color: #1a1a1a;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .project-title {
    font-size: 36px;
    font-size: 30px;
    line-height: 29px;
    margin-bottom: 40px;
  }

  .project-slider-arrows {
    display: none;
  }
  .project-actions {
    flex-direction: column;
  }

  .project-btn {
    min-width: unset;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 15px;
  }

  .project-main {
    padding: 15px 0 60px;
  }

  .project-title {
    font-size: 28px;
  }

  .project-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .project-title {
    font-size: 24px;
  }

  .project-main > .container {
    padding: 0 0 0 15px;
  }
  .project-main .breadcrumb,
  .project-main .project-header,
  .project-main .project-description,
  .project-main .project-actions {
    padding-right: 15px;
  }
  .project-title {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .project-main {
    padding: 0 0 60px 0;
    margin-top: -10px;
    margin-bottom: -10px;
  }
  .project-slider-section {
    margin-bottom: 20px;
  }
}



/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth scrollbar */
.project-swiper .swiper-scrollbar {
  background: rgba(224, 224, 224, 0.3);
  border-radius: 3px;
  transition: background 0.3s ease;
}

.project-swiper .swiper-scrollbar:hover {
  background: rgba(224, 224, 224, 0.6);
}
