@font-face {
    font-family: Cinzel;
    src: url('../fonts/cinzel/Cinzel-Regular.ttf');
}

@font-face {
    font-family: Cinzel;
    src: url('../fonts/cinzel/Cinzel-SemiBold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: Poppins;
    src: url('../fonts/poppins/Poppins-Light.ttf');
}

@font-face {
    font-family: Poppins;
    src: url('../fonts/poppins/Poppins-LightItalic.ttf');
    font-style: italic;
}

@font-face {
    font-family: Poppins;
    src: url('../fonts/poppins/Poppins-SemiBold.ttf');
    font-weight: bold;
}

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

html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin-block-end: 0;
}

ul[role='list'],
ol[role='list'] {
    list-style: none;
}

body {
    min-height: 100vh;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
button,
input,
label {
    line-height: 1.1;
}

h1,
h2,
h3,
h4 {
    text-wrap: balance;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
    color: currentColor;
}

img,
picture {
    max-width: 100%;
    display: block;
}

input,
button,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

textarea:not([rows]) {
    min-height: 10em;
}

:target {
    scroll-margin-block: 5ex;
}

body {
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: Cinzel, 'Times New Roman', Times, serif;
    text-transform: uppercase;
    line-height: 1.5;
}

html {
    font-size: 100%;
}

h1 {
    font-size: 4.21rem;
    font-weight: 700;
}

h2 {
    font-size: 2.63rem;
    font-weight: 500;
}

h3 {
    font-size: 1.97rem;
    font-weight: 400;
}

h4 {
    font-size: 1.48rem;
    font-weight: 400;
}

h5 {
    font-size: 1.11rem;
    font-weight: 400;
}

small {
    font-size: 0.75rem;
}

@media screen and (min-width: 700px) and (max-width: 1300px) {
    p {
        padding-inline: 1rem;
    }

    h1 {
        font-size: 3.57rem;
    }

    h2 {
        font-size: 2.23rem;
    }

    h3 {
        font-size: 1.66rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 0.9375rem;
    }
}

@media screen and (min-width: 500px) and (max-width: 700px) {
    i {
        padding-inline: 1rem;
    }

    p {
        line-height: 1.4;
        padding-inline: 1rem;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    h4 {
        font-size: 1.333rem;
    }

    h5 {
        font-size: 1rem;
    }
}

@media (max-width: 500px) {
    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.4rem;
    }

    h5 {
        font-size: 1.2rem;
    }
}

/*#region General Styles*/
:root {
    --body-font-family: Poppin, Arial, Helvetica, sans-serif;
    --heading-font-family: Cinzel, 'Times New Roman', Times, serif;
    --background-color: #f5f5f5;
    --primary-color: #ef6c00;
    --secondary-color: #fed7aa;
    --accent-color: #f97316;
    --accent-hover-color: #ff4f3e;
    --light-border-color: #d1d5db;
    --dark-border-color: #171717;
    --dark-text-color: #222222;
    --light-text-color: #f6f6f6;
    --arrow-animation-ease: cubic-bezier(0.2, 1, 0.3, 1);
    --site-width: 1280px;
    --nav-height: 96px;
    --fc-event-border-color: #ef6c00;
    --fc-event-bg-color: #ef6c00;
    --fc-button-bg-color: #333333;
    --fc-button-border-color: #333333;
    --fc-button-hover-bg-color: #111111;
    --fc-button-hover-border-color: #111111;
}

::backdrop {
    background-color: #000000;
    opacity: 0.75;
}

body {
    color: var(--dark-text-color);
    background-color: var(--background-color);
    margin: 0;
}

header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    background-image: url(../images/heroImage.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    box-sizing: content-box;
    border-bottom: 4px solid var(--dark-text-color);
}

main {
    margin-bottom: 4rem;
}

form input,
select,
textarea {
    display: block;
    width: 100%;
    height: 24px;
    padding-block: 1rem;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
    resize: none;
    border: none;
    outline: none;
}

form fieldset {
    border: none;
    padding-bottom: 1.5rem;
}

form fieldset legend {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

form button {
    display: block;
    margin: 1rem auto auto;
    padding-inline: 1.2rem;
    padding-block: 0.6rem;
    font-size: 1.1rem;
    color: var(--dark-text-color);
    background-color: transparent;
    border: 1px solid black;
    font-weight: 300;
    cursor: pointer;
    transition: all ease 0.2s;
}

form button:hover {
    background-color: #ffffff;
}

.container {
    max-width: var(--site-width);
    margin-inline: auto;
}

/*#endregion */

/*#region Component Styles*/
.pricing-container {
    width: 100%;
    margin-top: 1rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--secondary-color);
}

.pricing-header h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-text-color);
}

.pricing-header .hours {
    font-size: 0.9rem;
    color: var(--dark-text-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    padding: 1.5rem;
    border: 2px solid var(--light-border-color);
    text-align: center;
    transition: transform 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-card h5 {
    color: var(--dark-text-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.minimum {
    font-size: 0.9rem;
    color: gray;
}

@media (max-width: 600px) {
}

hr {
    margin-bottom: 3rem;
    margin-top: 0.5rem;
    width: 6rem;
    margin-inline: auto;
    height: 0.2rem;
    border: none;
    background-color: var(--dark-border-color);
    display: block;
    box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 3px;
}

dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--background-color);
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    width: 700px;
}

dialog a {
    color: var(--primary-color) !important;
    text-decoration: none;
}

dialog a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

dialog button {
    background-color: transparent;
    border: solid 1px var(--dark-border-color);
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color ease-out 0.25s;
    width: max-content;
    margin-inline: auto;
}

dialog button:hover {
    background-color: #ffffff;
}

.space-dialog[open] {
    display: flex;
    flex-direction: column;
}

.item-light {
    border: 4px solid var(--light-border-color);
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.item-dark {
    border: 2px solid var(--dark-border-color);
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.multi-select {
    background-color: white;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.multi-select .option {
    display: flex;
    justify-content: space-between;
    padding-inline: 1rem;
}

.multi-select .option:first-of-type {
    padding-top: 0.5rem;
}

.multi-select .option:last-of-type {
    padding-bottom: 0.5rem;
}

.multi-select .option label {
    display: inline-block;
    line-height: 24px;
    cursor: pointer;
}

.multi-select .option label:hover {
    text-decoration: underline;
}

.multi-select .option input[type='checkbox'] {
    display: block;
}

.first-bar-style {
    transform: rotateZ(45deg) translateY(7px) !important;
}

.second-bar-style {
    display: none !important;
}

.third-bar-style {
    transform: rotateZ(-45deg) translateY(-7px) !important;
}


/*#endregion */

/*#region Navigation Menu*/
nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 1.6rem;
}

nav img {
    max-width: 256px;
}

nav #hamburger-menu {
    display: none;
    cursor: pointer;
}

nav #navigation-links {
    list-style: none;
    margin: 0;
    transition: all ease;
    z-index: 10000;
}

nav #navigation-links li {
    display: inline;
    padding: 2rem;
}

nav #navigation-links li a {
    display: inline-block;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all ease 0.2s;
}

nav #navigation-links li a:hover {
    opacity: 0.5;
    transform: scale(1.1);
}

#hamburger-menu {
    display: block;
    cursor: pointer;
    transition: all ease 0.3s;
}

#hamburger-menu span {
    display: block;
    width: 32px;
    height: 2px;
    margin-block: 0.5rem;
    background-color: black;
    transition: all ease 0.3s;
}

/*#endregion */

/*#region Home Hero Main Content*/
header section {
    margin-inline: auto;
}

header section h1 {
    max-width: 100%;
    margin-inline: auto;
    line-height: 1.25;
    letter-spacing: 4px;
}

header section p {
    max-width: 50rem;
    margin-inline: auto;
}

header section div {
    text-align: center;
}

header section div .hero-button {
    margin-top: 2rem;
    margin-inline: auto;
}

.hero-button {
    cursor: pointer;
    max-width: fit-content;
    border: 1px solid var(--dark-text-color);
    transition: all ease 0.2s;
}

.hero-button:hover {
    background-color: #ffffff;
}

.hero-button a {
    font-size: 1.15rem;
    font-weight: 300;
    display: block;
    padding-inline: 1.75rem;
    padding-block: 0.7rem;
    text-decoration: none;
}

/*#endregion*/

/*#region Home Arrow Container*/
header .arrow-container {
    height: var(--nav-height);
    margin-inline: auto;
}

.arrow-container svg {
    margin: 0 2rem;
    cursor: pointer;
    overflow: visible;
    display: block;
    opacity: 0.2;
    transition: all ease 0.3s;
}

.arrow-container svg:hover {
    width: 64px;
    height: 64px;
    opacity: 1;
}

.arrow-container svg:active {
    opacity: 1;
}

.arrow-container svg polygon,
div svg path {
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.arrow-container svg polygon,
div svg path {
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.arrow-container svg .arrow {
    animation: arrow-anim 2s cubic-bezier(0.2, 1, 0.3, 1) infinite;
}

.arrow-container svg .arrow-fixed {
    animation: arrow-fixed-anim 2s cubic-bezier(0.2, 1, 0.3, 1) infinite;
}

@keyframes arrow-anim {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    5% {
        transform: translateX(-0.1rem);
    }
    100% {
        transform: translateX(1rem);
        opacity: 0;
    }
}

@keyframes arrow-fixed-anim {
    5% {
        opacity: 0;
    }
    20% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

/*#endregion */

/*#region About Us*/
#about-us {
    padding-top: 2.5rem;
    margin-top: 0.5rem;
}

#about-us h2 {
    text-align: center;
}

#about-us .about-us-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-inline: 1rem;
    gap: 64px;
}

#about-us .about-us-content p {
    max-width: 592px;
}

#about-us .about-us-content img {
    width: 100%;
    max-width: 592px;
    height: 100%;
    border: 2px solid var(--dark-border-color);
}

/*#endregion*/

/*#region Event Previews*/
#event-previews {
    width: 100vw;
    margin-top: 7rem;
    padding-inline: 1rem;
    padding-block: 3rem;
    background-image: url(../images/eventPreview.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#event-previews .event-wrapper {
    width: fit-content;
    margin-inline: auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

#event-previews .event-content-wrapper {
    text-align: center;
    max-width: 675px;
}

#event-previews .event-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 2rem;
}

/*#endregion*/

/*#region Our Partners*/
#our-partners {
    padding-top: 2rem;
    margin-top: 4rem;
}

#our-partners h2 {
    text-align: center;
}

.partner-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-inline: 1rem;
    gap: 32px;
}

.partner-entry {
    max-width: 394px;
    padding: 1rem;
    background-color: #ffffff;
}

.partner-entry h3 {
    font-size: 1.35rem;
    text-align: center;
    border-bottom: 1px solid var(--dark-text-color);
    padding-bottom: 0.6rem;
    margin-bottom: 0.5rem;
}

.partner-entry p:last-of-type {
    margin-top: 0.7rem;
    padding-top: 0.7rem;
    font-size: 1.05rem;
    text-align: center;
    border-top: 1px dashed var(--light-border-color);
}

.partner-entry a {
    color: var(--primary-color);
    text-decoration: none;
}

.partner-entry a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/*#endregion*/

/*#region Partnering Options*/
#partner-options {
    margin-top: 6rem;
}

#partner-options h2 {
    text-align: center;
}

#partner-options .options-wrapper {
    display: flex;
    margin-top: 1.5rem;
    justify-content: center;
    padding-inline: 1rem;
    flex-wrap: wrap;
    gap: 24px;
}

#partner-options .options-wrapper .partnership-entry {
    width: 400px;
    padding: 1rem 1rem 5.5rem;
    text-align: center;
    position: relative;
}

#partner-options .options-wrapper .partnership-entry h3 {
    border-bottom: 1px solid var(--dark-border-color);
    font-size: 1.6rem;
    padding-bottom: 0.5rem;
}

#partner-options .options-wrapper .partnership-entry p {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #999999;
}

#partner-options .options-wrapper .partnership-entry ul {
    text-align: left;
    list-style: none;
}

#partner-options .options-wrapper .partnership-entry ul li svg {
    fill: var(--primary-color);
    vertical-align: middle;
    margin-right: 0.25rem;
}

#partner-options .options-wrapper .partnership-entry .learn-more-button {
    position: absolute;
    left: 33.5%;
    bottom: 0;
    margin-bottom: 2rem;
}

#partner-options .options-wrapper .partnership-entry .learn-more-button a {
    text-decoration: none;
    padding: 0.6rem 1.1rem;
    color: #999999;
    border: 1px solid var(--light-border-color);
}

#partner-options .options-wrapper .partnership-entry .learn-more-button a:hover {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/*#endregion*/

/*#region Daily Verse*/
#daily-verse {
    display: flex;
    padding-block: 2.5rem;
    margin-top: 8rem;
    background-color: var(--secondary-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
}

#daily-verse svg {
    opacity: 0.3;
}

#daily-verse #daily-verse-content {
    font-family: var(--heading-font-family), serif;
    max-width: 900px;
    line-height: 43px;
    letter-spacing: -2px;
    text-transform: uppercase;
    font-size: 2.1875rem;
}

#daily-verse #daily-verse-citation {
    font-family: var(--body-font-family), serif;
    font-size: 1rem;
    text-transform: uppercase;
}

/*#endregion*/

/*#region Other Services*/
#other-services {
    padding-top: 8rem;
}

#other-services h2 {
    text-align: center;
}

#other-services .services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-inline: 1rem;
    gap: 32px;
}

#other-services .services-container .service-entry {
    max-width: 375px;
}

#other-services .services-container .service-entry h3 {
    text-align: center;
    margin-top: 1rem;
}

/*#endregion*/

/*#region Contact Us*/
#contact-us {
    padding-top: 6rem;
}

#contact-us h2 {
    text-align: center;
}

#contact-us a {
    color: var(--primary-color);
    text-decoration: none;
}

#contact-us a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

#contact-us .contact-wrapper {
    display: flex;
    margin-top: 2rem;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-inline: auto;
}

#contact-us .contact-wrapper form {
    padding-inline: 1rem;
    margin-top: 1rem;
    flex-grow: 1;
}

#contact-us .contact-wrapper form h3 {
    text-align: center;
}

#contact-us .contact-wrapper .contact-links {
    margin-top: 1rem;
    padding-inline: 1rem;
    flex-grow: 1;
}

#contact-us .contact-wrapper .contact-links h3 {
    text-align: center;
}

#contact-us .contact-wrapper .contact-links .link-entry {
    display: flex;
    gap: 0.3rem;
    flex-direction: column;
    margin-block: 1rem;
}

#contact-us .contact-wrapper .contact-links .link-entry svg {
    display: block;
    margin: auto;
}

#contact-us .contact-wrapper .contact-links .link-entry a {
    text-align: center;
}

/*#endregion*/

/*#region Events*/
.event-calendar {
    margin-top: 3rem;
}

.event-calendar h1 {
    text-align: center;
}

.event-calendar .calendar-container {
    position: relative;
    width: 100%;
    margin-inline: auto;
    padding-top: 75%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}

.event-calendar .calendar-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*#endregion*/

/*#region Bookings*/
.booking-intro {
    margin-top: 3rem;
    padding-inline: 1rem;
}

.event-booking {
    margin-top: 3rem;
}

.event-booking h2 {
    text-align: center;
}

.event-booking #event-booking-form {
    padding-inline: 1rem;
}

.event-booking #event-booking-form input {
    margin-bottom: 1rem;
}

.event-booking #event-booking-form textarea {
    margin-bottom: 1rem;
}

.event-booking #event-booking-form input[type='checkbox'] {
    margin: 0;
    width: 24px;
    height: 24px;
}

.booking-intro h1 {
    text-align: center;
}

/*#endregion*/

/*#region Spaces & Rates*/
.spaces-and-rates {
    margin-top: 3rem;
}

.spaces-and-rates h1 {
    text-align: center;
}

.spaces-list {
    width: 100%;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    margin-inline: auto;
    gap: 2.5rem;
}

.space-entry {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
}

.space-entry img {
    width: 100%;
    background-color: lightgray;
    max-width: 615px;
}

.space-entry .space-content {
    max-width: 615px;
    display: flex;
    flex-direction: column;
}

.space-entry .space-content h3 {
    border-bottom: 1px dashed var(--dark-border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.space-entry .space-content i {
    margin-bottom: 0.25rem;
}

.space-entry .space-content .learn-more-button {
    margin-top: auto;
    margin-bottom: 0.55rem;
}

.space-entry .space-content .learn-more-button a {
    text-decoration: none;
    padding: 0.6rem 1.1rem;
    color: gray;
    border: 1px solid gray;
}

.space-entry .space-content .learn-more-button a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.spaces-table {
    margin-top: 2rem;
}

.spaces-table td {
    text-align: center;
}

/*#endregion*/

/*#region Footer*/
footer {
    padding-block: 1.75rem;
    border-top: 3px solid var(--dark-border-color);
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
}

footer .container {
    color: var(--dark-text-color);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

footer .container a {
    text-decoration: none;
    border-bottom: 2px solid var(--dark-border-color);
    padding-bottom: 0.2rem;
    padding-inline: 0.4rem;
    font-size: 1.15rem;
}

footer .container a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/*#endregion*/

/*#region Login*/
#back-link {
    position: absolute;
    width: 64px;
    height: 64px;
    top: 8%;
    left: 8%;
    opacity: 0.2;
    fill: var(--dark-text-color);
    transition: all ease 0.3s;
}

#back-link:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

.login-wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/whiteTexture.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.login-panel {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(3px);
    border: 1px solid var(--dark-border-color);
    margin-inline: 1rem;
    padding: 1rem 2rem 1.5rem 2rem;
    color: var(--dark-border-color);
}

.login-panel h1 {
    text-align: center;
}

.login-panel button {
    margin-top: 0;
    padding: 0.8rem 1.7rem;
    border-color: var(--dark-text-color);
    color: var(--dark-text-color);
}

.login-panel button:hover {
    border-color: var(--dark-text-color);
    background-color: #ffffff;
}

#login-form input {
    border: 1px solid var(--dark-border-color);
}

/*#endregion*/

/*#region Partner-Session*/
.fc .fc-daygrid-event-harness:hover {
    cursor: pointer;
}

.partner-event-list,
.partner-calendar,
.partner-booking h2 {
    text-align: center;
    padding-top: 2rem;
    margin-top: 4rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.modal-actions {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 0.5rem;
}

#edit-modal .modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: 80%;
    max-width: 600px;
    height: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    background-color: white;
    padding: 20px;
}

#edit-event-form button {
    display: unset;
    margin: 0.25rem 0 0;
    padding: 0.8rem 1.7rem;
}

#edit-event-form label {
    display: block;
    text-align: left;
    margin-block: 1rem;
    font-weight: bold;
}

#edit-event-form label input {
    margin-top: 0.3rem;
    padding: 0;
}

#edit-event-form label textarea {
    margin-top: 0.3rem;
    padding: 0;
}

#edit-event-form label textarea:not([rows]) {
    min-height: 75px;
    overflow-x: hidden;
    overflow-y: auto;
    resize: vertical;
}

#edit-event-form input[type='checkbox'] {
    display: block;
    margin-top: -0.4rem;
    width: 24px;
}

.popover {
    display: none;
    position: absolute;
    border: 2px solid var(--light-border-color);
    background-color: #fff;
    padding: 15px;
    max-width: 420px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    overflow: auto;
}

.popover #popover-content {
    margin-bottom: 10px;
}

.popover h4 {
    text-align: center;
}

.popover p {
    margin-block: 0.25rem;
    text-align: left;
}

.popover .popover-actions {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 0.5rem;
}

#calendar {
    margin: 0 auto;
}

/*#endregion*/

/*#region Media Queries*/
@media screen and (max-width: 425px) {
    .popover .popover-actions {
        flex-direction: column;
    }

    .modal-actions {
        flex-direction: column;
    }
}

@media screen and (max-width: 800px) {
    #contact-us p {
        padding-inline: 1rem;
    }

    .partner-list-event-wrapper {
        padding-inline: 1rem;
    }

    .event-calendar .calendar-container {
        padding-bottom: 50%;
    }

    #partner-options .options-wrapper .partnership-entry ul {
        font-size: 0.875rem;
    }

    #partner-options .options-wrapper .partnership-entry ul li svg {
        margin-right: 0;
    }

    #daily-verse #daily-verse-content {
        padding-inline: 1rem;
    }

    .spaces-intro p {
        padding-inline: 1rem;
    }

    footer .container {
        flex-direction: column;
        gap: 0.5rem;
    }

    #event-previews {
        padding-block: 1rem;
    }

    header section h1 {
        letter-spacing: 0;
    }

    #event-previews {
        background-attachment: scroll;
    }

    #calendar {
        height: 90vh;
    }

    .fc .fc-toolbar {
        display: block;
    }

    .fc .fc-toolbar .fc-toolbar-chunk {
        text-align: center;
    }

    .fc .fc-toolbar-title {
        font-size: revert;
        margin-bottom: 0.5rem;
    }

    .popover h4 {
        font-size: 1.5rem;
    }

    .partner-event-entry p:first-of-type {
        height: 100%;
        overflow: visible;
    }

    .partner-event-entry p:last-of-type {
        height: 100%;
        overflow: visible;
    }

    #user-delete-form {
        padding-inline: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 1rem;
    }

    #event-previews .event-button-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    #contact-us .contact-wrapper .contact-links .link-entry a {
        font-size: 0.97rem;
    }

    .partner-event-entry button {
        font-size: 0.9rem;
    }

    #edit-modal .modal-content {
        width: 90%;
    }
}

@media screen and (max-width: 945px) {
    nav {
        justify-content: space-between;
        padding-inline: 7%;
    }

    nav #hamburger-menu {
        display: block;
    }

    nav #navigation-links {
        position: absolute;
        width: 75%;
        height: 100%;
        background-color: var(--light-text-color);
        top: 0;
        left: -100%;
        transition: left 0.5s ease;
    }

    nav #navigation-links.active {
        left: 0;
    }

    nav #navigation-links li {
        display: block;
        padding-block: 1.25rem;
    }

    nav #navigation-links li:nth-child(even) {
        background-color: #ebebeb;
    }

    nav #navigation-links li a {
        font-size: 1.2rem;
    }

    #encompass-logo {
        max-width: 200px;
    }

    header section div {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        margin: 0 auto;
    }

    header section p {
        margin: 0 auto;
        padding-inline: 1rem;
    }

    header section div .button {
        margin: 1.5rem auto 0 auto;
    }
}

@media screen and (max-width: 1280px) {
    .event-calendar .calendar-container {
        max-width: 95%;
        padding-left: 5%;
        padding-right: 5%;
    }

    .space-entry img {
        margin-inline: auto;
        width: 90%;
    }

    .space-entry .space-content {
        margin-inline: auto;
        padding-inline: 1rem;
    }

    .space-entry .space-content h3 {
        text-align: center;
        margin-top: 0.6rem;
        font-size: 1.6rem;
    }

    .space-entry .space-content .learn-more-button {
        margin-top: 2rem;
        margin-bottom: 0;
        margin-inline: auto;
    }

    #calendar {
        padding-inline: 1rem;
    }
}

@media screen and (max-width: 1600px) {
    header {
        background-color: white;
        background-image: url(../images/whiteTexture.jpg);
        background-attachment: scroll;
        background-position: center;
        background-size: cover;
    }
}

/*#endregion */
