/* SECTION */
.project-detail {
  padding: 85px 20px;
}

.project-container {
  max-width: 1400px;
  margin: auto;
}

/* LOCATION */
.project-location {
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
}

/* TITLE */
.project-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* META */
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 24px 0;
  margin-bottom: 40px;
}

.meta-box {
  flex: 1 1 160px;
}

.meta-box span {
  font-size: 12px;
  color: #888;
  display: block;
}

.meta-box strong {
  font-size: 14px;
  font-weight: 600;
}

/* IMAGE */
.project-image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 60px;
}

.project-image img {
  width: 100%;
  display: block;
  transition: transform 1.2s ease;
}

.project-image:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.project-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
}

/* DESCRIPTION */
.project-description h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.project-description p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 14px;
}

/* DETAILS */
.project-details h3 {
  font-size: 18px;
  margin-bottom: 18px;
}

.project-details ul {
  list-style: none;
}

.project-details li {
  font-size: 14px;
  margin-bottom: 12px;
  color: #555;
}

.project-details span {
  font-weight: 600;
  color: #111;
}
.amenities-section {
  padding: 10px 20px;
  background: #fff;
}

.amenities-container {
  max-width: 1400px;
  margin: auto;
  border-top: 1px solid #eee;
  padding: 40px;
}

.amenities-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 60px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.amenity-card {
  background: linear-gradient(180deg, #fdfbf6, #ffffff);
  border-radius: 22px;
  padding: 60px 28px 36px;
  text-align: center;
  position: relative;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.amenity-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
}

.amenity-card h4 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}

.amenity-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-top: 10px;
}
.media-section {
  padding: 80px 0;
  background: #fff;
}

.media-header {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 40px;
}

.media-header h2 {
  font-size: 44px;
  font-weight: 700;
}

.media-tabs {
  display: flex;
  gap: 12px;
  background: #f4f4f4;
  padding: 6px;
  border-radius: 999px;
}

.media-tab {
  border: none;
  background: transparent;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
  color: #333;
  transition: all 0.3s ease;
}

.media-tab.active {
  background: var(--gold);
  color: #000;
  font-weight: 600;
}

.media-content {
  width: 100%;
}

.media-panel {
  display: none;
}

.media-panel.active {
  display: block;
  animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* GRID */
/* SLIDER */
.slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.slider-track {
  display: flex;
  gap: 30px;
}

.slider img {
  width: 80vw;
  max-width: 900px;
  height: 450px;
  object-fit: cover;
  border-radius: 24px;
  scroll-snap-align: center;
}

/* VIDEO */
.media-video iframe {
  width: 100%;
  height: 600px;
  border-radius: 24px;
  padding: 0 20px;
}

/* MAP */
.media-map {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 24px;
  padding: 0 20px;
}
.project-nav {
  padding: 80px 20px;
  border-top: 1px solid #eee;
}

.project-nav-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Common */
.nav-item a {
  display: block;
  text-decoration: none;
  padding: 28px 36px;
  border-radius: 20px;
  background: var(--accent-bg);
  transition: all 0.35s ease;
  min-width: 280px;
}

/* Labels */
.nav-label {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}

/* Titles */
.nav-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

/* Alignment */
.nav-prev {
  text-align: left;
}

.nav-next {
  text-align: right;
}

/* Hover effect */
.nav-item a:hover {
  background: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Arrow hint using pseudo */
.nav-prev a::before {
  content: "←";
  font-size: 18px;
  margin-right: 10px;
}

.nav-next a::after {
  content: "→";
  font-size: 18px;
  margin-left: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .project-nav-inner {
    flex-direction: column;
  }

  .nav-item {
    width: 100%;
  }

  .nav-next {
    text-align: left;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .media-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .media-tabs {
    overflow-x: auto;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-grid img,
  .media-video iframe,
  .media-map {
    height: 320px;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .project-title {
    font-size: 36px;
  }

  .project-content {
    grid-template-columns: 1fr;
  }
}

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

  .project-meta {
    gap: 16px;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .amenities-title {
    font-size: 32px;
  }
}
