* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Navigation */
.main-nav {
    background: #000;
    border-bottom: 3px solid #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu a {
    color: #000;
    background: #fff;
    text-decoration: none;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    transition: all 0.3s;
    font-weight: bold;
    border: 2px solid #fff;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #000;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 40px 20px 20px;
    border-bottom: 3px solid #fff;
    margin-bottom: 40px;
}

.logo-container {
    margin-bottom: 30px;
}

.logo-container img {
    width: 100%;
    max-width: 900px;
    height: auto;
}

.tagline {
    font-size: 1.2em;
    color: #999;
    margin-top: 10px;
}

.news-section {
    margin: 60px 0;
}

.news-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
}

.news-item {
    background: #1a1a1a;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 5px solid #fff;
}

.news-item h3 {
    font-size: 2em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.news-date {
    color: #999;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.news-item img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 20px 0;
    border: 2px solid #333;
}

.news-item p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.story-section {
    margin: 60px 0;
}

.story-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
}

.story-section p {
    margin-bottom: 20px;
    font-size: 1.1em;
    text-align: justify;
}

.lineup {
    background: #1a1a1a;
    padding: 30px;
    margin: 40px 0;
}

.lineup h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.lineup ul {
    list-style: none;
    font-size: 1.2em;
}

.lineup li {
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.artwork-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.artwork-item {
    position: relative;
    overflow: hidden;
    background: #000;
}

.artwork-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    border: 2px solid #333;
}

.artwork-item:hover img {
    transform: scale(1.05);
}

.artwork-item .caption {
    text-align: center;
    padding: 10px;
    background: #1a1a1a;
    font-size: 0.9em;
    color: #999;
}

.band-photo {
    margin: 60px 0;
}

.band-photo img {
    width: 100%;
    height: auto;
    border: 3px solid #fff;
}

.band-photo .credit {
    text-align: right;
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
}

.video-section {
    margin: 40px 0;
    text-align: center;
}

.video-section h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.video-container {
    margin: 30px auto;
    max-width: 900px;
}

.video-container iframe {
    border-radius: 12px;
}

.contact-section {
    background: #1a1a1a;
    padding: 40px;
    margin: 60px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

.contact-info div {
    padding: 10px;
    background: #0a0a0a;
}

.email-signup {
    background: #0a0a0a;
    padding: 30px;
    margin: 30px auto;
    max-width: 600px;
    text-align: center;
}

.email-signup h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.email-signup p {
    color: #999;
    margin-bottom: 20px;
}

.email-signup input {
    padding: 15px;
    font-size: 1em;
    width: 100%;
    max-width: 400px;
    margin-bottom: 15px;
    background: #1a1a1a;
    border: 2px solid #666;
    color: #fff;
    font-family: 'Courier New', monospace;
}

.email-signup button {
    padding: 15px 40px;
    font-size: 1em;
    background: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-family: 'Courier New', monospace;
}

.email-signup button:hover {
    background: #666;
    color: #fff;
}

.spotify-embed {
    margin: 40px 0;
    padding: 30px;
    background: #1a1a1a;
}

.spotify-embed h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.social-button {
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 15px 25px;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid #fff;
}

.social-button:hover {
    background: #000;
    color: #fff;
}

.media-section {
    margin: 60px 0;
}

.media-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
}

.shows-section {
    margin: 60px 0;
}

.shows-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
}

.bandsintown-widget {
    margin: 30px 0;
}

/* Press items with logos */
.press-section {
    margin: 60px 0;
}

.press-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
}

.press-item {
    background: #1a1a1a;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 5px solid #fff;
    display: flex;
    gap: 30px;
    align-items: center;
}

.press-logo {
    flex-shrink: 0;
    width: 150px;
}

.press-logo img {
    width: 100%;
    height: auto;
    border: 2px solid #333;
}

.press-content {
    flex: 1;
}

.press-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.press-item a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}

.merch-section {
    margin: 60px 0;
}

.merch-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
}

.merch-embed {
    margin: 30px 0;
    text-align: center;
}

footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 3px solid #fff;
    margin-top: 60px;
}

.footer-text {
    color: #666;
    margin: 10px 0;
}

/* Hide Bandsintown follow section */
.bit-follow-section {
    display: none !important;
}

/* ============================================
   MOBILE RESPONSIVE STYLES - HORIZONTAL LAYOUT
   ============================================ */

/* Tablets and smaller (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .nav-container {
        padding: 10px 10px;
    }
    
    /* Navigation - STAYS HORIZONTAL, just smaller */
    .nav-menu {
        gap: 3px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-menu a {
        font-size: 0.75em;
        padding: 10px 8px;
        letter-spacing: 0.5px;
    }
    
    /* Logo and header */
    .logo-container img {
        max-width: 100%;
    }
    
    header {
        padding: 20px 10px 15px;
    }
    
    .tagline {
        font-size: 1em;
    }
    
    /* Content sections */
    .story-section h2,
    .news-section h2,
    .shows-section h2,
    .press-section h2,
    .merch-section h2 {
        font-size: 2em;
    }
    
    .story-section p,
    .news-item p {
        font-size: 1em;
        text-align: left;
    }
    
    /* Artwork grid - single column */
    .artwork-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Social buttons */
    .social-links {
        gap: 10px;
    }
    
    .social-button {
        font-size: 0.75em;
        padding: 10px 15px;
    }
    
    /* Video container */
    .video-container iframe {
        height: 250px;
    }
    
    /* Press section */
    .press-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .press-logo {
        width: 120px;
    }
    
    /* Contact section */
    .contact-section {
        padding: 30px 20px;
    }
    
    .email-signup {
        padding: 20px 15px;
    }
}

/* Small phones (480px and below) - EVEN SMALLER */
@media (max-width: 480px) {
    .nav-container {
        padding: 8px 5px;
    }
    
    .nav-menu {
        gap: 2px;
    }
    
    .nav-menu a {
        font-size: 0.65em;
        padding: 8px 6px;
        letter-spacing: 0px;
    }
    
    .story-section h2,
    .news-section h2,
    .shows-section h2 {
        font-size: 1.6em;
    }
    
    .social-button {
        font-size: 0.7em;
        padding: 8px 12px;
    }
    
    .video-container iframe {
        height: 200px;
    }
    
    .lineup {
        padding: 20px 15px;
    }
    
    .lineup li {
        font-size: 1em;
    }
}

/* Very small phones (390px and below) - ULTRA COMPACT */
@media (max-width: 390px) {
    .nav-menu a {
        font-size: 0.6em;
        padding: 7px 5px;
    }
}