```css
/* =========================================================
   ROOT THEME
========================================================= */

:root {
    --text-main: #ffffff;
    --text-soft: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.7);
    --accent: #f4b400;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   GLOBAL BODY
========================================================= */

body {
    background: url("website photos/tour-privado-angkor-wat.avif")
        center / cover no-repeat fixed;

    min-height: 100vh;
    position: relative;
    color: var(--text-main);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
    pointer-events: none;
}


/* =========================================================
   GLOBAL TYPOGRAPHY
========================================================= */

h1,
h2,
h3 {
    color: var(--text-main);
}

p {
    color: var(--text-soft);
    line-height: 1.8;
}

a {
    color: var(--text-main);
    text-decoration: none;
}

a:hover {
    color: var(--text-muted);
}


/* =========================================================
   NAVBAR
========================================================= */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;

    padding: 14px 0;

    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-container {
    width: 90%;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--text-main);
    font-size: 20px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: var(--text-main);
    font-weight: bold;
    position: relative;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;

    width: 0;
    height: 2px;

    background: var(--accent);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}


/* =========================================================
   HAMBURGER MENU
========================================================= */

.hamburger {
    display: none;

    background: transparent;
    border: none;

    color: #ffffff;
    font-size: 28px;

    cursor: pointer;
}

.nav-links {
    transition: all 0.3s ease;
}


/* =========================================================
   HERO / BANNER
========================================================= */

.banner {
    height: 50vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    position: relative;
}

.banner::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25),
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0)
    );
}

.banner-content {
    position: relative;
    z-index: 2;
    color: var(--text-main);
}

.banner-content h2 {
    font-size: 3rem;
}


/* =========================================================
   MAIN GLASS CONTAINER
========================================================= */

.main-content {
    width: 92%;
    max-width: 1200px;

    margin: 100px auto 60px;

    background: rgba(255, 255, 255, 0.18);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;

    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);

    overflow: hidden;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 60px;

    color: var(--text-soft);
    line-height: 1.8;
}

.section h2,
.section h3 {
    color: var(--text-main);
    text-align: center;
}

.section p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.section strong {
    font-size: 18px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-wrap {
    color: var(--text-soft);
}

.about-img-right {
    float: right;

    width: 340px;
    max-width: 45%;

    margin: 0 0 20px 25px;

    border-radius: 15px;
    object-fit: cover;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.about-wrap::after {
    content: "";
    display: block;
    clear: both;
}


/* =========================================================
   BLOCKQUOTE
========================================================= */

blockquote {
    border-left: 4px solid var(--accent);

    padding-left: 20px;
    margin: 20px 0;

    font-style: italic;
    color: var(--text-soft);
}

blockquote footer {
    margin-top: 10px;

    font-style: normal;
    font-weight: bold;

    color: var(--text-main);
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-frosted {
    margin-top: 20px;
    padding: 20px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, 0.25);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;
    gap: 20px;
}

.gallery-item {
    width: 220px;
}

.gallery-item img {
    width: 100%;
    height: 220px;

    object-fit: cover;
    border-radius: 12px;
}


/* =========================================================
   LIBRARY DROPDOWNS
========================================================= */

.library-category {
    margin: 20px 0;
}

.dropdown-btn {
    width: 100%;

    padding: 18px 25px;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);

    border: none;
    border-radius: 12px;

    color: var(--text-main);

    font-size: 1.2rem;
    font-weight: bold;

    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-content {
    display: none;
    flex-direction: column;

    margin-top: 10px;

    border-radius: 12px;
    overflow: hidden;
}

.dropdown-content a {
    padding: 15px 20px;

    background: rgba(255, 255, 255, 0.12);

    color: var(--text-soft);

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--text-main);
}

.dropdown-content.show {
    display: flex;
}


/* =========================================================
   NESTED DROPDOWNS
========================================================= */

.nested-dropdown {
    margin-top: 10px;
}

.nested-btn {
    width: 100%;

    padding: 10px;

    background: rgba(255, 255, 255, 0.2);

    border: none;

    color: var(--text-main);
    font-weight: bold;

    display: flex;
    justify-content: space-between;
}

.nested-content {
    display: none;
    flex-direction: column;

    padding-left: 15px;
}

.nested-content a {
    padding: 8px;
    color: var(--text-soft);
}

.nested-content a:hover {
    color: var(--text-main);
}

.nested-content.show {
    display: flex;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.9);

    display: none;
    justify-content: center;
    align-items: center;

    z-index: 999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;

    border-radius: 12px;
}

.close {
    position: absolute;

    top: 20px;
    right: 30px;

    font-size: 40px;
    color: var(--text-main);

    cursor: pointer;
}

.lightbox-controls {
    position: absolute;

    width: 100%;

    display: flex;
    justify-content: space-between;

    padding: 0 40px;
}

.lightbox-controls span {
    color: var(--text-main);

    font-size: 60px;

    cursor: pointer;

    transition: transform 0.2s ease;
}

.lightbox-controls span:hover {
    transform: scale(1.2);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    text-align: center;

    padding: 25px;

    color: var(--text-main);
}


/* =========================================================
   PAGE BACKGROUNDS
========================================================= */

.home-page {
    background-image: url("website photos/home.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.about-page {
    background-image: url("website photos/about you.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.blog-page {
    background-image: url("website photos/blog 2.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.reading-page {
    background-image: url("website photos/blog.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.gallery-page {
    background-image: url("website photos/about you 8.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}


/* =========================================================
   HOME FEATURED GALLERY
========================================================= */

.home-slideshow {
    max-width: 700px;
    height: 350px;

    margin: 30px auto;

    overflow: hidden;

    border-radius: 20px;

    background: #ffffff;
    padding: 10px;
}

.home-slideshow img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 15px;
}

.gallery-button {
    display: block;

    width: max-content;

    margin: 15px auto 0;

    padding: 10px 25px;

    border-radius: 25px;

    text-decoration: none;
}


/* =========================================================
   CENTERED PHOTO BLOG POST
========================================================= */

.photo-post {
    max-width: 750px;

    margin: 0 auto;

    text-align: center;
}

.photo-post .blog-card-image {
    width: 100%;
}

.photo-post .blog-card-image img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;
}

.photo-post .blog-card-content {
    text-align: center;
}

.photo-post .blog-card-content h3 {
    margin: 0;
    text-align: center;
}


/* =========================================================
   DEVOTIONAL / PRAYER READING MODE
========================================================= */

.reading-page .main-content {
    width: calc(100% - 40px);
    max-width: 920px;

    margin-left: auto;
    margin-right: auto;
    margin-top: 70px;
}

.reading-page .section {
    padding: 65px 85px;
}

.reading-page .section h2:first-child {
    font-size: 2.4rem;

    margin-bottom: 15px;

    letter-spacing: 0.5px;
}

.reading-page .section h3 {
    margin: 45px 0 18px;

    font-size: 1.35rem;
}

.reading-page .subtitle {
    text-align: center;

    font-size: 20px !important;
    line-height: 1.6;

    margin-bottom: 35px;
}

.reading-page p,
.reading-page li {
    font-family: inherit;

    font-size: 18px !important;
    line-height: 1.9 !important;

    letter-spacing: 0.15px;
}

.reading-page p {
    max-width: 760px;

    margin: 0 auto 22px;
}

.reading-page h1,
.reading-page h2 {
    line-height: 1.25;
}

.reading-page strong {
    font-weight: 700;
}

.reading-page blockquote {
    max-width: 750px;

    margin: 35px auto;

    padding: 30px;

    background: rgba(255, 255, 255, 0.12);

    border-left: 4px solid var(--accent);
    border-radius: 12px;

    font-size: 19px !important;
    line-height: 1.8 !important;
    font-style: italic;
}

.reading-page blockquote footer {
    margin-top: 15px;
    text-align: right;

    font-style: normal;
}


/* =========================================================
   CALENDAR PAGE
========================================================= */

.calendar-page {
    min-height: 100vh;
}


/* =========================================================
   CALENDAR INTRO
========================================================= */

.calendar-intro {
    text-align: center;

    max-width: 900px;

    margin: 0 auto 40px;
}

.calendar-intro h3 {
    margin-bottom: 10px;

    font-size: 2.3rem;

    color: #000000 !important;
}

.calendar-intro p {
    color: #000000 !important;

    font-size: 1.05rem;
    line-height: 1.7;

    opacity: 0.85;
}


/* =========================================================
   CALENDAR WRAPPER
========================================================= */

.calendar-wrapper {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 30px;

    background: rgba(255, 255, 255, 0.95);

    border-radius: 22px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);

    color: #000000 !important;

    overflow-x: auto;
}


/* =========================================================
   CALENDAR HEADER
========================================================= */

.calendar-header {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

    margin-bottom: 25px;

    flex-wrap: wrap;
}

.calendar-title-area {
    display: flex;

    align-items: center;

    gap: 12px;

    flex: 1;
}

.calendar-title-area h3 {
    margin: 0;

    font-size: 2rem;

    letter-spacing: 0.5px;

    color: #000000 !important;
}


/* =========================================================
   MONTH / YEAR SELECTORS
========================================================= */

.calendar-selectors {
    display: flex;

    gap: 10px;

    align-items: center;
}

.calendar-selectors select {
    appearance: none;

    padding: 11px 38px 11px 14px;

    border: 1px solid #dddddd;
    border-radius: 10px;

    background-color: #ffffff;

    color: #000000 !important;

    font-size: 0.95rem;
    font-weight: 600;

    cursor: pointer;
    outline: none;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            #555555 50%
        ),
        linear-gradient(
            135deg,
            #555555 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 17px) 50%,
        calc(100% - 12px) 50%;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;

    transition: 0.2s ease;
}

.calendar-selectors select option {
    color: #000000 !important;
    background: #ffffff;
}

.calendar-selectors select:hover,
.calendar-selectors select:focus {
    border-color: #888888;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   CALENDAR CONTROLS
========================================================= */

.calendar-controls {
    display: flex;
    gap: 8px;
}

.calendar-controls button {
    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #222222;

    color: #ffffff;

    cursor: pointer;

    font-size: 1rem;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.25s ease;
}

.calendar-controls button:hover {
    transform: translateY(-2px);

    background: #555555;
}

.calendar-controls button i {
    color: #ffffff;
}


/* =========================================================
   CALENDAR WEEKDAYS
========================================================= */

.calendar-weekdays {
    display: grid;

    grid-template-columns: repeat(7, 1fr);

    border-bottom: 1px solid #dddddd;

    margin-bottom: 5px;
}

.calendar-weekdays div {
    padding: 12px 5px;

    text-align: center;

    font-weight: 700;

    font-size: 0.9rem;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    color: #000000 !important;
}


/* =========================================================
   CALENDAR GRID
========================================================= */

.calendar-grid {
    display: grid;

    grid-template-columns:
        repeat(7, minmax(100px, 1fr));

    gap: 6px;
}

.calendar-day {
    min-height: 120px;

    padding: 10px;

    position: relative;

    background: #ffffff;

    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;

    color: #000000 !important;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.calendar-day:hover {
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.08);
}

.calendar-day.other-month {
    opacity: 0.4;

    background: #f6f6f6;

    color: #000000 !important;
}

.calendar-day.today {
    border: 2px solid #111111;
}


/* =========================================================
   DAY NUMBER
========================================================= */

.day-number {
    width: 30px;
    height: 30px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 6px;

    border-radius: 50%;

    color: #000000 !important;

    font-size: 0.95rem;
    font-weight: 700;
}

.calendar-day.today .day-number {
    background: #222222;

    color: #ffffff !important;
}


/* =========================================================
   CALENDAR EVENTS
========================================================= */

.calendar-event {
    display: flex;

    align-items: center;

    gap: 5px;

    margin-top: 5px;

    padding: 7px 8px;

    border-radius: 8px;

    background: #ffffff;

    border: 1px solid #dddddd;

    color: #000000 !important;

    font-size: 0.78rem;

    line-height: 1.3;

    cursor: pointer;

    overflow: hidden;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.calendar-event:hover {
    transform: translateY(-2px);

    box-shadow:
        0 5px 12px rgba(0, 0, 0, 0.15);
}

.calendar-event i,
.calendar-event span {
    color: #000000 !important;
}

.calendar-event i {
    flex-shrink: 0;

    margin-right: 4px;
}


/* =========================================================
   UPCOMING EVENTS
========================================================= */

.upcoming-section {
    max-width: 1200px;

    margin: 50px auto 0;
}

.upcoming-section h3 {
    margin-bottom: 25px;

    text-align: center;

    font-size: 2rem;

    color: #000000 !important;
}

.event-list {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


/* =========================================================
   EVENT CARDS
========================================================= */

.event-card {
    padding: 24px;

    background: rgba(255, 255, 255, 0.95);

    border: 1px solid rgba(0, 0, 0, 0.06);

    border-radius: 18px;

    color: #000000 !important;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.event-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18);
}

.event-date {
    margin-bottom: 8px;

    color: #000000 !important;

    font-size: 0.85rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    opacity: 0.65;
}

.event-date i {
    color: #000000 !important;
}

.event-card h4 {
    margin: 0 0 10px;

    color: #000000 !important;

    font-size: 1.25rem;
}

.event-card p {
    margin: 6px 0;

    color: #000000 !important;

    line-height: 1.5;
}

.event-card p i,
.event-card i {
    color: #000000 !important;
}

.event-card i {
    width: 20px;
}

.event-details-link {
    margin-top: 18px;

    color: #000000 !important;

    font-size: 0.85rem;
    font-weight: 600;

    opacity: 0.65;
}

.event-details-link i {
    color: #000000 !important;
}


/* =========================================================
   EVENT MODAL
========================================================= */

.event-modal {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;
}

.event-modal.active {
    display: flex;
}

.event-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.72);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.event-modal-content {
    position: relative;
    z-index: 2;

    width: min(700px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    background: rgba(255, 255, 255, 0.97);

    border-radius: 20px;

    color: #000000;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35);

    animation: eventModalOpen 0.25s ease;
}

@keyframes eventModalOpen {
    from {
        opacity: 0;

        transform:
            translateY(20px)
            scale(0.97);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


/* =========================================================
   MODAL CLOSE BUTTON
========================================================= */

.event-modal-close {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 5;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.65);

    color: #ffffff;

    font-size: 18px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.2s ease;
}

.event-modal-close:hover {
    background: rgba(0, 0, 0, 0.85);

    transform: scale(1.05);
}

.event-modal-close i {
    color: #ffffff;
}


/* =========================================================
   MODAL IMAGE
========================================================= */

.event-modal-image {
    width: 100%;
    height: 300px;

    display: block;

    object-fit: cover;

    border-radius:
        20px 20px 0 0;
}

.event-modal-image.hidden {
    display: none;
}


/* =========================================================
   MODAL BODY
========================================================= */

.event-modal-body {
    padding: 30px;

    color: #000000 !important;
}

.event-modal-date {
    margin-bottom: 8px;

    color: #000000 !important;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    opacity: 0.65;
}

.event-modal-body h2 {
    margin: 0 0 10px;

    color: #000000 !important;

    font-size: 30px;
    line-height: 1.2;
}

.event-modal-description {
    margin: 0 0 25px;

    color: #000000 !important;

    font-size: 18px;
    line-height: 1.6;

    opacity: 0.8;
}


/* =========================================================
   MODAL INFORMATION
========================================================= */

.event-modal-info {
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.event-modal-info-item {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    color: #000000 !important;
}

.event-modal-info-item > i {
    width: 25px;

    margin-top: 3px;

    color: #000000 !important;

    font-size: 20px;
}

.event-modal-info-item strong {
    display: block;

    margin-bottom: 3px;

    color: #000000 !important;

    font-size: 14px;
}

.event-modal-info-item span {
    display: block;

    color: #000000 !important;

    line-height: 1.5;
}

.event-modal-address {
    color: #000000 !important;

    opacity: 0.75;
}


/* =========================================================
   MOBILE — GENERAL
========================================================= */

@media screen and (max-width: 768px) {

    body {
        background-attachment: scroll;
        background-position: center top;
    }


    /* NAVIGATION */

    nav {
        position: relative;

        padding: 15px 0;
    }

    .nav-container {
        width: 95%;

        position: relative;

        flex-direction: column;

        gap: 15px;

        text-align: center;
    }

    .logo {
        font-size: 1.35rem;

        padding-right: 55px;

        line-height: 1.2;
    }

    .hamburger,
    .menu-toggle,
    .mobile-menu-button {
        display: flex !important;

        align-items: center;
        justify-content: center;

        position: absolute;

        right: 18px;
        top: 18px;

        width: 52px;
        height: 52px;

        background: transparent;

        border: none;

        color: #ffffff;

        font-size: 30px;

        cursor: pointer;
    }

    .nav-links {
        display: none;

        flex-direction: column;

        width: 100%;

        margin-top: 15px;
        padding: 15px 5px;

        text-align: center;

        background: rgba(0, 0, 0, 0.45);

        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        border-radius: 10px;
    }

    .nav-links.active {
        display: flex;

        animation: menuDrop 0.3s ease;
    }

    .nav-links li {
        padding: 12px;
    }

    .nav-links a {
        display: block;

        padding: 14px;

        font-size: 1.05rem;
    }


    /* HERO */

    .banner {
        min-height: 55vh;

        height: auto;

        padding: 80px 20px 35px;

        background-position: center center;
    }

    .banner-content h2 {
        font-size: clamp(1.7rem, 7vw, 2.3rem);

        line-height: 1.15;

        margin-bottom: 12px;
    }

    .banner-content p {
        max-width: 95%;

        margin: 0 auto 25px;

        font-size: 1rem;

        line-height: 1.5;
    }


    /* MAIN CONTENT */

    .main-content {
        width: 94%;

        margin: 30px auto;

        border-radius: 12px;
    }

    .main-content h1,
    .main-content h2,
    .main-content h3 {
        font-size: 1.5rem;
    }

    .main-content p {
        font-size: 1rem;

        line-height: 1.6;
    }


    /* SECTIONS */

    .section {
        padding: 25px 20px;
    }

    .section p,
    .section strong {
        font-size: 17px;

        line-height: 1.85;
    }


    /* ABOUT */

    .about-img-right {
        float: none;

        width: 100%;

        max-width: 100%;

        margin: 0 0 20px;
    }


    /* GALLERY */

    .gallery,
    .grid,
    .cards {
        display: block !important;
    }

    .gallery img,
    .card,
    .gallery-item {
        width: 100%;

        margin-bottom: 20px;
    }


    /* HOME SLIDESHOW */

    .home-slideshow {
        max-width: 95%;

        height: 220px;
    }


    /* BUTTONS */

    button,
    .button,
    .btn {
        display: block;

        text-align: center;
    }


    /* FOOTER */

    footer {
        padding: 20px 10px;

        text-align: center;
    }


    /* DEVOTIONAL */

    .reading-page .main-content {
        width: 92%;

        margin-top: 35px;

        border-radius: 14px;
    }

    .reading-page .section {
        padding: 30px 20px;
    }

    .reading-page .section h2:first-child {
        font-size: 1.8rem;
    }

    .reading-page .section h3 {
        margin-top: 32px;

        font-size: 1.15rem;
    }

    .reading-page p,
    .reading-page li {
        font-size: 17px !important;

        line-height: 1.85 !important;
    }

    .reading-page .subtitle {
        font-size: 18px !important;
    }

    .reading-page blockquote {
        margin: 25px 0;

        padding: 18px;

        font-size: 17px !important;

        line-height: 1.7 !important;
    }


    /* CALENDAR */

    .calendar-wrapper {
        padding: 15px;

        border-radius: 16px;
    }

    .calendar-header {
        flex-direction: column;

        text-align: center;
    }

    .calendar-title-area {
        flex-direction: column;

        justify-content: center;
    }

    .calendar-title-area h3 {
        font-size: 1.7rem;
    }

    .calendar-selectors {
        width: 100%;

        justify-content: center;
    }

    .calendar-selectors select {
        flex: 1;

        max-width: 170px;

        color: #000000 !important;
    }

    .calendar-controls {
        justify-content: center;
    }

    .calendar-grid {
        min-width: 700px;
    }

    .calendar-weekdays {
        min-width: 700px;
    }

    .calendar-day {
        min-height: 85px;

        padding: 5px;
    }

    .day-number {
        width: 25px;
        height: 25px;

        font-size: 0.8rem;
    }

    .calendar-weekdays div {
        font-size: 0.65rem;

        padding: 8px 2px;
    }

    .calendar-event {
        width: 9px;
        height: 9px;

        padding: 0;

        margin: 5px auto;

        border-radius: 50%;

        font-size: 0;
    }

    .calendar-event i {
        display: none;
    }

    .event-list {
        grid-template-columns: 1fr;
    }

    .calendar-intro h3 {
        font-size: 1.8rem;
    }


    /* EVENT MODAL */

    .event-modal {
        padding: 12px;
    }

    .event-modal-content {
        max-height: 92vh;

        border-radius: 16px;
    }

    .event-modal-image {
        height: 210px;

        border-radius:
            16px 16px 0 0;
    }

    .event-modal-body {
        padding: 22px;
    }

    .event-modal-body h2 {
        font-size: 24px;
    }

    .event-modal-description {
        font-size: 16px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media screen and (max-width: 480px) {

    .calendar-selectors {
        flex-direction: column;
    }

    .calendar-selectors select {
        width: 100%;

        max-width: none;
    }

    .event-modal-close {
        width: 40px;
        height: 40px;
    }
}


/* =========================================================
   MENU ANIMATION
========================================================= */

@keyframes menuDrop {
    from {
        opacity: 0;

        transform: translateY(-10px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }
}

/* =========================================================
   EVENT MODAL — DETAILED EVENT CONTENT
   ========================================================= */

.event-modal-description {
  color: #000000;
  line-height: 1.75;
  margin: 18px 0 24px;
  font-size: 16px;
}

.event-modal-description strong {
  color: #000000;
}

.event-modal-description br {
  line-height: 1.75;
}

.event-modal-info-item {
  color: #000000;
}

.event-modal-info-item strong {
  color: #000000;
}

.event-modal-info-item span {
  color: #000000;
}

.event-modal-address {
  display: block;
  margin-top: 4px;
  line-height: 1.5;
}

#modalEventContactWrapper {
  color: #000000;
}

#modalEventContact {
  line-height: 1.5;
}


/* =========================================================
   MOBILE EVENT MODAL
   ========================================================= */

@media (max-width: 700px) {

  .event-modal-content {
    width: 94%;
    max-height: 90vh;
    overflow-y: auto;
  }

  .event-modal-body {
    padding: 22px 18px 26px;
  }

  .event-modal-title,
  #modalEventTitle {
    font-size: 24px;
    line-height: 1.25;
  }

  .event-modal-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .event-modal-info {
    gap: 14px;
  }

}
/* =========================================================
   WHITE NAVIGATION TEXT
   ========================================================= */

nav .logo,
nav .nav-links a {
  color: #ffffff !important;
}


/* =========================================================
   WHITE MAIN TITLES
   ========================================================= */

.home-page .section h3,
.home-page .banner h2,
.home-page .banner p {
  color: #ffffff !important;
}