/*
Theme Name: Company Industrial Theme
Description: Modern industrial company website theme with TOPICS functionality
Version: 1.0
Author: Custom Development
*/

/* Custom styles for WordPress theme */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Sans", Meiryo, sans-serif;
}

/* Container layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Custom transition duration for smooth animations */
.duration-7000 {
  transition-duration: 7000ms;
}

/* Hero slider styles */
.hero-slide {
  transition: opacity 1000ms ease-in-out;
}

.hero-image {
  transition: transform 7000ms ease-out, filter 200ms ease-out;
}

/* Navigation styles */
.nav-link.active,
.mobile-nav-link.active {
  color: #ef4444;
  font-weight: 600;
}

/* Mobile menu */
#mobile-menu.show {
  display: block;
}

/* Custom WordPress content styles */
.prose {
  line-height: 1.7;
}

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.prose h1 { font-size: 2.25rem; }
.prose h2 { font-size: 1.875rem; }
.prose h3 { font-size: 1.5rem; }
.prose h4 { font-size: 1.25rem; }

.prose p {
  margin-bottom: 1.5rem;
}

.prose ul, .prose ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose img {
  margin: 2rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.prose blockquote {
  border-left: 4px solid #ef4444;
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
  color: #6b7280;
}

/* Custom logo styles */
.custom-logo {
  max-height: 50px;
  width: auto;
}

/* Admin bar adjustments */
body.admin-bar header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar header {
    top: 46px;
  }
}

/* WordPress Gutenberg editor compatibility */
.wp-block-image {
  text-align: center;
}

.wp-block-quote {
  border-left: 4px solid #ef4444;
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
  color: #6b7280;
}

/* TOPICS specific styles */
.topics-category-red { background-color: #dc2626; }
.topics-category-blue { background-color: #2563eb; }
.topics-category-green { background-color: #16a34a; }

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
  
  header, footer {
    display: none !important;
  }
  
  .page-section {
    display: block !important;
  }
}

/* Accessibility improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #ef4444;
  outline-offset: 2px;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100000;
}

.skip-link:focus {
  top: 6px;
}