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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #0a0a0a;
    overflow-x: hidden;
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23d4af37;stop-opacity:1" /><stop offset="100%" style="stop-color:%23f4e4bc;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23bg)"/><circle cx="300" cy="200" r="150" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="600" r="200" fill="rgba(255,255,255,0.05)"/></svg>') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 0;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem 20px;
    z-index: 2;
    width: 100%;
    position: relative;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    color: #f5f5f5;
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: 300;
}

.hero-tagline {
    font-size: clamp(1rem, 3vw, 1.1rem);
    color: #e8e8e8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.event-details {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 2rem auto;
    max-width: 500px;
    width: 100%;
}

.event-details h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

.event-info {
    color: #ffffff;
    text-align: center;
    line-height: 1.8;
}

.button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 400;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    min-width: 220px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Georgia', serif;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #2c2c2c;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f4e4bc, #d4af37);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Ticket Tailor Widget Styling */
.ticket-widget-container {
    margin-top: 2rem;
    padding: 20px 20px 20px 20px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.ticket-widget-container h3 {
    color: #d4af37;
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Style the Ticket Tailor widget */
.tt-widget {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.tt-widget iframe {
    border-radius: 10px;
}

/* Widget bottom text styling */
.widget-info-text {
    color: #cccccc;
    font-size: 0.9rem;
    text-align: center;
    font-style: italic;
    margin-bottom: 5px;
}

.main-content {
    background: #ffffff;
    position: relative;
    z-index: 3;
}

.section {
    padding: 80px 0;
}

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

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #2c2c2c;
    margin-bottom: 40px;
    font-weight: 300;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
}

.section-title-2 {
    text-align: center;
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 300;
    position: relative;
}

.section-title-2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    font-style: italic;
}

.how-it-works {
    background: #f8f8f8;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 4px solid #d4af37;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.step p {
    color: #666;
    line-height: 1.6;
}

.contact-section {
    background: #f8f8f8;
    color: #2c2c2c;
    text-align: center;
}

.contact-section .section-title-2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c2c2c;
    margin-bottom: 40px;
    font-weight: 300;
    position: relative;
}

.contact-section .section-title-2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
}

.contact-info {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 4px solid #d4af37;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 400;
}

.contact-info p {
    color: #2c2c2c;
    margin-bottom: 15px;
}

.contact-info a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info .refund-policy {
    color: #666;
    font-style: italic;
    margin-top: 20px;
}

/* Events Section - Matching Hero Style */
.upcoming-events {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23d4af37;stop-opacity:1" /><stop offset="100%" style="stop-color:%23f4e4bc;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23bg)"/><circle cx="300" cy="200" r="150" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="600" r="200" fill="rgba(255,255,255,0.05)"/></svg>') center/cover;
    padding: 80px 0;
    position: relative;
}

.upcoming-events .container {
    position: relative;
    z-index: 2;
}

.upcoming-events .section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 300;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.upcoming-events .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
}

.upcoming-events .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    font-style: italic;
    font-weight: 300;
}

.upcoming-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.upcoming-info {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.upcoming-info h3 {
    color: #d4af37;
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 25px;
}

.upcoming-description {
    color: #ffffff;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
}

.age-groups-box {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-left: 4px solid #d4af37;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: center;
}

.age-groups-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.age-groups-list {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
}

.call-to-action {
    text-align: center;
    margin: 30px 0;
}

.call-to-action-text {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.dates-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-style: italic;
    font-weight: 300;
}

.facebook-link {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #2c2c2c;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Georgia', serif;
}

.facebook-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f4e4bc, #d4af37);
    color: #2c2c2c;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 1rem;
        line-height: 1.1;
    }
    
    .hero-content {
        padding: 1rem 15px;
        margin-top: 1rem;
    }
    
    .hero-section {
        min-height: 100vh;
        padding: 1rem 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 2rem;
    }
    
    .event-details {
        margin: 1.5rem auto;
        padding: 20px;
        max-width: 90%;
    }
    
    .button-container {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title, .section-title-2 {
        font-size: 2.2rem;
    }
    
    .ticket-widget-container {
        padding: 15px;
        margin-top: 1.5rem;
        max-width: 90%;
        margin-bottom: 2rem;
    }
    
    .ticket-widget-container h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .tt-widget {
        margin-bottom: 15px;
    }
    
    .widget-info-text {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    /* Mobile responsive for upcoming events */
    .upcoming-events {
        padding: 60px 0;
    }
    
    .upcoming-info {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .age-groups-box {
        padding: 20px;
        margin: 20px 0;
    }
    
    .facebook-link {
        padding: 12px 25px;
        font-size: 0.9rem;
        margin-top: 20px;
    }
}