/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #2a2a2a;
    color: #fff;
    transition: background-color 0.3s ease;
}

header h1 {
    font-size: 2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

header h1:hover {
    transform: scale(1.05);
    color: #ff9c00;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
    color: #ff9c00;
    transform: scale(1.1);
}

.events-list {
    padding: 2rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
    transition: color 0.3s ease;
}

h2:hover {
    color: #ff9c00;
}

.event-item {
    background-color: #f7f7f7;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.event-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.event-item h3 {
    font-size: 1.5rem;
    color: #f7a700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.event-item h3:hover {
    color: #ff9c00;
}

.event-item p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.event-item p:hover {
    color: #555;
}

/* Event Details Section */
.event-details {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #e8e8e8;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.event-details:hover {
    transform: scale(1.02);
    background-color: #dcdcdc;
}

.event-details ul {
    list-style: none;
    padding: 0;
}

.event-details li {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
    transition: color 0.3s ease;
}

.event-details li:hover {
    color: #ff9c00;
}

@media screen and (max-width: 768px) {
    .event-item h3 {
        font-size: 1.25rem;
    }

    .event-item p {
        font-size: 0.95rem;
    }

    .event-details li {
        font-size: 1rem;
    }
}
