/* Press-Kit / EPK page styles - Premium Design */

/* Import Engagement Funnel Components */
@import url('../components/engagement-funnel.css');

:root {
  --pk-bg: #0a0a0a;
  --pk-text: #e8e8e8;
  --pk-text-muted: rgba(255, 255, 255, 0.6);
  --pk-accent: #d4af37;
  --pk-accent-light: #f0d478;
  --pk-panel: rgba(255, 255, 255, 0.03);
  --pk-panel-hover: rgba(255, 255, 255, 0.06);
  --pk-border: rgba(255, 255, 255, 0.1);
  --pk-border-hover: rgba(212, 175, 55, 0.4);
  --pk-gradient: linear-gradient(135deg, #d4af37 0%, #f0d478 100%);
}

.press-kit {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
  color: var(--pk-text);
}

/* ===== HERO - Premium Style ===== */
.press-kit-hero {
  position: relative;
  text-align: center;
  padding: 4rem 2rem 5rem;
  margin-bottom: 4rem;
  background: linear-gradient(180deg,
    rgba(212, 175, 55, 0.08) 0%,
    rgba(212, 175, 55, 0.02) 50%,
    transparent 100%
  );
  border-bottom: 1px solid var(--pk-border);
}

.press-kit-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: var(--pk-gradient);
  border-radius: 0 0 2px 2px;
}

.press-kit-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pk-accent);
  margin-bottom: 1rem;
}

.press-kit-hero__label i {
  font-size: 1rem;
}

/* Titolo unificato - eredita da .page-title in base.css */
.press-kit-hero__title {
  margin: 0 0 1rem;
}

/* Sottotitolo unificato - eredita da .page-claim in base.css */
.press-kit-hero__subtitle {
  max-width: 600px;
}

/* ===== SECTION Common ===== */
.press-kit-section {
  margin-bottom: 5rem;
}

.press-kit-section__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.press-kit-section__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  color: var(--pk-accent);
  font-size: 1.25rem;
}

.press-kit-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  color: var(--pk-text);
}

.press-kit-section__desc {
  color: var(--pk-text-muted);
  margin: 0 0 2rem;
  font-size: 1.05rem;
  padding-left: 64px;
}

/* ===== BIOGRAPHY Section ===== */
.press-kit-bio {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.press-kit-bio__photo {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--pk-border);
  transition: all 0.3s ease;
}

.press-kit-bio__photo:hover {
  border-color: var(--pk-accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.15);
}

.press-kit-bio__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.press-kit-bio__text {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--pk-text);
}

.bio-short,
.bio-long {
  margin-bottom: 1.5rem;
}

.bio-long {
  padding-top: 1rem;
  border-top: 1px solid var(--pk-border);
}

.btn-text {
  background: none;
  border: none;
  color: var(--pk-accent);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  border-radius: 8px;
}

.btn-text:hover {
  background: rgba(212, 175, 55, 0.1);
}

@media (max-width: 768px) {
  .press-kit-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .press-kit-bio__photo {
    width: 180px;
    height: 180px;
  }

  .press-kit-section__desc {
    padding-left: 0;
  }
}

/* ===== DOCUMENTS Section ===== */
.press-kit-documents {
  display: grid;
  gap: 1.25rem;
}

.document-card {
  background: var(--pk-panel);
  border: 1px solid var(--pk-border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  transition: all 0.3s ease;
}

.document-card:hover {
  background: var(--pk-panel-hover);
  border-color: var(--pk-border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.08);
}

.document-card__preview {
  position: relative;
  width: 100px;
  height: 130px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  background: #111;
}

.document-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.document-card:hover .document-card__preview img {
  transform: scale(1.05);
}

.document-card__format-badge {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: var(--pk-accent);
  color: #0a0a0a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* PDF Fallback Icon */
.document-card__pdf-fallback {
  position: relative;
  width: 100px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.03) 100%);
  border: 1px solid var(--pk-border);
  border-radius: 8px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.document-card:hover .document-card__pdf-fallback {
  border-color: var(--pk-accent);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.document-card__pdf-fallback .pdf-icon {
  width: 60px;
  height: 75px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.document-card__icon {
  font-size: 3rem;
  flex-shrink: 0;
  width: 100px;
  text-align: center;
}

.document-card__info {
  flex: 1;
  min-width: 0;
}

.document-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--pk-text);
}

.document-card__desc {
  font-size: 0.95rem;
  color: var(--pk-text-muted);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.document-card__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--pk-text-muted);
}

.meta-item {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.document-card__action {
  flex-shrink: 0;
}

.document-card__action .btn {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .document-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .document-card__action {
    width: 100%;
  }

  .document-card__action .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== PHOTOS Gallery ===== */
.press-kit-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  background: var(--pk-panel);
  border: 1px solid var(--pk-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--pk-border-hover);
}

.gallery-item__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item__media img {
  transform: scale(1.05);
}

.gallery-item__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 10, 10, 0.85);
  color: var(--pk-accent);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__info {
  padding: 1.25rem;
}

.gallery-item__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--pk-text);
}

.gallery-item__meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--pk-text-muted);
  margin-bottom: 1rem;
}

.gallery-item__meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.gallery-item .btn-text {
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.gallery-item .btn-text i {
  transition: transform 0.2s ease;
}

.gallery-item .btn-text:hover i {
  transform: translateX(3px);
}

/* ===== VIDEOS Section ===== */
.press-kit-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.video-card {
  background: var(--pk-panel);
  border: 1px solid var(--pk-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-card:hover {
  border-color: var(--pk-border-hover);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.1);
}

.video-card__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-card__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card__info {
  padding: 1rem 1.25rem;
}

.video-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--pk-text);
  line-height: 1.3;
}

.video-card__desc {
  color: var(--pk-text-muted);
  margin: 0 0 0.75rem;
  line-height: 1.5;
  font-size: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-card .btn-text {
  font-size: 0.85rem;
  padding: 0.4rem 0;
}

@media (max-width: 768px) {
  .press-kit-videos {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ===== CONTACT Section ===== */
.press-kit-contact {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid var(--pk-border);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 0;
}

.press-kit-contact .press-kit-section__title {
  margin-bottom: 0.5rem;
}

.press-kit-contact .press-kit-section__desc {
  padding-left: 0;
  margin-bottom: 2rem;
}

.contact-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 3rem;
  background: var(--pk-panel);
  border: 1px solid var(--pk-border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--pk-border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.1);
}

.contact-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pk-gradient);
  border-radius: 50%;
  color: #0a0a0a;
  font-size: 1.5rem;
}

.contact-card__content {
  text-align: center;
}

.contact-card__label {
  font-size: 0.9rem;
  color: var(--pk-text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-card__email {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pk-accent);
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-card__email:hover {
  color: var(--pk-accent-light);
}

/* Legacy contact-info styles */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.contact-item__label {
  font-weight: 600;
  color: var(--pk-text-muted);
}

.contact-item__value {
  color: var(--pk-accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-item__value:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.btn--primary {
  background: var(--pk-gradient);
  color: #0a0a0a;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.btn--small {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.btn i {
  font-size: 0.9em;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .press-kit {
    padding: 0 1rem 2rem;
  }

  .press-kit-hero {
    padding: 3rem 1rem 4rem;
    margin-bottom: 3rem;
  }

  /* Titolo responsive gestito da .page-title in base.css */

  .press-kit-section {
    margin-bottom: 3.5rem;
  }

  .press-kit-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .press-kit-section__icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .press-kit-gallery {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .press-kit-contact {
    padding: 2rem 1rem;
  }

  .contact-card {
    padding: 1.5rem;
    width: 100%;
  }
}
