﻿/* Base styles */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f0f4f7;
    margin: 0;
    padding: 0;
    color: #333;
}

.header-event {
    background-color: #0056b3;
    color: #FFFFFF;
    padding: 12px;
    margin:0px;
    text-align: center;
    font-weight: 700;
    font-size: 1.6em;
}

.event-details {
    text-align: center;
    padding: 0px;
    color: #efefef;
    font-size: .5em;
}

.head-link {
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
}

.head-link-selected {
    font-weight: 500;
    color: #bcbcbc;
    text-decoration: none;
}

.header-entry {
    background-color: #fff;
    padding: 12px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}


.hamburger-menu {
    font-size: 24px;
    cursor: pointer;
}

.event-category h2 {
font-size:2em;
font-weight:600;
} 

.logo {
    height: 50px; /* Adjust as needed based on actual logo size */
}

.container {
    padding: .5rem;
}

.page-title {
    text-align: center;
}

.event-category {
    background-color: #FFF;
    padding: 6px;
    /* margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.event {
    padding: 0px;
    border-bottom: 1px solid #eaeaea;
}

.event:last-child {
    border-bottom: none;
}

.event-title {
    font-size: 1.1em;
    font-weight:600;
    color: #0056b3; /* Dark blue from the logo */
    margin-bottom: 3px;
}

.event-subheader {
    font-size: .85em;
    color: #666;
	font-weight:600;
    margin-bottom: 3px;
}

.event-info {
    font-size: .8em;
    margin-bottom: 3px;
}

.event-link, .cta-button {
    color: #0056b3;
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid #0056b3;
    border-radius: 5px;
    font-size: .9em;
    display: inline-block;
    margin-right: 10px;
    margin-top: 10px;
margin-bottom:10px;
font-weight:500;
}

.event-link:hover, .cta-button:hover {
    background-color: #0056b3;
    color: #ffffff;
}

.event-link:hover, .cta-button:hover {
    background-color: #0056b3;
    color: #ffffff;
}

/* Assuming orange as the accent color for CTA buttons */
.cta-button {
    background-color: #f5a623; /* Vibrant orange */
    color: #ffffff;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: .9em;
    display: inline-block;
    margin-right: 10px;
}

.cta-button:hover {
    background-color: #cc8400;
}

@media screen and (min-width: 768px) {
    .event {
        display: block;
        padding: 0px 20px 20px 20px;
    }

    .event-subheader, .event-info {
        margin-bottom: 6px;
    }

    .event-actions {
        text-align: right;
    }
}

@media screen and (min-width: 1024px) {
    .event-category {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }

    .event {
        border: none;
        padding-left: 0px 20px 20px 20px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}
