:root {
    --clr-darkgreen: #004030;
    --clr-lightgreen: #8c9d52;
    /* --clr-darkgold: #dd9000; */
    --clr-darkgold: #9e5200;
    --clr-gold: #fad163;
    --clr-darkred: #550000;
    --clr-red: #bb0000;
    --clr-darkgrey: #333333;
    --clr-midgrey: #cccccc;
    --clr-lightgrey: #dddddd;
    --clr-light: #ffefdf;
}

* {
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    /* default is 16px this gives 15.56px on a 1080p display and 10.1 on a 300 wide display */
    font-size: calc(8px + .7vw);
}

body {
    font-family: 'Nunito', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: var(--clr-light);
    background-color: var(--clr-darkgrey);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    word-spacing: 1.4px;
}

header {
    background-color: var(--clr-darkgreen);
}

.newLogoBox {
    padding: 1vw;
}

.newLogoBox__inner {
    margin: auto;
    display: flex;
    max-width: clamp(260px, 49vw, 582px);
    align-items: center;
}

.newLogoBox__image {
    width: clamp(50px, 7vw, 150px);
}

.newLogoBox__heading-1 {
    line-height: 1;
    font-size: clamp(20px, 5vw, 49px);
    /* Overriding rules set on the h1 */
    margin: unset;
    /* Overriding rules set on the h1 */
}

.newLogoBox__content {
    display: flex;
    flex: 1;
    gap: 0.5vw;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: auto;
}

.newLogoBox__strapline {
    font-size: clamp(9px, 2vw, 18px);
}

.logo {
    float: left;
    width: 5.6rem;
}

.content {
    flex: 1 0 auto;
    /* min-height below is 100vh - footer height 
           This ensures footer is at bottom of display when insufficient content to require scrolling.*/
    min-height: calc(100vh - 88px);
}

.nav {
    display: flex;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    margin-top: 5px;
    font-weight: lighter;
    border-top: solid 1px;
}

.nav li {
    display: flex;
    padding: 0 13px 0 0;
}

.footer .nav li {}

.nav li a {
    text-decoration: none;
    font-weight: normal;
    padding: 3px;
    color: var(--clr-light);
}

.nav li a:hover {
    color: var(--clr-gold);
}

footer {
    left: 0;
    width: 100%;

    background-color: var(--clr-darkred);
    color: var(--clr-light);
    list-style: none;
    text-align: center;
    padding: 0 0 1.2rem 0;
    /* use height in .content calc() */
    height: 88px;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--clr-darkgreen);
    font-weight: lighter;
    text-align: center;
}

h1 {
    color: var(--clr-light);
    margin-top: 7px;
    margin-bottom: 7px;
    font-size: 2.5rem;
}

h2 {
    margin-top: 6px;
    margin-bottom: 6px;
    font-size: 1.8rem;
}

h3 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 1.6rem;
}

h4 {
    margin-top: 4px;
    margin-bottom: 4px;
    font-size: 1.4rem;
}

p {
    margin-top: 0.5rem;
    margin-left: 0.5rem;
}

ol,
ul {
    padding-left: 0;
    list-style-position: inside;
}

a {
    text-decoration: none;
    color: var(--clr-red);
    padding: 0;
    margin: 0;
}

a:hover {
    color: var(--clr-darkgold);
}

.container {
    width: 100%;
    background-color: var(--clr-darkgrey);
}

.main {
    width: 77%;
    min-width: 290px;
    background-color: var(--clr-light);
    color: var(--clr-darkgreen);
    margin: 14px auto;
    border: solid 7px var(--clr-light);
    border-radius: 5px;
    overflow: auto;

}

.home {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--clr-darkgreen);
    color: var(--clr-light)
}

.inPerson {
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--clr-darkgreen);
    color: var(--clr-light)
}

/* .main {
    background-color: var(--clr-light);
    color: var(--clr-darkgreen);
} */

.item {
    background-color: var(--clr-darkgreen);
    color: var(--clr-light);
    text-align: center;
    width: clamp(300px, 33vw, 700px);
}

.item h2 {
    color: var(--clr-light);
}

.width_100 {
    width: 100%;
}

.imageContainer {
    border: var(--clr-darkgreen) 7px solid;
}

.main__img {
    width: 100%;
}

.eventBox {
    width: 90%;
    border: var(--clr-gold) 7px solid;
    border-radius: 7px;
    margin: 3px auto;

    background-color: var(--clr-gold);
    /* color: var(--clr-darkgreen); */

    background: linear-gradient(120deg,
            #dd9d13, /* darker */
            #dd9d13,
            var(--clr-gold),
            #f6d365,
            var(--clr-gold),
            var(--clr-light),
            #f6d365,
            #f6c585, /* pinkish */
            var(--clr-gold),
            #dd9d13,
            #dd9d13);
    background-size: 300% 300%;
    animation: gradientAnimation 14s ease infinite;

    text-align: center;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.eventBox h3 {
    font-size: 1rem;
    font-weight: bold;
}

.eventBox h4 {
    font-size: .9rem;
    font-weight: bold;
}

.eventBox p {
    font-size: .8rem;
}

.eventImage {
    width: 100%;
    max-width: 200px;
}

.MrCBackground {
    background-color: var(--clr-darkred);
    /* background-color: #4c150e; */
    background-image: url(/images/IMG_6537_SittingCutout.jpg);
    background-position: bottom right;
    background-repeat: no-repeat;
    min-height: 587px;
    text-align: left;
}

.greenGrad {
    background: linear-gradient(140deg, var(--clr-light) 0%, var(--clr-darkgreen) 100%);
}

.fbreviews {
    margin: 14px auto;
    display: flex;
    border: none;
    overflow: hidden;
    max-width: clamp(49vw, 49vw, 500px);
}

.responsive-iframe-container {
    position: relative;
    padding-bottom: 35%;
    padding-top: 140px;
    overflow: hidden;
}

.responsive-iframe-container iframe,
.vresponsive-iframe-container object,
.vresponsive-iframe-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.funMenuBox {
    margin: auto;
    border: dotted 3px #8c9d52;
    border-radius: 14px;
    width: 70%;
}

.funMenu {
    margin-top: 5px;
    text-align: center;
    list-style: none;
}

.funMenu li {
    display: block;
    margin: 7px auto;
    border: solid 3px var(--clr-midgrey);
    border-radius: 5px;
    background-color: var(--clr-lightgrey);
    width: 70%;
}

.kristos {
    color: var(--clr-lightgreen);
}