html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}





/*background---------------------------------------*/
/* Full screen obsidian base */
.backgroundBlackGold-fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #020202; /* Deepest black */
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* The "Liquid" Color Blobs */
.backgroundBlackGold-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px); /* Heavy blur for the "mixed" look */
    opacity: 0.35; /* Kept low so black dominates */
    mix-blend-mode: screen;
}

/* Gold Blob 1: Drifting in the top-right */
.backgroundBlackGold-gold-1 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #D4AF37 0%, #996515 50%, transparent 70%);
    top: -15%;
    right: -10%;
    animation: backgroundBlackGold-mix-flow 25s infinite alternate ease-in-out;
}

/* Gold Blob 2: Drifting in the bottom-left */
.backgroundBlackGold-gold-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #aa8807 0%, #5c4d21 60%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation: backgroundBlackGold-mix-flow 30s infinite alternate-reverse ease-in-out;
}

/* Vignette to frame the screen and deepen the black edges */
.backgroundBlackGold-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 30%, #000000 100%);
}

/* Liquid Mixing Animation */
@keyframes backgroundBlackGold-mix-flow {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(-10%, 15%) scale(1.1) rotate(90deg);
    }

    100% {
        transform: translate(5%, -5%) scale(1) rotate(180deg);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .backgroundBlackGold-blob {
        width: 100vw;
        height: 100vw;
        filter: blur(80px);
        opacity: 0.25;
    }
}









/*navbar-------------------------------*/
/* --- Root & Reset (Optional but recommended) --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- Navbar Wrapper --- */
.seethronavbar-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
}

/* --- Container --- */
.seethronavbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 80px; /* Fixed height for the header */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Logo Styling (NEW) --- */
.seethronavbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
    padding: 10px 0;
}

.navbar-logo-img {
    height: auto;
    max-height: 55px; /* Adjust this to change logo size */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.seethronavbar-logo:hover .navbar-logo-img {
    transform: scale(1.05);
}

/* --- Desktop Menu --- */
.seethronavbar-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.seethronavbar-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    opacity: 0.8;
    transition: 0.3s ease;
}

    .seethronavbar-link:hover {
        opacity: 1;
        color: #cfbd89; /* Matches your church brand color */
    }

/* --- Donate Button --- */
.donate-main {
    background: transparent;
    border: 1px solid #cfbd89;
    color: #cfbd89;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

    .donate-main:hover {
        background: #cfbd89;
        color: #000;
    }

/* --- Contact Us Button --- */
.seethronavbar-btn {
    display: inline-block;
    background: #ffffff;
    color: #000000 !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid #ffffff;
    cursor: pointer;
    white-space: nowrap;
}

    .seethronavbar-btn:hover {
        background: transparent;
        color: #ffffff !important;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

/* --- Mobile Toggle (Hamburger) --- */
.seethronavbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
}

.seethronavbar-icon,
.seethronavbar-icon::before,
.seethronavbar-icon::after {
    content: '';
    display: block;
    background: #ffffff;
    height: 2px;
    width: 25px;
    transition: 0.3s ease-in-out;
}

    .seethronavbar-icon::before {
        transform: translateY(-8px);
    }

    .seethronavbar-icon::after {
        transform: translateY(6px);
    }

/* --- Mobile Responsive Logic --- */
@media (max-width: 992px) {
    .seethronavbar-menu {
        gap: 15px; /* Tighten gap for tablets */
    }
}

@media (max-width: 768px) {
    .seethronavbar-toggle {
        display: block;
    }

    .seethronavbar-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen */
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95); /* Solid dark for mobile visibility */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

        /* JavaScript Toggle Class */
        .seethronavbar-menu.is-active {
            right: 0;
        }

        .seethronavbar-menu li {
            width: 100%;
            text-align: center;
            margin: 15px 0;
        }

    .seethronavbar-btn {
        width: 70%;
        padding: 15px 0;
    }

    .navbar-logo-img {
        max-height: 45px; /* Smaller logo for mobile */
    }

    /* Hamburger Animation to 'X' */
    .seethronavbar-toggle.is-active .seethronavbar-icon {
        background: transparent;
    }

        .seethronavbar-toggle.is-active .seethronavbar-icon::before {
            transform: rotate(45deg) translateY(0);
            background: #ffffff;
        }

        .seethronavbar-toggle.is-active .seethronavbar-icon::after {
            transform: rotate(-45deg) translateY(-1px) translateX(1px);
            background: #ffffff;
        }
}









/*bottom section------------------------*/
/* 1. Force the page to be a flex column */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* 2. Make the main content area take up all available space */
main[role="main"] {
    flex: 1 0 auto; /* This pushes the footer to the bottom */
}

/* 3. The Lower Site Area Container */
.lowerSiteArea-main-container {
    flex-shrink: 0; /* Prevents the footer from squishing */
    width: 100%;
    position: relative; /* Removes the "absolute/fixed" overlap bug */
    z-index: 10;
}

.lowerSiteArea-wrapper {
    padding: 80px 5% 30px 5%;
    /* Gradient transition from transparent to dark obsidian */
    background: linear-gradient(to bottom, transparent, rgba(5, 5, 5, 0.95) 20%);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    color: #ffffff;
}

/* 4. Grid System */
.lowerSiteArea-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.lowerSiteArea-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

    .lowerSiteArea-logo span {
        color: #D4AF37;
    }

.lowerSiteArea-heading {
    color: #D4AF37;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.lowerSiteArea-link {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: 0.3s;
}

    .lowerSiteArea-link:hover {
        color: #D4AF37;
        padding-left: 5px;
    }

.lowerSiteArea-btn {
    background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
}

.lowerSiteArea-bottom-bar {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.8rem;
    color: #555;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .lowerSiteArea-main-grid {
        text-align: center;
    }

    .lowerSiteArea-wrapper {
        padding: 40px 20px;
    }
}










/*donate options popup---------------------------------*/

/* 1. Backdrop with Glassmorphism */
.donateOptionsPopup-overlay {
    /* Initially hidden - you will toggle this with JS */
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4); /* Dark slate tint */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

/* 2. Modal Container */
.donateOptionsPopup-container {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    border-radius: 32px;
    padding: 40px 24px 32px 24px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    /* Stylish Spring Animation */
    animation: donateOptionsPopup-slideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes donateOptionsPopup-slideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 3. Close Button */
.donateOptionsPopup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    background: #f1f5f9;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

    .donateOptionsPopup-close:hover {
        background: #e2e8f0;
    }

/* 4. Typography */
.donateOptionsPopup-header {
    text-align: center;
    margin-bottom: 32px;
}

.donateOptionsPopup-title {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: clamp(1.5rem, 5vw, 1.8rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.donateOptionsPopup-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

/* 5. Donation Cards List */
.donateOptionsPopup-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.donateOptionsPopup-card {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .donateOptionsPopup-card:hover {
        background: #ffffff;
        border-color: #3b82f6;
        transform: translateY(-3px);
        box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
    }

.donateOptionsPopup-icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.donateOptionsPopup-details {
    flex-grow: 1;
}

.donateOptionsPopup-method-name {
    display: block;
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
}

.donateOptionsPopup-method-meta {
    font-size: 0.8rem;
    color: #94a3b8;
}

.donateOptionsPopup-action-icon {
    color: #cbd5e1;
    font-weight: 900;
    font-size: 1.2rem;
}

.donateOptionsPopup-footer {
    margin-top: 32px;
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
    font-style: italic;
}

/* 6. Mobile Optimization (Small screens) */
@media (max-width: 480px) {
    .donateOptionsPopup-container {
        padding: 32px 20px 24px 20px;
        border-radius: 24px;
    }
}







/*donate button style-----------------------*/

.donate-main {
    display: inline-block;
    padding: 3px 10px; /*outside border spacing high then length*/
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
    background: rgba(225, 225, 225, 0.5); /*background color*/
    border: 2px solid #aa8807; /*border size and color*/
    border-radius: 25px; /*makes the square shape curve to an elipsa*/

    @media(max-width: 768px) {
        .donate-main {/*mobile version of the button*/
            padding: 16px 40px;
            width: 100%;
            text-align: center;
        }
    }
}