/* Basic Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f4f4f4; /* Light background, can be pure white if preferred */
    color: #333; /* Dark gray for general text */
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

a {
    color: #2596be; /* Primary blue for links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    background: #2596be; /* Primary blue for header */
    color: #fff; /* White text for header */
    padding: 1rem 0;
    border-bottom: #1e7ba2 3px solid; /* Slightly darker blue for header border */
}

header h1 {
    float: left;
    margin: 0;
    padding-top: 5px;
}

header nav {
    float: right;
}

header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 15px;
}

header a {
    color: #fff; /* White text for nav links */
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header a:hover {
    color: #e0e0e0; /* Light gray on hover for nav links */
    text-decoration: none;
}

/* Hero Section */
.hero {
    min-height: 400px;
    background: #2596be; /* Primary blue for hero section */
    color: #fff; /* White text for hero */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    color: #fff; /* White text for buttons */
    background: #000; /* Black button background */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.button:hover {
    background: #333; /* Darker gray on hover for buttons */
    text-decoration: none;
}

.button-small {
    display: inline-block;
    color: #fff; /* White text for small buttons */
    background: #000; /* Black small button background */
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.9em;
    transition: background 0.3s ease;
}

.button-small:hover {
    background: #333; /* Darker gray on hover for small buttons */
    text-decoration: none;
}

/* Sections */
section {
    padding: 40px 0;
    margin-bottom: 20px;
}

.events-section {
    background: #fff; /* White background for events section */
    padding-bottom: 60px;
}

.events-section h2, .info-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2596be; /* Primary blue for section titles */
}

.event-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.event-card {
    background: #f9f9f9; /* Off-white for event cards */
    border: 1px solid #e0e0e0; /* Light gray border for cards */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Subtle shadow */
    flex: 1 1 calc(33% - 40px);
    min-width: 280px;
    box-sizing: border-box;
}

.event-card h3 {
    color: #2596be; /* Primary blue for event titles */
    margin-top: 0;
    margin-bottom: 10px;
}

.event-card p {
    margin-bottom: 5px;
    color: #444; /* Slightly lighter black for event text */
}

.info-section {
    background: #e9ecef; /* Light gray for info sections, can be white or a very light blue */
    text-align: center;
    color: #000; /* Black text for info sections */
}

/* Footer */
footer {
    background: #000; /* Black footer background */
    color: #fff; /* White text for footer */
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1,
    header nav {
        float: none;
        text-align: center;
    }

    header nav ul {
        padding-top: 10px;
    }

    header li {
        display: block;
        padding: 5px 0;
    }

    .container {
        width: 95%;
    }

    .hero h2 {
        font-size: 2em;
    }

    .event-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .event-card {
        flex: 1 1 100%;
    }
}