* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fefefe;
}

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

header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

nav {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0;
}

/* Modern Link Styling */
a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #764ba2;
    text-decoration: underline;
}

a:visited {
    color: #667eea; /* Keep same color instead of purple */
}

a:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Specific link styling for different contexts */
.section a {
    color: #667eea;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.section a:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
    text-decoration: none;
}

.highlight-box a {
    color: #667eea;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.3s ease;
}

.highlight-box a:hover {
    color: #764ba2;
    text-decoration-color: #764ba2;
}

/* Navigation links stay as they were */
nav ul li a {
    display: block;
    padding: 20px 25px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

nav ul li a:hover, nav ul li a.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 20px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

main {
    padding: 60px 0;
}

.section {
    display: none;
}

.section.active {
    display: block;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 300;
}

.section h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    color: #34495e;
    font-weight: 500;
}

.section h4 {
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
    color: #667eea;
    font-weight: 600;
}

.section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.section ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.section li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.hero {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero p {
    font-size: 1.3rem;
    color: #7f8c8d;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.cta-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cta-btn.secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.cta-btn.secondary:hover {
    background: #667eea;
    color: white;
}

.recent-posts {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.recent-posts h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 500;
}

.post-preview {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #667eea;
}

.post-preview:last-child {
    margin-bottom: 0;
}

.post-date {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 8px 0;
}

.post-title a {
    color: inherit;
    text-decoration: none;
}

.post-title a:hover {
    color: #667eea;
}

.post-excerpt {
    color: #7f8c8d;
    line-height: 1.6;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea15, #764ba215);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #667eea;
}

.show-list {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.show-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #667eea;
}

.show-date {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.show-title {
    font-weight: 600;
    color: #2c3e50;
    margin: 5px 0;
}

.show-venue {
    color: #667eea;
    font-size: 0.95rem;
}

.show-venue a {
    color: #667eea;
    text-decoration: none;
}

.show-venue a:hover {
    text-decoration: underline;
}

.show-role {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 5px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.award {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
}

/* Blog Post Styles */
.blog-posts {
    margin-top: 30px;
}

.blog-post-preview {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border-left: 4px solid #667eea;
}

.blog-post-preview h3 {
    margin: 10px 0 15px 0;
    font-size: 1.4rem;
}

.blog-post-preview h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.blog-post-preview h3 a:hover {
    color: #667eea;
}

.blog-post-preview p {
    color: #7f8c8d;
    margin-bottom: 15px;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.read-more:hover {
    text-decoration: underline;
}

/* Individual Blog Post Styles */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.blog-post h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 300;
    line-height: 1.2;
}

.blog-post .post-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ecf0f1;
}

.blog-post h2 {
    font-size: 1.8rem;
    color: #34495e;
    margin: 40px 0 20px 0;
    font-weight: 500;
}

.blog-post h3 {
    font-size: 1.4rem;
    color: #667eea;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.blog-post p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2c3e50;
}

.blog-post ul, .blog-post ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-post li {
    margin-bottom: 8px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.blog-post blockquote {
    background: linear-gradient(135deg, #667eea15, #764ba215);
    padding: 25px;
    border-left: 4px solid #667eea;
    margin: 30px 0;
    border-radius: 8px;
    font-style: italic;
}

.blog-post code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9em;
    color: #e74c3c;
}

.blog-post pre {
    background: #2c3e50;
    color: white;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.blog-post pre code {
    background: none;
    color: inherit;
    padding: 0;
}

.blog-post img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 20px;
    background: #f8f9fa;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.back-link:hover {
    background: #ecf0f1;
}

/* Coming Soon / Upcoming Shows Styling */
.upcoming-shows {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #ecf0f1;
}

.upcoming-shows h3 {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
}

.upcoming-shows h3::after {
    content: "✨";
    margin-left: 10px;
    font-size: 1.2rem;
}

.show-item.upcoming {
    background: linear-gradient(135deg, #667eea10, #764ba210);
    border-left: 4px solid #667eea;
    position: relative;
    overflow: hidden;
}

.show-item.upcoming::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
    border-radius: 8px;
    z-index: -1;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.show-item.upcoming .show-date {
    color: #667eea;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.show-item.upcoming .show-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.1rem;
}

.show-item.upcoming .show-venue {
    color: #667eea;
    font-weight: 500;
}

.show-item.upcoming .show-role {
    color: #34495e;
    font-weight: 500;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 10px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Optional: Different style for confirmed vs TBC shows */
.show-item.upcoming.tbc {
    background: linear-gradient(135deg, #f39c1220, #e67e2220);
    border-left-color: #f39c12;
}

.show-item.upcoming.tbc .show-date {
    color: #f39c12;
}

.show-item.upcoming.tbc .show-venue {
    color: #f39c12;
}

.tbc-badge {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        z-index: 99;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu li a {
        padding: 20px;
        display: block;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 25px;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 200px;
        text-align: center;
    }

    .blog-post {
        padding: 40px 15px;
    }

    .blog-post h1 {
        font-size: 2rem;
    }

    .recent-posts {
        padding: 25px;
    }

    .blog-post-preview {
        padding: 20px;
    }
}