:root {
    --primary-color: #2E2E2E;
    --secondary-color: #e74c3c;
    --accent-color: #1200A6;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --dark-bg: #1a1a1a;
}

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

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.8rem 1.2rem;
    position: relative;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s;
        display: flex;
    }

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

    .nav-links li {
        margin: 1rem 0;
    }

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

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .bio-content {
        grid-template-columns: 1fr;
    }
    
    .shows-card {
        flex-direction: column;
    }
    
    .shows-date {
        flex-direction: row;
        justify-content: space-around;
        padding: 0.5rem;
    }
    /* Adjust hero background position for mobile */
    .hero {
        background-position: 40% center;
        background-attachment: scroll;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6)),
                url('images/mainimage.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    margin-top: 12rem;
    padding-top: 0;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--accent-color), #0f0f8a);
    color: white;
    text-decoration: none;
    border-radius: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;

    box-shadow: 0 8px 32px rgba(18, 0, 166, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #0f0f8a, var(--accent-color));
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 40px rgba(18, 0, 166, 0.5);
}

/* Bio Section */
.bio-section {
    padding: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
}

.bio-content {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 0;
    align-items: stretch;
    max-width: none;
    margin: 0;
    padding: 0;
    min-height: 70vh;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
}

.bio-image {
    position: relative;
    height: 100%;
}

.bio-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 0;
    background-color: #ddd;
}

/* Music Section */
.music-section {
    padding: 5rem 0;
}

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

.music-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.album-placeholder {
    width: 100%;
    height: 200px;
    background-color: #eee;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0 2rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    color: white;
    text-align: center;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 80%, rgba(18, 0, 166, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 2.5rem;
    transition: all 0.4s ease;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    color: white;
    border-color: var(--accent-color);
    background: rgba(18, 0, 166, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(18, 0, 166, 0.3);
}

/* shows Page Styles */
.shows-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.shows-dates {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.shows-dates h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

/* --- Enhanced Gigs Card Styles --- */
.show-card, .shows-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10), 0 1.5px 6px rgba(44, 62, 80, 0.08);
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
    overflow: hidden;
    position: relative;
    animation: fadeInUp 0.7s both;
}

.show-card:hover, .shows-card:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.16), 0 2px 8px rgba(44, 62, 80, 0.10);
}

/* Accent bar on the left */
.show-card::before, .shows-card::before {
    content: '';
    display: block;
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--accent-color), #000000);
}

.shows-date {
    background: linear-gradient(135deg, var(--accent-color), #000000);
    color: #fff;
    padding: 0.5rem 0 0.5rem 0;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 0 0 0 0;
    margin-bottom: 0;
}

.month {
    font-size: 1.1rem;
    text-transform: uppercase;
    opacity: 0.85;
    letter-spacing: 1.5px;
}

.day {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    letter-spacing: 2px;
}

.shows-info {
    padding: 2rem 2rem 2.5rem 2rem;
    text-align: left;
}

.shows-info h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.shows-info .venue {
    font-weight: 500;
    color: #444;
    margin-bottom: 0.2rem;
}

.shows-info .location {
    color: #666;
    font-size: 1.05rem;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: none; }
}

/* Responsive tweaks for gigs */
@media (max-width: 900px) {
    .shows-info {
        padding: 1.2rem 1.2rem 1.5rem 1.2rem;
    }
    .shows-date {
        padding: 1.2rem 0 0.7rem 0;
    }
    .bio-content {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 0;
        min-height: 80vh;
    }
    
    .bio-image {
        width: 100%;
        height: 50vh;
        order: 1;
    }
    
    .bio-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .bio-text {
        order: 2;
        padding: 3rem 2rem;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .bio-text h2 {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 1.5rem;
        letter-spacing: 2px;
    }
    
    .bio-text h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
    }
    
    .bio-text p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: center;
        margin-bottom: 1.2rem;
    }
    
    .contact-section h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .shows-dates h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .social-links {
        gap: 2rem;
    }
    
    .social-link {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

.bio-text {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.bio-text h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: white;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

.bio-text h2::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.bio-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: white !important;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.bio-text p:last-child {
    margin-bottom: 0;
}



/* Shows Section Messages */
.no-shows,
.error-message {
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
    color: var(--text-color);
    background-color: var(--light-bg);
    border-radius: 10px;
    margin: 2rem 0;
}

.error-message {
    color: var(--secondary-color);
}

/* Add smooth scrolling to the entire page */
html {
    scroll-behavior: smooth;
}

.hero-cursive {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    color: white;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: none !important;
    letter-spacing: 2px;
} 

.logo-container {
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 999;
}

.top-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 300px;
    }
    
    .hero {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: 40% center !important;
        background-repeat: no-repeat !important;
    }
    
    .tagline {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 250px;
    }
} 