/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #78176d;
  --secondary-color: #f4c86d;
  --text-dark: #2d1b69;
  --text-light: #6b7280;
  --background-light: #faf9fc;
  --white: #ffffff;
  --shadow: rgba(120, 23, 109, 0.1);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and Navigation */
header {
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-brand h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Sidebar Navigation */
.sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 320px;
  height: 100vh;
  background: var(--white);
  box-shadow: -2px 0 15px var(--shadow);
  z-index: 1100;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  backdrop-filter: blur(10px);
}

.sidebar.open {
  right: 0;
}

.sidebar.open .sidebar-header {
  animation: slideInFromTop 0.6s ease 0.2s both;
}

.sidebar.open .sidebar-link {
  animation: slideInFromRight 0.5s ease both;
}

.sidebar.open .sidebar-link:nth-child(1) {
  animation-delay: 0.1s;
}
.sidebar.open .sidebar-link:nth-child(2) {
  animation-delay: 0.2s;
}
.sidebar.open .sidebar-link:nth-child(3) {
  animation-delay: 0.3s;
}
.sidebar.open .sidebar-link:nth-child(4) {
  animation-delay: 0.4s;
}
.sidebar.open .sidebar-link:nth-child(5) {
  animation-delay: 0.5s;
}

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

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.sidebar-header {
  padding: 2rem 1.5rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--primary-color);
  color: var(--white);
}

.sidebar-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.sidebar-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.sidebar-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-nav {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.sidebar-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(244, 200, 109, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.sidebar-link:hover::before {
  left: 100%;
}

.sidebar-link:hover {
  background: var(--background-light);
  border-left-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateX(8px);
  padding-left: 2rem;
}

.sidebar-link:hover .sidebar-icon {
  transform: scale(1.2) rotate(5deg);
}

.sidebar-link:hover .sidebar-text {
  font-weight: 600;
}

.sidebar-link.active {
  background: linear-gradient(
    135deg,
    var(--background-light),
    rgba(244, 200, 109, 0.05)
  );
  border-left-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  transform: translateX(4px);
  box-shadow: inset 0 0 20px rgba(120, 23, 109, 0.05);
}

.sidebar-link.active .sidebar-icon {
  transform: scale(1.1);
  color: var(--secondary-color);
}

.sidebar-icon {
  font-size: 1.3rem;
  min-width: 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-text {
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

/* Fixed Sidebar Toggle Button */
.sidebar-toggle-fixed {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: var(--primary-color);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-toggle-fixed:hover {
  background: #5d1157;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(120, 23, 109, 0.3);
}

.sidebar-toggle-fixed:active {
  transform: translateY(-50%) scale(0.95);
}

/* Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Main content */
main {
  margin-top: 80px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #5d1157 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(244, 200, 109, 0.15);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(244, 200, 109, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  color: var(--secondary-color);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.cta-button {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--shadow);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.bg-light {
  background-color: var(--background-light);
}

.section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--primary-color);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

/* Overview Section */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.overview-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.overview-card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.overview-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

/* Research Section */
.chart-gallery-responsive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
  align-items: start;
}

.chart-item {
  text-align: center;
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.chart-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.chart-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  background: #f8fafc;
  min-height: 200px;
}

.chart-image-gallery {
  max-width: 100%;
  max-height: 350px;
  width: auto;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.chart-image-gallery:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.chart-title {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1f2937;
  font-size: 1.1rem;
}

.chart-source {
  font-size: 0.85rem;
  color: #6b7280;
  font-style: italic;
  margin-top: 0.5rem;
}

.chart-source a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.chart-source a:hover {
  text-decoration: underline;
}

.chart-caption-gallery {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.chart-caption-gallery a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.chart-caption-gallery a:hover {
  text-decoration: underline;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.lightbox-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 1200px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--primary-color);
}

#lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 1.1rem;
  margin-top: 1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.research-insights-centered {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: left;
}

.research-insights-centered h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #1f2937;
  text-align: center;
}

.formal-list {
  list-style: disc;
  margin-left: 2rem;
  margin-bottom: 3rem;
}

.formal-list li {
  margin-bottom: 1.2rem;
  line-height: 1.7;
  color: #374151;
}

.formal-list li strong {
  color: #1f2937;
}

.trend-analysis {
  background: #f3f4f6;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  margin-top: 2rem;
}

.trend-analysis h4 {
  margin-bottom: 1rem;
  color: #1f2937;
  font-size: 1.2rem;
}

.trend-analysis p {
  line-height: 1.7;
  color: #374151;
}

/* Survey Section */
.survey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.survey-stat {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.survey-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.survey-stat h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.survey-stat p {
  line-height: 1.6;
  color: #374151;
}

.prevention-chart {
  margin: 3rem 0;
  text-align: center;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.prevention-chart h3 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: #1f2937;
}

.prevention-chart .chart-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  background: #f8fafc;
  min-height: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prevention-chart:hover .chart-image-container {
  transform: translateY(-2px);
}

.prevention-chart .chart-caption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.prevention-chart .chart-caption a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.prevention-chart .chart-caption a:hover {
  text-decoration: underline;
}

.survey-insights {
  margin-top: 3rem;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.insight-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.insight-card h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

/* Interview Section */
.interview-stories {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
}

.story-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.featured-story {
  border-left: 4px solid var(--primary-color);
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.story-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.story-content {
  margin-bottom: 1.5rem;
}

.story-content p {
  margin-bottom: 0.5rem;
}

.story-quote {
  background: #f3f4f6;
  padding: 1rem;
  border-radius: 8px;
  font-style: italic;
  border-left: 3px solid var(--primary-color);
  color: #374151;
}

.interview-insights {
  margin-top: 3rem;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.interview-insights h3 {
  margin-bottom: 1rem;
  color: #1f2937;
}

.interview-insights ul {
  list-style: none;
}

.interview-insights li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.interview-insights li::before {
  content: "💡";
  position: absolute;
  left: 0;
}

/* Prevention Section */
.prevention-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.prevention-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.prevention-card:hover {
  transform: translateY(-3px);
}

.prevention-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.prevention-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.warning-signs {
  background: #fef2f2;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #fecaca;
  margin: 3rem 0;
}

.warning-signs h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.warning-signs ul {
  list-style: none;
}

.warning-signs li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.warning-signs li::before {
  content: "⚠️";
  position: absolute;
  left: 0;
}

.resources {
  margin-top: 3rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.resource-card {
  background: rgba(244, 200, 109, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid rgba(244, 200, 109, 0.3);
}

.resource-card h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.resource-card p {
  color: var(--text-dark);
}

/* Video Section */
.video-placeholder {
  background: #f3f4f6;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  padding: 4rem 2rem;
  text-align: center;
  margin: 2rem 0;
}

.video-content .play-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.video-content p {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.video-description {
  color: #6b7280;
  font-size: 1rem !important;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 12px;
}

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

/* Footer */
footer {
  background: #1f2937;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #f9fafb;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #f9fafb;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .chart-gallery-responsive {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
  }

  .chart-item {
    padding: 1rem;
  }

  .chart-image-container {
    min-height: 150px;
  }

  .chart-image-gallery {
    max-height: 250px;
  }

  .lightbox-content {
    padding: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }

  #lightbox-image {
    max-height: 70vh;
  }

  .research-insights-centered {
    margin: 2rem auto 0;
    padding: 0 1rem;
  }

  .formal-list {
    margin-left: 1.5rem;
  }

  .section {
    padding: 2rem 0;
  }

  .container {
    padding: 0 15px;
  }

  .overview-grid,
  .prevention-grid,
  .survey-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section h2 {
    font-size: 2rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.overview-card,
.story-card,
.prevention-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Accessibility improvements */
.cta-button:focus,
.nav-links a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sidebar {
    width: 100%;
    right: -100%;
  }

  .sidebar-toggle-fixed {
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .section {
    padding: 2rem 0;
  }

  .section h2 {
    font-size: 2rem;
  }

  .overview-grid,
  .research-grid,
  .survey-grid,
  .prevention-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .chart-gallery {
    grid-template-columns: 1fr;
  }

  .insight-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .nav-brand h1 {
    font-size: 1.2rem;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }

  .stat {
    padding: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .sidebar-header {
    padding: 1.5rem 1rem 0.5rem;
  }

  .sidebar-link {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .sidebar-nav {
    padding: 1.5rem 0;
  }
}

/* Print styles */
@media print {
  header {
    position: static;
  }

  main {
    margin-top: 0;
  }

  .hero {
    background: var(--primary-color);
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .sidebar,
  .sidebar-toggle-fixed {
    display: none;
  }
}
