/* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(90deg, #000000, #1a1a1a);
    color: white;
    padding-top: 100px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black;
    z-index: 10;
    padding: 10px -10px;
}

header .logo img {
    height: 60px;
}

header nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: #9b59b6;
}

/* Book Tickets Section */
.book-tickets {
    text-align: center;
    padding: 50px 20px;
}

.book-tickets h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}
.book-now {
    background: #9b59b6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .book-now:hover {
    background: #6c3483;
  }
  

/* Events List */
.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.event-card {
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.event-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.event-card h2 {
    color: #9b59b6;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.event-card p {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.event-card .book-now {
    background: #9b59b6;
    border: none;
    color: white;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.event-card .book-now:hover {
    background: #8e44ad;
}

.event-card .pdf-download {
    display: inline-block;
    margin-top: 10px;
    color: #9b59b6;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.event-card .pdf-download:hover {
    color: #d2b4de;
}

/* Footer */
footer {
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
    backdrop-filter: blur(5px);
}
