/* ========================================
   Portfolio Page Styles
   ======================================== */

/* Nav active state */
.nav-active {
  color: var(--accent) !important;
}

/* Portfolio Hero */
.portfolio-hero {
  padding: 180px 0 80px;
  text-align: center;
}

.portfolio-hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.portfolio-hero h1 {
  font-family: var(--font);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  margin-top: 8px;
}

.portfolio-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Portfolio Grid */
.portfolio-grid-section {
  padding-top: 40px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Portfolio Card */
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 14px 40px rgba(18, 35, 68, 0.07);
}

.portfolio-card:hover {
  border-color: var(--border-light);
  box-shadow: 0 22px 58px rgba(23, 45, 89, 0.12);
  transform: translateY(-4px);
}

/* Card Visual / Preview */
.portfolio-card-visual {
  position: relative;
  padding: 60px 40px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.wedding-visual {
  background: linear-gradient(135deg, rgba(176, 137, 104, 0.08), rgba(62, 47, 47, 0.06));
}

.birthday-visual {
  background: linear-gradient(135deg, rgba(255, 154, 86, 0.1), rgba(255, 107, 107, 0.08));
}

.corporate-visual {
  background: linear-gradient(135deg, rgba(51, 105, 240, 0.08), rgba(30, 60, 114, 0.06));
}

.engagement-visual {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(244, 114, 182, 0.06));
}

.babyshower-visual {
  background: linear-gradient(135deg, rgba(124, 216, 205, 0.1), rgba(167, 243, 208, 0.08));
}

.anniversary-visual {
  background: linear-gradient(135deg, rgba(217, 175, 97, 0.1), rgba(176, 137, 104, 0.08));
}

.card-inner-text {
  position: relative;
  z-index: 1;
}

.card-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.card-inner-text h3 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 2.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin-bottom: 12px;
}

.card-divider {
  width: 50px;
  height: 1px;
  background: var(--border-light);
  margin: 0 auto 12px;
}

.card-sub {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Card ornaments (wedding card) */
.card-ornament {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--border-light);
  opacity: 0.5;
}

.card-ornament.top-left {
  top: 20px;
  left: 20px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.card-ornament.top-right {
  top: 20px;
  right: 20px;
  border-top: 1px solid;
  border-right: 1px solid;
}

.card-ornament.bottom-left {
  bottom: 20px;
  left: 20px;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.card-ornament.bottom-right {
  bottom: 20px;
  right: 20px;
  border-bottom: 1px solid;
  border-right: 1px solid;
}

/* Birthday dots */
.card-dots-deco {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 6px;
}

.card-dots-deco span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 154, 86, 0.3);
}

/* Card Info */
.portfolio-card-info {
  padding: 32px;
}

.portfolio-type {
  font-size: 0.75rem;
  color: var(--accent-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 8px;
}

.portfolio-card-info h3 {
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.portfolio-card-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.portfolio-tags span {
  padding: 3px 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Coming Soon Badge */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px dashed var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.coming-soon-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

@media (max-width: 768px) {
  .portfolio-hero {
    padding: 140px 0 60px;
  }

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

  .portfolio-card-visual {
    padding: 48px 24px;
    min-height: 220px;
  }

  .card-inner-text h3 {
    font-size: 1.8rem;
  }

  .portfolio-card-info {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .portfolio-hero {
    padding: 120px 0 40px;
  }

  .portfolio-hero h1 {
    font-size: 2rem;
  }
}
