body {
    background-color: #000000;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: black;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo{
    margin-left: 50px;
}


nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    transition: color 0.3s;
    color: white;
    font-size: 18px;
}

nav a:hover {
    color: #ff4500;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5em;
    color: white;
}
 .events {
    padding: 10px 20px;
    background-color: #000000;
     color:white;
}
.events h2{
    text-align:center;
    margin-left: 50px;
    margin-bottom: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif ;
    font-size: 23px;
    
}

.event-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-left: 50px;
    margin-top: 40px;
}
 .event-card {
    background: #000000;
    padding: 5px;
     height: 320px;
     position:relative;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 5px 19px 4px rgb(255, 255, 255,0.5);
    transition: transform 0.3s;
}
.event-card:hover {
    transform: translateY(-10px);
}
.event-card p{
    margin: 0;
    padding: 0px 0px 0px 5px;
}
.event-card h3{
    padding: 0px 0px 0px 5px;
    margin: 0px;
}
.event-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 14px rgb(173, 173, 173,0.5);
}
a{
    text-decoration: none;
    color:white;
}
.event-card button {
    margin-top: 10px;
    padding: 10px 20px;
    background: #000000;
    border: solid white 1px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
    position: absolute;
    bottom:10px;
    left: 10px;
    
}
.event-card h3{
    font-size: 16px;
}
.event-card p{
    color: #ffffff;
}
.event-card a:hover{
    color: black;
}
.event-card button:hover {
    background: #ffffff;
    border: solid black 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #111;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 10px;
    }

.nav-links li {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
    }
}

