/* Orangy and the Paught Spins - Modern Stylesheet */
/* ============================================= */

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #000000;
  color: #ffffff;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  padding: 2px;
}

/* Main Layout Grid */
.layout {
  display: grid;
  grid-template-columns: 20% 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
}

/* Header Section */
.header {
  grid-column: 1 / -1;
  background-color: #000000;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333333;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.header-image {
  flex: 1;
  padding-left: 65px;
  padding-right: 15px;
}

.header-image img {
  display: block;
  height: auto;
  max-height: 80px;
  width: auto;
  max-width: 100%;
}

/* Navigation Sidebar */
.sidebar {
  background-color: #0a0a0a;
  padding: 15px 0;
  border-right: 1px solid #333333;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 10px;
}

.nav-link {
  display: block;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
}

.nav-link img {
  vertical-align: middle;
  max-height: 60px;
  width: auto;
  display: inline-block;
}

.nav-link:hover,
.nav-link:focus,
.nav-link:active {
  background-color: #1a1a1a;
  transform: translateX(3px);
}

.nav-link:focus-visible {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
}

/* Footer */
.footer {
  grid-column: 1 / -1;
  text-align: center;
  padding: 20px;
  background-color: #0a0a0a;
  border-top: 1px solid #333333;
}

.footer a {
  color: #cccccc;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Content Area */
.content {
  padding: 20px;
  overflow-y: auto;
  min-height: 60vh;
}

.news-header {
  text-align: center;
  padding: 15px 0;
  border-bottom: 1px solid #333333;
  margin-bottom: 20px;
}

.news-header h1 {
  margin: 0;
  font-size: 2rem;
  color: #ffffff;
}

.news-header .date {
  font-size: 0.9rem;
  color: #cccccc;
  margin-top: 5px;
}

.news-image {
  text-align: center;
  margin: 20px 0;
}

.news-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.audio-player {
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  background-color: #1a1a1a;
  border-radius: 8px;
}

.audio-player audio {
  max-width: 100%;
  height: auto;
}

/* Mobile Responsive Styles */
@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-right: none;
    border-bottom: 1px solid #333333;
    padding: 15px;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-link img {
    max-height: 40px;
  }

  .content {
    padding: 15px;
  }

  .news-header h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .header-container {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-link img {
    max-height: 35px;
  }

  .news-header h1 {
    font-size: 1.25rem;
  }

  .audio-player {
    padding: 10px;
    margin-top: 10px;
  }
}

/* Accessibility - Focus Styles */
*:focus-visible {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 8px;
  background: #00d4ff;
  color: #000000;
  font-weight: bold;
}

.skip-link:focus {
  left: 0;
}

/* Page-specific content containers */
.page-content {
  max-width: 100%;
  margin: 0 auto;
}

/* Song list styling */
.song-list {
  list-style: none;
  padding: 20px;
}

.song-list li {
  padding: 8px 0;
  border-bottom: 1px solid #222;
}

.song-list a {
  color: #cccccc;
  text-decoration: none;
}

.song-list a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Contact info styling */
.contact-info {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-info p {
  margin: 10px 0;
}

/* Date list styling */
.date-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.date-list li {
  padding: 10px 0;
  border-bottom: 1px solid #222;
}

.date-list a {
  color: #cccccc;
  text-decoration: none;
}

.date-list a:hover {
  color: #ffffff;
}

/* Originals gallery */
.originals-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.original-item {
  background-color: #1a1a1a;
  padding: 10px;
  border-radius: 4px;
  text-align: center;
}

.original-item img {
  max-width: 100%;
  height: auto;
  border-radius: 2px;
}

/* External links */
.external-links a {
  display: inline-block;
  padding: 8px 15px;
  background-color: #1a1a1a;
  color: #cccccc;
  text-decoration: none;
  border-radius: 4px;
  margin: 5px;
  transition: all 0.3s ease;
}

.external-links a:hover {
  background-color: #2a2a2a;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Contact page sections */
.contact-section {
  margin-top: 20px;
}

.contact-section h3 {
  margin-bottom: 5px;
}

.contact-section p {
  margin: 5px 0;
}

.contact-highlighted {
  padding: 15px;
  background-color: #1a1a1a;
  border-radius: 8px;
}
