@charset "utf-8";

@import url("general.css?version=2024-11-03");

.fixed-header {
    width: 100%;
    position: sticky;
    margin: 0;
    background: inherit;
}

.fixed-header {
    top: 0;
}

.clear-fix::after {
    content: "";
    display: block;
    clear: both;
}

.header-style {
    /* background-color: teal; */
    font-family: 'Lucida Calligraphy', Verdana, sans-serif;
    font-weight: bold;
    font-size: 48pt;
    text-align: center;
    color: #f8f5f2;
    /* padding-top: 15px; */
    /* padding-bottom: 15px; */
}

nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 15px;
    justify-content: flex-start;
}

nav a {
    text-decoration: none;
    margin: 0.25em;
    padding: 20px 5px;
}

a:link, a:visited {
    color: gainsboro;
}

a:hover {
    color: white;
}

.contact-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;    
}

.contact-info {
    display: inline-block;
    color: rgb(0, 0, 0);
    font-size: 10pt;
    font-weight: bold;
}

.section-heading {
    /* color: #319dad; */
    color: #006c84;
    font-size: 16pt;
}

.event-name {
    text-align: center;
    font-size: 14pt;
    background-color: #000000;
    color: yellowgreen;
    margin-top: 0px;
}

.no-style-listitem {
    list-style-type: none;
}

.custom-listitem {
    list-style-type: disc;
    color: mediumblue;
    padding-bottom: 5px;
    padding-right: 10px;
}

.card-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 20px;
}

.card {
    display: flex;
    flex-direction: column;
    width: 14rem;
    align-items: center;
    justify-content: space-between;
    background-color: #fcfcfa;
    border: 2px solid #7e7d7cee;
    margin-right: 20px;
    margin-bottom: 20px;
}

.card-heading {
    font-size: 14pt;
    font-weight: bold;
    
    color: #319dad;
}

.card-img {
    margin-top: 10px;
    width: 100px;
}

.card-text {
    margin: 20px 20px 0px 20px;
    color: #e6a263;
}

.card-price {
    margin: 14px;
    font-size: 15pt;
    color: #000000;
}

#map {
    width: "600";
     height: "450";
}

.custom-table {
    border: 2px solid #7e7d7cee;
}

#important-note {
    font-size: 20pt;
    font-weight: bold;
    background-color: #000000;
    color: limegreen;
    text-align: center;
    padding: 4px;
}

@media (max-width: 480px) {
    .header-style {
        font-size: 24pt;
        margin-block-end: 0.3em;
    }
 
    .contact-container {
        display: block;
    }

    .contact-container ul {
        margin-block: 0;
        text-align: right;
    }

    .contact-info {
        padding-right: 10px;
        font-size: 8pt;
    }

    .card-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .card {
        width: 12rem;
    }

    #important-note {
        font-size: 14pt;
    }
}