/**
 * content.css - Content page styles
 * About, Timeline, Misc, AHC, and other content pages
 */

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
}

.about-header h1 {
    margin: 0 0 15px 0;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white;
}

.about-header p {
    font-size: 1.2em;
    margin: 0;
    opacity: 0.9;
    color: white;
}

.content-section {
    background: #f8f9fa;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.content-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    font-size: 1.5em;
}

.content-section p {
    color: #34495e;
    margin-bottom: 15px;
}

.quote-section {
    background: #e8f4fd;
    padding: 25px;
    margin: 25px 0;
    border-left: 4px solid #3498db;
    border-radius: 0 8px 8px 0;
}

.quote-text {
    font-style: italic;
    font-size: 1.1em;
    color: #2c3e50;
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

.quote-attribution {
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    color: #3498db;
}

.highlight-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.highlight-box h3 {
    color: #856404;
    margin-top: 0;
}

.highlight-box p {
    color: #856404;
    margin-bottom: 0;
}

.tech-stack {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.tech-stack h3 {
    color: #155724;
    margin-top: 0;
}

.tech-stack p {
    color: #155724;
    margin-bottom: 10px;
}

.tech-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.tech-list li {
    background: white;
    padding: 8px 12px;
    border-radius: 4px;
    border-left: 3px solid #28a745;
    font-weight: 500;
}

/* ==========================================================================
   TIMELINE PAGE STYLES
   ========================================================================== */

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

.timeline-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
}

.timeline-header h1 {
    margin: 0 0 15px 0;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white;
}

.timeline-header p {
    font-size: 1.2em;
    margin: 0;
    opacity: 0.9;
    color: white;
}

.lineup-section {
    background: #f8f9fa;
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.lineup-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #3498db, #2980b9);
}

.lineup-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
}

.lineup-image {
    text-align: center;
}

.lineup-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.lineup-image img:hover {
    transform: scale(1.05);
}

.lineup-details h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.8em;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.lineup-year {
    background: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.member-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-list li {
    background: white;
    margin-bottom: 10px;
    padding: 12px 15px;
    border-radius: 6px;
    border-left: 3px solid #3498db;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.member-list li:hover {
    transform: translateX(5px);
}

.member-name {
    font-weight: 600;
    color: #2c3e50;
}

.member-instruments {
    color: #666;
    font-size: 0.9em;
    margin-left: 10px;
}

.not-pictured {
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border-radius: 6px;
    border-left: 3px solid #ffc107;
}

.not-pictured h4 {
    margin: 0 0 10px 0;
    color: #856404;
}

.not-pictured p {
    margin: 0;
    color: #856404;
}

.timeline-nav {
    position: sticky;
    top: 80px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    z-index: 100;
}

.timeline-nav h3 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 1.1em;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-link {
    padding: 5px 10px;
    background: #e9ecef;
    color: #495057;
    text-decoration: none;
    border-radius: 15px;
    font-size: 0.85em;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: #3498db;
    color: white;
    text-decoration: none;
}

/* ==========================================================================
   MISCELLANEOUS PAGE STYLES
   ========================================================================== */

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

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.gallery-item {
    position: relative;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-caption {
    padding: 15px;
    background: white;
}

.gallery-caption h3 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1.1em;
}

.gallery-caption p {
    margin: 0;
    color: #666;
    font-size: 0.9em;
    line-height: 1.4;
}

.vintage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.vintage-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.vintage-item:hover {
    transform: translateY(-3px);
}

.vintage-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.vintage-caption {
    padding: 15px;
}

.vintage-caption h4 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 1em;
}

.vintage-caption p {
    margin: 0;
    color: #666;
    font-size: 0.85em;
    line-height: 1.3;
}

.link-item {
    display: inline-block;
    margin: 10px 15px 10px 0;
}

.link-item a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link-item a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* ==========================================================================
   AHC (ADAM'S HOUSE CAT) PAGE STYLES
   ========================================================================== */

.ahc-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.7;
}

.ahc-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    color: white;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.ahc-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.ahc-header h1 {
    margin: 0 0 15px 0;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
    color: white;
}

.ahc-header p {
    font-size: 1.2em;
    margin: 0;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    color: white;
}

.album-showcase {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.album-image {
    margin-bottom: 20px;
}

.album-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.album-image img:hover {
    transform: scale(1.05);
}

.album-title {
    color: #2c3e50;
    margin: 20px 0;
    font-size: 1.8em;
    font-weight: 600;
}

.album-subtitle {
    color: #7f8c8d;
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 30px;
}

.story-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    font-family: Georgia, 'Times New Roman', serif;
}

.story-intro {
    background: #e8f4fd;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #3498db;
    font-style: italic;
    color: #2c3e50;
}

.story-content p {
    margin-bottom: 20px;
    color: #34495e;
    font-size: 1.05em;
}

.story-content p:first-of-type {
    font-size: 1.1em;
    font-weight: 500;
}

.story-content em {
    color: #8B4513;
    font-style: italic;
}

.story-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.signature {
    text-align: right;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #ecf0f1;
    font-style: italic;
    color: #7f8c8d;
    font-size: 1.1em;
}

.back-link {
    display: inline-block;
    margin: 30px 0;
    padding: 12px 24px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
    font-weight: 500;
}

.back-link:hover {
    background: #2980b9;
    text-decoration: none;
    color: white;
}

.back-link::before {
    content: '← ';
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    .about-container,
    .timeline-container,
    .misc-container,
    .ahc-container {
        padding: 15px;
    }
    
    .about-header,
    .timeline-header,
    .ahc-header {
        padding: 20px;
    }
    
    .about-header h1,
    .timeline-header h1,
    .ahc-header h1 {
        font-size: 2em;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .lineup-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lineup-section {
        padding: 20px;
    }
    
    .timeline-nav {
        position: static;
    }
    
    .nav-links {
        justify-content: center;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .vintage-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .story-content {
        padding: 25px;
    }
    
    .album-showcase {
        padding: 20px;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    .about-header,
    .timeline-header,
    .ahc-header {
        background: none !important;
        color: #000 !important;
    }
    
    .back-link,
    .timeline-nav {
        display: none;
    }
    
    .content-section,
    .lineup-section,
    .story-content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .lineup-content {
        grid-template-columns: 1fr;
    }
    
    .vintage-grid,
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}