/* Presskit Page Styles */

.presskit-nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(188, 108, 49, 0.2);
  padding: 15px 20px;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.presskit-nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.presskit-main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.presskit-nav-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-navy);
  text-decoration: none;
  transition: color 0.2s;
}

.presskit-nav-link:hover,
.presskit-nav-link.active {
  color: #bc6c31;
  text-decoration: underline;
}

.presskit-hero {
  position: relative;
  min-height: 250px;
  background: url('../about/assets/background-sub.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.presskit-header {
  text-align: center;
  width: 100%;
  max-width: 1200px;
}

.presskit-logo {
  width: 400px;
  height: auto;
  max-width: 90vw;
  opacity: 0;
  animation: fadeIn 0.5s ease-in forwards;
}

.presskit-section {
  position: relative;
  padding: 60px 10% 20px 10%;
  background: rgba(255, 255, 255, 0.95);
  min-height: 100vh;
}

.presskit-content {
  max-width: 1200px;
  margin: 0 auto;
}

.presskit-internal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(188, 108, 49, 0.2);
}

.presskit-internal-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-navy);
  text-decoration: none;
  transition: color 0.2s;
}

.presskit-internal-link:hover {
  color: #bc6c31;
  text-decoration: underline;
}

.presskit-subsection {
  margin-bottom: 80px;
  scroll-margin-top: 150px;
}

.presskit-subsection#factsheet {
  margin-bottom: 50px;
  scroll-margin-top: 200px;
}

.presskit-subsection#credits {
  margin-bottom: 0;
}

.presskit-subtitle {
  font-family: 'Recoleta', serif;
  font-size: 42px;
  color: #bc6c31;
  margin-bottom: 15px;
  font-weight: 400;
}

.presskit-subtitle-small {
  font-family: 'Recoleta', serif;
  font-size: 28px;
  color: #bc6c31;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 400;
}

.presskit-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--color-navy);
  line-height: 1.8;
  margin-bottom: 20px;
}

.presskit-text-small {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--color-navy);
  margin-top: 20px;
}

.presskit-factsheet {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-bottom: 10px;
}

.presskit-fact-item {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--color-navy);
  line-height: 1.2;
}

.presskit-fact-item strong {
  font-weight: 600;
  color: #bc6c31;
  display: block;
  margin-bottom: 0;
  line-height: 1.2;
}

.presskit-fact-item span {
  display: block;
  margin-top: 0;
  line-height: 1.2;
}

.presskit-fact-item a {
  color: #bc6c31;
  text-decoration: none;
  transition: color 0.2s;
}

.presskit-fact-item a:hover {
  color: #8a4f23;
  text-decoration: underline;
}

.presskit-list {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--color-navy);
  margin-left: 20px;
  margin-bottom: 20px;
}

.presskit-videos {
  margin-top: 20px;
}

.presskit-video-container {
  max-width: 800px;
  margin: 0 auto;
}

.presskit-video-title {
  font-family: 'Recoleta', serif;
  font-size: 24px;
  color: #bc6c31;
  margin-bottom: 15px;
  font-weight: 400;
}

.presskit-video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.presskit-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.presskit-image-item {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
}

.presskit-image-item a {
  display: block;
  cursor: pointer;
}

.presskit-image-item img {
  width: 100%;
  height: auto;
  display: block;
}

.presskit-image-placeholder {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.presskit-image-placeholder.placeholder-hidden {
  display: none;
}

.presskit-text-small a {
  color: #bc6c31;
  text-decoration: none;
  transition: color 0.2s;
}

.presskit-text-small a:hover {
  color: #8a4f23;
  text-decoration: underline;
}

.presskit-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 20px;
}

.presskit-logo-item {
  text-align: center;
}

.presskit-logo-item a {
  display: block;
  cursor: pointer;
}

.presskit-logo-preview {
  max-width: 100%;
  max-height: 300px;
  height: auto;
  width: auto;
  margin-bottom: 15px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.presskit-credits-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 20px;
}

.presskit-credits-column,
.presskit-contact-column {
  display: flex;
  flex-direction: column;
}

.presskit-contact-column {
  scroll-margin-top: 150px;
}

.presskit-credits-column .presskit-subtitle,
.presskit-contact-column .presskit-subtitle {
  margin-bottom: 20px;
}

.presskit-credits,
.presskit-contact {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.presskit-credits .presskit-fact-item,
.presskit-contact .presskit-fact-item {
  margin-bottom: 15px;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .presskit-nav {
    padding: 12px 15px;
  }

  .presskit-nav-content {
    gap: 10px;
  }

  .presskit-main-nav {
    gap: 20px;
    flex-wrap: wrap;
  }

  .presskit-nav-link {
    font-size: 14px;
  }

  .presskit-hero {
    min-height: 200px;
    padding: 40px 20px;
  }

  .presskit-logo {
    width: 250px;
  }

  .presskit-section {
    padding: 40px 5%;
  }

  .presskit-internal-nav {
    gap: 12px;
    margin-bottom: 40px;
  }

  .presskit-internal-link {
    font-size: 14px;
  }

  .presskit-subsection {
    margin-bottom: 50px;
    scroll-margin-top: 80px;
  }

  .presskit-subtitle {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .presskit-subtitle-small {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .presskit-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .presskit-text-small {
    font-size: 14px;
  }

  .presskit-factsheet {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .presskit-fact-item {
    font-size: 14px;
  }

  .presskit-list {
    font-size: 16px;
    line-height: 1.8;
    margin-left: 15px;
  }

  .presskit-images-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .presskit-logos-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .presskit-video-container {
    max-width: 100%;
  }

  .presskit-credits-contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .presskit-video-title {
    font-size: 20px;
  }

  .social-section {
    padding: 2rem 1rem;
  }
}

/* Additional fixes for very small screens */
@media screen and (max-width: 480px) {
  .presskit-nav-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .presskit-logo {
    width: 200px;
  }

  .presskit-subtitle {
    font-size: 24px;
  }

  .presskit-subtitle-small {
    font-size: 20px;
  }

  .presskit-text {
    font-size: 15px;
  }

  .presskit-fact-item {
    font-size: 13px;
  }

  .presskit-list {
    font-size: 15px;
  }

  .social-section {
    background: none;
    aspect-ratio: auto;
    min-height: auto;
    margin-top: 20px;
    padding: 20px 10%;
  }
}
