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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/photos/SeanO.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.hero h1 {
    font-family: 'Oregano', cursive;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.2rem;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* Shows Section */
.shows-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.shows-section h2 {
    font-family: 'Oregano', cursive;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Show Cards */
.show-card {
    position: relative;
    background: #1a1a1a;
    border-radius: 12px;
    margin-bottom: 25px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.show-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.show-card-disabled {
    opacity: 0.6;
}

.show-card-disabled:hover {
    transform: none;
    box-shadow: none;
}

.show-card-disabled .show-image img {
    filter: grayscale(40%);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff4757;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-content {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 20px;
    padding: 20px;
    align-items: center;
}

/* Show Image Column */
.show-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-image img {
    width: 100%;
    height: 140px;
    border-radius: 8px;
    object-fit: cover;
}

/* Show Info Column */
.show-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.show-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.show-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #aaa;
    margin: 0;
}

.show-details {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 5px 0;
}

.show-details span {
    font-size: 0.8rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
}

/* Show Tickets Column */
.show-tickets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 20px;
    border-left: 1px solid #333;
}

.btn-tickets {
    display: inline-block;
    padding: 12px 25px;
    background: #fff;
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.2s ease;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.btn-tickets:hover {
    background: #e0e0e0;
    transform: scale(1.02);
}

.coming-soon {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    color: #666;
    border: 2px solid #444;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: not-allowed;
}

/* About Section */
.about-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.about-section h2 {
    font-family: 'Oregano', cursive;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 0.05em;
    text-align: left;
}

.about-intro {
    max-width: 100%;
    margin: 0 0 60px;
    padding: 0;
    border-left: 4px solid #fff;
    padding-left: 30px;
}

.about-intro p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ddd;
    font-weight: 300;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature {
    padding: 35px;
    background: transparent;
    border: 2px solid #333;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
}

.feature:hover {
    border-color: #fff;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature h3 {
    font-family: 'Oregano', cursive;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature p {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.8;
}

.feature p strong {
    color: #fff;
    font-weight: 700;
}

.venue-address {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.venue-address:hover {
    color: #4a9eff;
    text-decoration-thickness: 2px;
}

/* FAQ Section */
.faq-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq-section h2 {
    font-family: 'Oregano', cursive;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 50px;
    color: #fff;
    letter-spacing: 0.05em;
    text-align: left;
}

.faq-item {
    padding: 30px 0;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

.faq-item:first-of-type {
    border-top: 1px solid #333;
}

.faq-item:last-of-type {
    border-bottom: none;
}

.faq-item:hover {
    padding-left: 20px;
}

.faq-item h3 {
    font-family: 'Oregano', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 0.02em;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #aaa;
    max-width: 900px;
}

/* Contact Section */
.contact-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.contact-section h2 {
    font-family: 'Oregano', cursive;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 0.05em;
    text-align: left;
}

.contact-content {
    margin-top: 40px;
}

.contact-intro {
    max-width: 100%;
    margin: 0 0 60px;
    padding: 0;
}

.contact-intro p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ddd;
    font-weight: 300;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-item {
    padding: 40px;
    background: transparent;
    border: 2px solid #333;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-item:hover {
    border-color: #fff;
    transform: translateY(-5px);
}

.contact-icon {
    color: #fff;
    margin-bottom: 20px;
    opacity: 0.9;
}

.contact-item h3 {
    font-family: 'Oregano', cursive;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 0.05em;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 10px;
}

.contact-item p:last-child {
    margin-bottom: 0;
}

.contact-item a {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #4a9eff;
    text-decoration-thickness: 2px;
}

.contact-desc {
    font-size: 0.9rem !important;
    color: #777 !important;
    font-style: italic;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #222;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-logo {
        max-width: 180px;
    }
    
    .card-content {
        grid-template-columns: 120px 1fr auto;
        gap: 15px;
    }
    
    .show-image img {
        height: 120px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-section h2 {
        font-size: 2rem;
    }
    
    .about-intro p {
        font-size: 1.1rem;
    }
    
    .faq-section {
        margin: 60px auto;
    }
    
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .faq-item {
        padding: 25px 0;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
    
    .faq-item p {
        font-size: 1rem;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-intro p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 450px;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-logo {
        max-width: 160px;
    }
    
    .card-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .show-details {
        justify-content: center;
    }
    
    .show-image img {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .show-tickets {
        border-left: none;
        border-top: 1px solid #333;
        padding-left: 0;
        padding-top: 20px;
    }
    
    .badge {
        top: 10px;
        left: 10px;
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    .shows-section h2 {
        font-size: 1.8rem;
    }
    
    .about-section {
        margin: 60px auto;
    }
    
    .about-section h2 {
        font-size: 1.8rem;
    }
    
    .about-intro {
        margin-bottom: 40px;
        padding-left: 20px;
        border-left-width: 3px;
    }
    
    .about-intro p {
        font-size: 1rem;
    }
    
    .feature {
        padding: 25px;
    }
    
    .faq-section {
        margin: 60px auto;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .faq-item {
        padding: 20px 0;
    }
    
    .faq-item:hover {
        padding-left: 15px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .faq-item p {
        font-size: 0.95rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-section {
        margin: 60px auto;
    }
    
    .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-intro {
        margin-bottom: 40px;
    }
    
    .contact-intro p {
        font-size: 1rem;
    }
    
    .contact-item {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 400px;
    }
    
    .hero-content {
        padding: 30px 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .hero-logo {
        max-width: 140px;
        margin-bottom: 25px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .show-details {
        justify-content: center;
    }
    
    .show-info h3 {
        font-size: 1.1rem;
    }
    
    .show-info h4 {
        font-size: 0.9rem;
    }
    
    .btn-tickets {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .shows-section h2,
    .about-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }
    
    .about-section {
        margin: 40px auto;
    }
    
    .about-intro {
        padding-left: 15px;
        border-left-width: 3px;
        margin-bottom: 30px;
    }
    
    .about-intro p {
        font-size: 0.95rem;
    }
    
    .feature {
        padding: 20px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature h3 {
        font-size: 1.1rem;
    }
    
    .feature p {
        font-size: 0.9rem;
    }
    
    .faq-section {
        margin: 40px auto;
    }
    
    .faq-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .faq-item {
        padding: 18px 0;
    }
    
    .faq-item:hover {
        padding-left: 10px;
    }
    
    .faq-item h3 {
        font-size: 1rem;
    }
    
    .faq-item p {
        font-size: 0.9rem;
    }
    
    .contact-section {
        margin: 40px auto;
    }
    
    .contact-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-intro {
        margin-bottom: 30px;
    }
    
    .contact-intro p {
        font-size: 0.95rem;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
}