body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.hero {
    background: url('../images/club-banner.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero .btn {
    background: #ff0044;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.events {
    padding: 50px 20px;
    text-align: center;
}

.events-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.event {
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 250px;
    padding: 10px;
}

.event img {
    width: 100%;
    border-radius: 5px;
}

form {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f9f9f9;
}

form input, form select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form input[type="submit"] {
    background: #ff0044;
    color: white;
    border: none;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background: #e6003a;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    width: 250px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    background: #fff;
}

.gallery-item img {
    width: 100%;
    display: block;
}

.gallery-item p {
    padding: 10px;
    font-size: 0.9rem;
}


.back-btn {
    display: block;
    width: max-content;
    margin: 0 auto 30px auto;
    padding: 10px 20px;
    background-color: #8A2BE2;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
    }


    .back-btn:hover {
    background-color: #b056ff;
    transform: translateY(-2px);
    }
