/* Style Sheet: style.css */

/* --- Variables and Reset --- */
:root {
    --color-primary: #FFDA00; /* Vibrant Yellow from Flyer */
    --color-secondary: #000000; /* Black */
    --color-text: #FFFFFF; /* White */
    --font-heading: 'Impact', 'Arial Black', sans-serif; /* Bold Font */
    --font-body: 'Arial', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    background-color: var(--color-secondary);
    color: var(--color-text);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.5em;
}

h1 { font-size: 3em; color: var(--color-primary); }
h2 { 
    font-size: 2.5em; 
    border-bottom: 4px solid var(--color-primary); 
    padding-bottom: 5px;
    font-family: var(--font-body); /* Use a softer font */
    text-transform: none; /* Make it sentence case */
}
h3 { 
    font-size: 1.8em; 
    text-transform: none; 
    font-family: var(--font-body); /* Use a softer font */
}

/* --- Navigation --- */
header {
    background-color: var(--color-secondary);
    padding: 1em 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
/* Add this to the header's container */
header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li a {
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    padding: 0.5em 1em;
    transition: color 0.3s, background-color 0.3s;
}

nav ul li a.active,
nav ul li a:hover {
    color: var(--color-secondary);
    background-color: var(--color-primary);
}

.logo a {
    font-size: 2em;
    font-family: var(--font-heading);
    color: var(--color-primary);
    text-decoration: none; 
}

.logo img {
    height: 50px; /* Adjust this value to resize your logo */
    width: auto;
}

/* --- Ticket Banner --- */
.ticket-banner {
    background-color: var(--color-primary);
    padding: 0.8em 0;
    text-align: center;
}

.ticket-banner a {
    color: var(--color-secondary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5em;
    text-transform: uppercase;
    display: block;
    transition: background-color 0.3s, color 0.3s;
}
.ticket-banner a:hover {
    background-color: #ffe54c; /* Slightly lighter yellow */
}
/* --- Hero Section --- */
.hero {
    /* Styling removed to accommodate a full-width banner image */
    line-height: 0; /* Prevents extra space below the image */
}
 .hero img {
    width: 100%;
    height: auto;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 2em;
}

.cta-button {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    text-decoration: none;
    text-transform: uppercase;
    padding: 15px 30px;
    font-weight: bold;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #333;
    color: var(--color-primary);
}

/* --- Sections --- */
section {
    padding: 40px 0;
}

.about-section {
    background-color: #111;
}

/* --- Slideshow --- */
.slideshow-container {
    max-width: 800px;
    position: relative;
    margin: 30px auto;
    overflow: hidden;
    border-radius: 8px;
}

.slide {
    display: none; /* Hidden by default */
}

.slide img {
    vertical-align: middle;
    width: 100%;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}


/* --- Footer --- */
footer {
    background-color: var(--color-secondary);
    color: #999;
    padding: 2em 0;
    border-top: 3px solid var(--color-primary);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 1em;
}

.social-links {
    display: flex;
    gap: 20px; /* Adds space between icons */
    justify-content: center;
}

.social-links a {
    display: inline-block; /* Helps with alignment */
    transition: transform 0.2s;
}

.footer-section h4 {
    color: var(--color-primary);
    margin-bottom: 0.5em;
}

.social-links img {
    height: 32px; /* Adjust size of the icons */
    width: auto;
}
.social-links a:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

/* --- New Styles for Events Page --- */

.events-section {
    background-color: #111; /* Dark background for contrast */
}

.event-card {
    display: flex;
    background-color: var(--color-secondary);
    border: 3px solid var(--color-primary); /* Yellow border */
    margin: 40px 0;
    padding: 20px;
    align-items: flex-start;
    gap: 30px;
}

.poster-container {
    flex: 0 0 300px; /* Fixed width for poster area */
    max-width: 300px;
    overflow: hidden;
}

.event-poster {
    width: 100%;
    height: auto;
    display: block;
}

.event-details {
    flex-grow: 1;
}

.event-type {
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
}

.event-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
    padding-top: 10px;
    border-top: 1px dashed #444;
}

.ticket-button {
    margin-top: 20px;
    display: inline-block;
}

/* Past events */
.past-events-list h4 {
    color: var(--color-primary);
    margin-top: 20px;
}

.past-events-list hr {
    border: 0;
    border-top: 1px solid #333;
    margin: 10px 0 20px 0;
}

/* --- Media Query for smaller screens --- */
@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
    }
    .poster-container {
        flex-basis: auto; /* Allow the container to size naturally */
        max-width: 100%;
        margin-bottom: 20px;
    }
    .event-info-grid {
        grid-template-columns: 1fr;
    }
    nav ul {
        flex-wrap: wrap; /* Allow items to wrap on very small screens */
        gap: 5px; /* Keep a small gap */
    }
    nav ul li a {
        padding: 0.5em 0.8em;
    }
}