/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header */
header {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Main content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    background: white;
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

section h2 {
    color: #d32f2f;
    margin-bottom: 1rem;
    font-size: 2rem;
    border-bottom: 3px solid #d32f2f;
    padding-bottom: 0.5rem;
}

/* Hero section */
#hero {
    text-align: center;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border: 3px solid #d32f2f;
}

#hero h2 {
    font-size: 2.5rem;
    color: #b71c1c;
    border: none;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555;
}

/* Button styles */
.button {
    display: inline-block;
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
    background: linear-gradient(135deg, #b71c1c, #d32f2f);
}

/* Image gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.image-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
}

/* Tickets section */
#tickets {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    border-left: 5px solid #4caf50;
}

#tickets p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

#tickets ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

#tickets li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Dates and times section */
#dates-times {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    border-left: 5px solid #ff9800;
}

#dates-times p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    header p {
        font-size: 1rem;
    }
    
    section {
        margin: 1rem 0;
        padding: 1.5rem;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    #hero h2 {
        font-size: 1.8rem;
    }
    
    #hero p {
        font-size: 1.1rem;
    }
    
    .button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.8rem;
    }
    
    .image-gallery img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    main {
        padding: 0 0.5rem;
    }
    
    header {
        padding: 1.5rem 0.5rem;
    }
    
    header h1 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 1rem;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
    
    .image-gallery img {
        height: 180px;
    }
    
    #hero h2 {
        font-size: 1.5rem;
    }
    
    .button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

