/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #FFD700;
    --accent-color: #0066CC;
    --red-accent: #CC0000;
    --text-color: #e8e8e8;
    --off-white: #f4f4f4;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.5;
    color: var(--text-color);
    background-color: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.05) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence baseFrequency="0.9"/></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.03"/></svg>');
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    background: linear-gradient(175deg, #000000 0%, #1a1a1a 100%);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--secondary-color);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 8px;
    text-transform: lowercase;
    font-family: 'Courier New', monospace;
    position: relative;
}

.logo::before {
    content: 'terriblething';
    position: absolute;
    top: 2px;
    left: 2px;
    color: var(--accent-color);
    z-index: -1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: var(--off-white);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: lowercase;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--red-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background-color: var(--secondary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 8rem 40px 6rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--red-accent) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(80px);
    z-index: -1;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 8px;
    color: var(--secondary-color);
    font-family: 'Courier New', monospace;
    text-transform: lowercase;
    line-height: 0.85;
    position: relative;
}

.hero-content h1::before {
    content: 'terriblething';
    position: absolute;
    top: 3px;
    left: 3px;
    color: var(--accent-color);
    z-index: -1;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.6;
    opacity: 0.8;
}

.location {
    font-size: 0.75rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.6;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-transform: lowercase;
    position: relative;
    overflow: hidden;
    border: 1px solid;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-secondary:hover {
    color: var(--primary-color);
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-small:hover {
    color: var(--primary-color);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    filter: grayscale(30%) contrast(1.1);
    position: relative;
    clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color), var(--red-accent));
    opacity: 0.15;
    z-index: -1;
    filter: blur(30px);
}

.hero-image .image-placeholder {
    width: 100%;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1rem;
    opacity: 0.5;
    clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
}

/* Social Links Section */
.social-links {
    text-align: center;
}

.social-links h2 {
    margin-bottom: 3rem;
    font-size: 1rem;
    color: var(--off-white);
    text-transform: lowercase;
    letter-spacing: 5px;
    font-weight: 400;
    opacity: 0.5;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between icons */
    margin: 2rem 0;
}

.social-link {
    font-size: 48px; /* Adjust icon size */
    color: var(--text-color);
    transition: color 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.05);
    color: var(--secondary-color);
    border-right-color: var(--secondary-color);
    transform: translateY(-2px);
}

.social-link:hover {
    color: var(--accent-color); /* Your yellow color */
}

.email-link {
    margin-top: 2rem;
}

.email-link a {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--secondary-color);
}

/* Latest News Section */
.latest-news {
    padding: 8rem 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.latest-news h2 {
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: var(--off-white);
    text-transform: lowercase;
    letter-spacing: -2px;
    font-weight: 300;
    opacity: 0.9;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 0;
}

.news-item {
    background: transparent;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--secondary-color), var(--red-accent));
    transition: height 0.3s ease;
}

.news-item:hover::before {
    height: 100%;
}

.news-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 215, 0, 0.1);
}

.news-item h3 {
    margin-bottom: 1rem;
    color: var(--off-white);
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: lowercase;
}

.news-item p {
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.7;
}

.news-item .link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px solid var(--secondary-color);
}

.news-item .link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    color: var(--off-white);
    padding: 6rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: lowercase;
    letter-spacing: -2px;
    font-weight: 300;
}

.page-header p {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.6;
    letter-spacing: 2px;
    text-transform: lowercase;
}

/* Shows Section */
.shows-section {
    padding: 6rem 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.shows-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: lowercase;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--off-white);
}

.past-shows-title {
    margin-top: 6rem;
}

.shows-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.show-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    padding: 2rem;
    background: transparent;
    align-items: center;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.show-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    opacity: 0.1;
    transition: width 0.3s ease;
}

.show-item:hover::before {
    width: 100%;
}

.show-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.show-item.past {
    opacity: 0.4;
}

.show-date {
    text-align: center;
    min-width: 80px;
}

.show-date .month {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.show-date .day {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--off-white);
    margin: 0.3rem 0;
}

.show-date .year {
    display: block;
    font-size: 0.7rem;
    color: var(--text-color);
    opacity: 0.5;
}

.show-details h3 {
    margin-bottom: 0.3rem;
    color: var(--off-white);
    font-size: 1.3rem;
    font-weight: 500;
    text-transform: lowercase;
}

.show-location {
    color: var(--text-color);
    font-size: 0.85rem;
    opacity: 0.6;
}

.show-info {
    color: var(--text-color);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    opacity: 0.6;
}

.no-shows {
    text-align: center;
    padding: 4rem;
    color: var(--text-color);
    font-style: italic;
    opacity: 0.5;
}

/* Listen Section */
.listen-section {
    padding: 6rem 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.streaming-platforms {
    margin-bottom: 6rem;
}

.streaming-platforms h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: lowercase;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--off-white);
}

.platform-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-btn {
    padding: 1.5rem;
    background: transparent;
    color: var(--text-color);
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-transform: lowercase;
}

.platform-btn:hover {
    background: rgba(255, 215, 0, 0.05);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.platform-btn.spotify:hover {
    border-color: #1DB954;
    color: #1DB954;
}

.platform-btn.bandcamp:hover {
    border-color: #629aa9;
    color: #629aa9;
}

.platform-btn.apple-music:hover {
    border-color: #fa243c;
    color: #fa243c;
}

.platform-btn.youtube-music:hover {
    border-color: #FF0000;
    color: #FF0000;
}

.music-player {
    margin-bottom: 6rem;
}

.music-player h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: lowercase;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--off-white);
}

.embed-container {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
}

.embed-note {
    text-align: center;
    color: var(--text-color);
    font-size: 0.8rem;
    margin-top: 1.5rem;
    font-style: italic;
    opacity: 0.5;
}

.embed-note a {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--secondary-color);
}

.embed-note a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Videos Section */
.videos-section {
    margin-top: 6rem;
}

.videos-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-transform: lowercase;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--off-white);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-item h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: lowercase;
    color: var(--off-white);
}

.video-item p {
    color: var(--text-color);
    font-size: 0.85rem;
    opacity: 0.6;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* EPK Section */
.epk-section {
    padding: 6rem 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.epk-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.epk-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color), var(--red-accent));
    opacity: 0.5;
}

.epk-card h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--off-white);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 1rem;
    text-transform: lowercase;
    font-weight: 400;
    letter-spacing: 2px;
}

.epk-card h3 {
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--off-white);
    font-weight: 500;
    text-transform: lowercase;
}

.section-note {
    color: var(--text-color);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    opacity: 0.5;
}

/* Quick Facts */
.quick-facts .facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
}

.fact {
    padding: 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.fact strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

/* Bio Section */
.bio-section {
    margin-bottom: 3rem;
}

.bio-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0.8;
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
}

.photo-item .image-placeholder {
    width: 100%;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.photo-credit {
    font-size: 0.75rem;
    color: var(--text-color);
    font-style: italic;
    opacity: 0.5;
}

/* Press Quotes */
.press-quotes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quote {
    padding: 2rem;
    background: transparent;
    border-left: 2px solid var(--secondary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.quote p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
    opacity: 0.8;
}

.quote cite {
    color: var(--text-color);
    font-size: 0.85rem;
    font-style: normal;
    opacity: 0.5;
}

/* Links Grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
}

.link-item {
    padding: 2rem;
    background: transparent;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.link-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: var(--secondary-color);
}

.link-item strong {
    color: var(--off-white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: lowercase;
}

.link-item span {
    color: var(--text-color);
    font-size: 0.8rem;
    opacity: 0.6;
}

.link-item:hover strong {
    color: var(--secondary-color);
}

.link-item:hover span {
    opacity: 0.8;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
}

.contact-item {
    padding: 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

.contact-item a {
    color: var(--off-white);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* Technical Rider */
.rider-section {
    margin-bottom: 3rem;
}

.rider-section ul {
    margin-left: 1.5rem;
    line-height: 2;
    opacity: 0.8;
}

.rider-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.rider-table th,
.rider-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rider-table th {
    background: rgba(255, 215, 0, 0.05);
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.rider-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

#rotating-photo {
    transition: opacity 0.6s ease-in-out;
}

.download-note {
    text-align: center;
    margin-top: 2rem;
}

/* Footer */
footer {
    background: #000000;
    color: var(--text-color);
    padding: 3rem 0;
    text-align: center;
    margin-top: 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: lowercase;
    opacity: 0.4;
}

.footer-location {
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        border-bottom: 1px solid var(--secondary-color);
    }

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

    .hero {
        grid-template-columns: 1fr;
        padding: 4rem 20px;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .container {
        padding: 0 20px;
    }

    .shows-section,
    .listen-section,
    .latest-news,
    .epk-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .show-item {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
    }

    .show-actions {
        grid-column: 2;
    }

    .photo-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .platform-links {
        grid-template-columns: 1fr;
    }

    .social-icons {
        flex-direction: column;
    }

    .social-link {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: -3px;
    }

    .contact-info,
    .links-grid,
    .facts-grid {
        grid-template-columns: 1fr;
    }

    .latest-news h2 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}
