@charset "UTF-8";
/* SINGLE PROJECT
-------------------------------------------- */
.single-project {
  background-color: rgb(241, 241, 241);
  font-family: "Poppins", "Poppins", sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.single-project__hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0;
  will-change: transform;
}
@media (max-width: 768px) {
  .single-project__hero {
    height: 70vh;
    min-height: 500px;
  }
}

.single-project__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80vh;
  z-index: 1;
}
.single-project__hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.single-project__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.single-project__hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .single-project__hero-content {
    padding: 40px 32px;
  }
}

.single-project__hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
@media (max-width: 768px) {
  .single-project__hero-bottom {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

.single-project__hero-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  animation: fadeInUp 0.8s cubic-bezier(0.44, 0, 0.56, 1) 0.2s backwards;
}

.single-project__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.3s cubic-bezier(0.44, 0, 0.56, 1);
  animation: fadeInLeft 1s cubic-bezier(0.44, 0, 0.56, 1) 0.6s backwards;
}
.single-project__back svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s cubic-bezier(0.44, 0, 0.56, 1);
}
.single-project__back:hover {
  opacity: 0.8;
}
.single-project__back:hover svg {
  transform: translateX(-4px);
}

.single-project__title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 16px 0;
  color: #fff;
}

.single-project__location {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.single-project__date-badge {
  background: rgba(255, 255, 255, 0.23);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  animation: fadeInRight 1s cubic-bezier(0.44, 0, 0.56, 1) 0.8s backwards;
}

/* Container */
.single-project__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 42px 100px;
}
@media (max-width: 992px) {
  .single-project__container {
    padding: 60px 32px 80px;
  }
}
@media (max-width: 768px) {
  .single-project__container {
    padding: 40px 32px 60px;
  }
}

.single-project__layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
}
@media (max-width: 992px) {
  .single-project__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Sidebar */
@media (min-width: 993px) {
  .single-project__sidebar {
    position: sticky;
    top: 40px;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.single-project__info-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  animation: fadeInUp 0.8s cubic-bezier(0.44, 0, 0.56, 1) 0.6s backwards;
}
@media (max-width: 768px) {
  .single-project__info-card {
    padding: 24px;
  }
}

.single-project__info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.single-project__info-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.single-project__info-label {
  font-size: 13px;
  font-weight: 500;
  color: rgb(130, 132, 135);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.single-project__info-value {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  line-height: 1.5;
}

.single-project__designers {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.single-project__designer-name {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  line-height: 1.5;
}

/* Main Content */
.single-project__main {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 768px) {
  .single-project__main {
    gap: 60px;
  }
}

/* Introduction */
.single-project__intro {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.single-project__intro-text p,
.single-project__overview-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin: 0 0 24px 0;
  font-weight: 400;
}
.single-project__intro-text p:last-child,
.single-project__overview-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .single-project__intro-text p,
  .single-project__overview-text p {
    font-size: 16px;
    line-height: 1.7;
  }
}

.single-project__quote {
  position: relative;
  font-size: clamp(24px, 3.5vw, 42px);
  line-height: 1.5;
  font-weight: 500;
  font-style: italic;
  color: #000;
  margin: 0;
  padding: 60px 0 0 100px;
  background: transparent;
  border: none;
  text-align: left;
  letter-spacing: -0.01em;
  font-family: "Poppins", sans-serif;
  max-width: 100%;
  /* Large decorative opening curly quote */
}
.single-project__quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 240px;
  line-height: 0.85;
  color: rgba(197, 164, 126, 0.15);
  font-family: "Georgia", serif;
  font-weight: 700;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 992px) {
  .single-project__quote {
    padding: 50px 0 0 80px;
  }
  .single-project__quote::before {
    font-size: 200px;
  }
}
@media (max-width: 768px) {
  .single-project__quote {
    padding: 40px 0 0 50px;
    font-size: clamp(20px, 5vw, 28px);
  }
  .single-project__quote::before {
    font-size: 140px;
    line-height: 0.9;
  }
}
@media (max-width: 480px) {
  .single-project__quote {
    padding: 30px 0 0 40px;
  }
  .single-project__quote::before {
    font-size: 100px;
  }
}

/* Section Titles */
.single-project__section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
  margin: 0 0 32px 0;
}
@media (max-width: 768px) {
  .single-project__section-title {
    margin-bottom: 24px;
  }
}

/* Gallery */
.single-project__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .single-project__gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.single-project__gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #fff;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.44, 0, 0.56, 1);
}
.single-project__gallery-item:hover {
  transform: scale(1.02);
}
.single-project__gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.44, 0, 0.56, 1);
}
.single-project__gallery-item:hover img {
  transform: scale(1.05);
}

/* Key Spaces */
.single-project__key-spaces {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 768px) {
  .single-project__key-spaces {
    gap: 36px;
  }
}

.single-project__space {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.single-project__space-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
  margin: 0;
}
@media (max-width: 768px) {
  .single-project__space-title {
    font-size: 20px;
  }
}

.single-project__space-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgb(40, 40, 40);
  margin: 0;
}

/* Details */
.single-project__details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .single-project__details {
    gap: 32px;
  }
}

.single-project__detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.single-project__detail-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
  margin: 0;
}
@media (max-width: 768px) {
  .single-project__detail-title {
    font-size: 18px;
  }
}

.single-project__detail-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgb(40, 40, 40);
  margin: 0;
}

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