/* Portfolio Pro - Vogue Editorial Style */

/* ============================================
   Base & Layout - Editorial Aesthetic
   ============================================ */

.portfolio-pro-body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #faf9f7;
  color: #0f172a;
  font-family: 'Noto Serif Display', 'Playfair Display', 'Georgia', serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Subtle Background Texture - Editorial Style */
.portfolio-pro-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

.portfolio-pro-bg__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 0%, rgba(201, 165, 90, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 0% 50%, rgba(201, 165, 90, 0.02) 0%, transparent 50%);
}

.portfolio-pro-bg__grid,
.portfolio-pro-bg__particles {
  display: none; /* Remove techy grid and particles */
}

.portfolio-pro-main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  background: #faf9f7;
}

.portfolio-pro-wrapper {
  width: 100%;
}

.portfolio-pro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(2rem, 5vw, 4rem);
}

/* ============================================
   Hero Section - Editorial Style
   ============================================ */

.portfolio-pro-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  overflow: hidden;
  background: #faf9f7;
}

.portfolio-pro-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.portfolio-pro-hero__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.portfolio-pro-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: grayscale(100%) brightness(1.2);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.portfolio-pro-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(250, 249, 247, 0.95) 0%,
    rgba(250, 249, 247, 0.9) 30%,
    rgba(250, 249, 247, 0.85) 100%
  );
  z-index: 1;
}

.portfolio-pro-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-pro-hero__card {
  background: #ffffff;
  border-radius: 0;
  padding: 0;
  box-shadow: 
    0 20px 60px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(201, 165, 90, 0.08);
  transition: all 0.4s ease;
  border-top: 3px solid rgba(201, 165, 90, 0.3);
}

.portfolio-pro-hero__header {
  padding: 3rem 3rem 2rem;
  border-bottom: 1px solid rgba(201, 165, 90, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.portfolio-pro-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: rgba(201, 165, 90, 0.08);
  border: 1px solid rgba(201, 165, 90, 0.25);
  border-radius: 0;
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 1);
  text-align: center;
}

.portfolio-pro-eyebrow {
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.5);
  font-weight: 500;
}

/* Editorial Name Typography - Vogue Style */
.portfolio-pro-name {
  margin: 2rem 0 1rem;
  font-family: 'Playfair Display', 'Noto Serif Display', 'Georgia', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 3rem;
}

.portfolio-pro-name__first {
  display: block;
  font-weight: 200;
  letter-spacing: 0.12em;
  color: #0f172a;
}

.portfolio-pro-name__last {
  display: block;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #0f172a;
}

.portfolio-pro-location {
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 1);
  font-weight: 500;
  margin: 0 0 2.5rem 0;
  padding: 0 3rem;
}

/* Stats - Editorial Grid */
.portfolio-pro-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  padding: 0;
  border-top: 1px solid rgba(201, 165, 90, 0.15);
  border-bottom: 1px solid rgba(201, 165, 90, 0.15);
}

.portfolio-pro-stat {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(201, 165, 90, 0.1);
  transition: background 0.3s ease;
}

.portfolio-pro-stat:last-child {
  border-right: none;
}

.portfolio-pro-stat:hover {
  background: rgba(201, 165, 90, 0.03);
}

.portfolio-pro-stat__label {
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.5);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.portfolio-pro-stat__value {
  font-family: 'Playfair Display', 'Noto Serif Display', 'Georgia', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #0f172a;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

/* ============================================
   Bio Section - Editorial Layout
   ============================================ */

.portfolio-pro-bio {
  padding: 6rem 0;
  position: relative;
  background: #ffffff;
}

.portfolio-pro-bio__card {
  background: #ffffff;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  max-width: 800px;
  margin: 0 auto;
}

.portfolio-pro-section-title {
  font-family: 'Playfair Display', 'Noto Serif Display', 'Georgia', serif;
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 300;
  margin: 0 0 2.5rem 0;
  color: #0f172a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(201, 165, 90, 0.3);
  padding-bottom: 1rem;
}

.portfolio-pro-bio__content {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.125rem;
  line-height: 1.9;
  color: rgba(15, 23, 42, 0.85);
}

.portfolio-pro-bio__content p {
  margin: 0 0 1.5rem 0;
}

.portfolio-pro-bio__subsection {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 165, 90, 0.15);
}

.portfolio-pro-bio__subsection h3 {
  font-family: 'Playfair Display', 'Noto Serif Display', 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 1rem 0;
  color: #0f172a;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.portfolio-pro-social,
.portfolio-pro-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.portfolio-pro-social li,
.portfolio-pro-info li {
  color: rgba(15, 23, 42, 0.75);
  font-size: 1rem;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.portfolio-pro-link {
  color: rgba(201, 165, 90, 1);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.portfolio-pro-link:hover {
  color: #0f172a;
  border-bottom-color: rgba(201, 165, 90, 0.5);
}

.portfolio-pro-info li span {
  color: rgba(15, 23, 42, 0.5);
  margin-right: 0.75rem;
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================
   Gallery Section - Editorial Grid
   ============================================ */

.portfolio-pro-gallery {
  padding: 6rem 0;
  position: relative;
  background: #faf9f7;
}

.portfolio-pro-gallery .portfolio-pro-section-title {
  text-align: center;
  margin-bottom: 4rem;
  border-bottom: 2px solid rgba(201, 165, 90, 0.3);
}

.portfolio-pro-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.portfolio-pro-gallery__item {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(201, 165, 90, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.portfolio-pro-gallery__item:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 165, 90, 0.3);
  box-shadow: 
    0 20px 60px rgba(15, 23, 42, 0.15),
    0 0 0 1px rgba(201, 165, 90, 0.2);
}

.portfolio-pro-gallery__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.portfolio-pro-gallery__item:hover .portfolio-pro-gallery__image {
  transform: scale(1.05);
}

.portfolio-pro-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #ffffff;
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  font-weight: 500;
}

.portfolio-pro-gallery__item:hover .portfolio-pro-gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
  .portfolio-pro-container {
    padding: 0 1.5rem;
  }

  .portfolio-pro-hero {
    padding: 2rem 1rem;
    min-height: auto;
  }

  .portfolio-pro-hero__header {
    padding: 2rem 1.5rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }

  .portfolio-pro-name {
    padding: 0 1.5rem;
  }

  .portfolio-pro-location {
    padding: 0 1.5rem;
  }

  .portfolio-pro-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-pro-stat {
    padding: 1.5rem 1rem;
    border-right: 1px solid rgba(201, 165, 90, 0.1);
  }

  .portfolio-pro-stat:nth-child(2n) {
    border-right: none;
  }

  .portfolio-pro-bio,
  .portfolio-pro-gallery {
    padding: 4rem 0;
  }

  .portfolio-pro-bio__card {
    padding: 0 1.5rem;
  }

  .portfolio-pro-gallery__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .portfolio-pro-stats {
    grid-template-columns: 1fr;
  }

  .portfolio-pro-stat {
    border-right: none;
    border-bottom: 1px solid rgba(201, 165, 90, 0.1);
  }

  .portfolio-pro-stat:last-child {
    border-bottom: none;
  }
}

/* ============================================
   Performance Optimizations
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .portfolio-pro-hero__image,
  .portfolio-pro-gallery__image,
  .portfolio-pro-gallery__item {
    transition: none;
    animation: none;
  }

  .portfolio-pro-hero__card,
  .portfolio-pro-gallery__item {
    transition: none;
  }
}
