body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #222;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 40px;
}

.main-content {
    flex: 2;
}

.title-highlight {
    font-weight: bold;
    font-size: 2rem;
}

.venue-info p {
    margin: 5px 0;
    font-size: 1rem;
}

.separator {
    margin: 0 5px;
    color: #999;
}

.show-overview {
    margin-top: 30px;
}

.show-overview h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.show-overview p {
    margin: 0;
    line-height: 1.5;
    color: #333;
}

.tickets-box {
    border: 1px solid #ddd;
    padding: 20px;
    background-color: #f9f9f9;
    max-width: 300px;
}

.tickets-box h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.ticket-series {
    font-weight: 600;
}

.ticket-disclaimer {
    font-size: 0.85rem;
    color: #555;
    margin: 12px 0;
    line-height: 1.4;
    padding: 8px 12px;
    background-color: #f0f0f0;
    border-left: 3px solid #3a0ca3;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3a0ca3;
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin: 15px 0;
}

.phone {
    font-size: 0.9rem;
}

.tickets-desktop {
    display: block;
}

.tickets-mobile {
    display: none;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .tickets-desktop {
        display: none;
    }

    .tickets-mobile {
        display: block;
    }

    .tickets-box {
        max-width: 100%;
        margin-top: 20px;
    }
}

footer.site-footer {
    background-color: #f5f5f5;
    padding: 40px 20px;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-left {
    flex: 1 1 250px;
}

.footer-logo {
    width: 50px;
    margin-bottom: 15px;
}

.footer-desc {
    max-width: 300px;
    color: #444;
}

.footer-links {
    display: flex;
    flex: 2 1 400px;
    gap: 40px;
}

.footer-column h4 {
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 6px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #222;
}

.footer-right {
    flex: 1 1 250px;
}

.btn-green {
    display: inline-block;
    padding: 10px 15px;
    background-color: #00a86b;
    color: white;
    font-weight: bold;
    text-decoration: none;
    margin: 10px 0 20px;
}

.social-icons a {
    margin-right: 10px;
    font-family: FontAwesome;
    font-size: 1.2rem;
    text-decoration: none;
    color: #222;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 30px;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
    margin-left: 10px;
}

/* Announcement Bar */
.top-announcement {
    background-color: #3a0ca3;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
}

.top-announcement p {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-announcement a {
    color: white;
    text-decoration: underline;
}

/* Header and Navigation */
.site-header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
}

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

.header-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.site-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3a0ca3;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.top-links {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    margin-bottom: 0;
    padding: 10px 20px;
    background-color: #f5f5f5;
    justify-content: flex-end;
}

.top-links a {
    text-decoration: none;
    color: #666;
}

/* Hero Banner */
.hero-banner {
    width: 100%;
    margin-bottom: 30px;
    padding: 0;
    box-sizing: border-box;
}

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

.hero-image {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

/* Mobile Navigation */
.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
    }

    .header-left {
        flex: 1;
    }

    .main-nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .main-nav.active ul {
        flex-direction: column;
        padding: 20px;
    }

    .main-nav.active li {
        margin: 10px 0;
    }

    .top-links {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-image {
        height: 200px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .site-name {
        font-size: 1.2rem;
    }
}


