/* Projekte Page Specific CSS */
    .season-archive {
      padding: 40px 0;
    }
  
    .season-timeline {
      position: relative;
      margin: 40px 0;
    }
    
    .timeline-line {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 6px;
      background-color: var(--primary);
      transform: translateX(-50%);
    }
    
    .season-card {
      position: relative;
      width: 100%;
      margin-bottom: 60px;
      background-color: var(--surface);
      border-radius: var(--border-radius);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: var(--transition);
    }
    
    .season-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
    
    .season-header {
      display: flex;
      align-items: center;
      padding: 20px;
      background: linear-gradient(90deg, var(--primary), var(--primary-hover));
    }
    
    .season-logo {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-right: 20px;
      background-color: white;
      border-radius: 50%;
      padding: 10px;
    }
    
    .season-title {
      flex: 1;
    }
    
    .season-title h3 {
      font-size: 1.8rem;
      margin-bottom: 5px;
      color: white;
    }
    
    .season-badge {
      display: inline-block;
      background-color: rgba(255, 255, 255, 0.2);
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      font-weight: 600;
      font-size: 0.9rem;
    }
    
    .season-active {
      background-color: var(--success);
    }
    
    .season-ended {
      background-color: rgba(255, 255, 255, 0.2);
    }
    
    .season-content {
      padding: 25px;
    }
    
    .season-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-bottom: 20px;
    }
    
    .info-item {
      display: flex;
      flex-direction: column;
    }
    
    .info-item .label {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 5px;
    }
    
    .info-item .value {
      font-size: 1.1rem;
      font-weight: 600;
    }
    
    .season-description {
      margin-bottom: 25px;
      line-height: 1.6;
    }
    
    .season-highlights {
      margin-bottom: 25px;
    }
    
    .highlight-list {
      list-style: none;
      padding-left: 0;
    }
    
    .highlight-list li {
      position: relative;
      padding-left: 25px;
      margin-bottom: 10px;
    }
    
    .highlight-list li:before {
      content: '\f005';
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      color: var(--primary);
      position: absolute;
      left: 0;
    }
    
    .season-gallery {
      margin-top: 30px;
    }
    
    .gallery-heading {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }
    
    .gallery-heading h4 {
      font-size: 1.3rem;
      color: var(--primary);
    }
    
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 15px;
      margin-bottom: 20px;
    }
    
    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: var(--border-radius);
      aspect-ratio: 4/3;
      cursor: pointer;
    }
    
    .gallery-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }
    
    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: var(--transition);
    }
    
    .gallery-item:hover .gallery-img {
      transform: scale(1.1);
    }
    
    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }
    
    .gallery-zoom {
      color: white;
      font-size: 1.5rem;
    }
    
    .show-more {
      display: block;
      text-align: center;
      margin-top: 10px;
      color: var(--primary);
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }
    
    .show-more:hover {
      color: var(--primary-hover);
    }
    
    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .lightbox.active {
      opacity: 1;
      visibility: visible;
    }
    
    .lightbox-content {
      position: relative;
      max-width: 90%;
      max-height: 90%;
    }
    
    .lightbox-img {
      max-width: 100%;
      max-height: 80vh;
      border-radius: var(--border-radius);
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    }
    
    .lightbox-close {
      position: absolute;
      top: -40px;
      right: 0;
      color: white;
      font-size: 2rem;
      cursor: pointer;
      background: none;
      border: none;
    }
    
    .lightbox-nav {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 20px;
    }
    .download-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 25px;
      background-color: var(--success);
      color: white;
      border-radius: 30px;
      font-weight: 600;
      transition: var(--transition);
      text-decoration: none;
    }
    
    .download-btn:hover {
      background-color: var(--success-hover);
      transform: translateY(-3px);
    }

    .project-actions {
      display: flex;
      justify-content: center;
      margin-top: 30px;
      gap: 20px;
    }
    .lightbox-button {
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      cursor: pointer;
      transition: var(--transition);
    }
    
    .lightbox-button:hover {
      background-color: var(--primary);
    }
    
    .season-cta {
      display: flex;
      justify-content: center;
      margin-top: 30px;
    }
    
    /* Responsive styles */
    @media (max-width: 768px) {
      .season-header {
        flex-direction: column;
        text-align: center;
      }
      
      .season-logo {
        margin-right: 0;
        margin-bottom: 15px;
      }
      
      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      }
      .project-actions {
        flex-direction: column;
      }
    }