/* Portfolio Pages Styling */

/* General Portfolio Layout */
.portfolio-container {
  max-width: 2400px;
  margin: 0 auto;
  padding: 20px;
}

.category-section {
  margin-bottom: 50px;
}

.category-section h2 {
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #007bff;
}

/* Spotify Integration Styles */
.spotify-container {
  margin: 30px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.playlist-info {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #1DB954; /* Spotify green */
}

.playlist-info p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.track-roles-section {
  margin-top: 40px;
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.track-roles-section h3 {
  color: #333;
  margin-top: 0;
  margin-bottom: 15px;
}

.roles-info {
  margin-top: 20px;
}

.roles-info ul {
  list-style: none;
  padding: 0;
}

.roles-info li {
  margin-bottom: 12px;
  padding-left: 10px;
}


/* Horizontal Scrolling Album Gallery */
.album-scroll-container {
  position: relative;
  margin-top: 20px;
}

.album-gallery {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 20px;
  padding: 20px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.album-gallery::-webkit-scrollbar {
  height: 10px;
}

.album-gallery::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

.album-gallery::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

.album-gallery::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.album-card {
  flex: 0 0 auto;
  width: 250px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.album-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.album-cover {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-info {
  padding: 15px;
}

.work-type {
  display: inline-block;
  padding: 4px 8px;
  background: #007bff;
  color: white;
  border-radius: 4px;
  font-size: 12px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.work-type.mix {
  background: #28a745;
}

.work-type.mastering {
  background: #ffc107;
  color: #333;
}

.work-type.spatial {
  background: #17a2b8;
}

.work-type.production {
  background: #6f42c1;
}

.album-title {
  font-weight: bold;
  color: #333;
  margin: 8px 0 4px 0;
  font-size: 16px;
}

.album-artist {
  color: #666;
  font-size: 14px;
  margin-bottom: 4px;
}

.album-year {
  color: #999;
  font-size: 12px;
}

/* Software Portfolio Styling */
.project-list {
  list-style: none;
  padding: 0;
}

.project-item {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.project-item h3 {
  margin-top: 0;
  color: #007bff;
}

.project-item a {
  color: #007bff;
  text-decoration: none;
  overflow-wrap: break-word;
}

.project-item a:hover {
  text-decoration: underline;
}

.project-description {
  margin-top: 10px;
  color: #666;
  line-height: 1.6;
}

.placeholder-note {
  background: #f8f9fa;
  border-left: 4px solid #007bff;
  padding: 15px;
  margin: 20px 0;
  color: #666;
  font-style: italic;
}

/* Navigation */
.back-link {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.back-link:hover {
  background: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .album-card {
    width: 200px;
  }
  
  .album-cover {
    height: 200px;
  }
  
  .portfolio-container {
    padding: 10px;
  }
}
