body {
    background-color: black;
    color: white;
}
/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.8);
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;  
    list-style: none;
    padding: 1rem;
    margin: 0;
}

.breadcrumb.text-center {
    justify-content: center; /* Horizontally center the items */
}

.breadcrumb li {
    display: inline-block;
    margin: 0 5px; /* Adjust the margin as needed */
}

.breadcrumb .divider {
    margin: 0 5px;
}

/* ========= Hero ========= */
/* Wrapper for the hero section */
.hero-wrapper {
    position: relative; /* Establish positioning context for absolute positioning */
    height: 500px;
}

.hero-wrapper .container {
  min-width: 90vw;
    overflow: hidden;
}

/* Background image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1; /* Ensure the background is behind other content */
}

.btn {
    transition: filter 0.3s; /* Smooth transition for filter property */
}

.btn-gold {
    background-color: #c1a614;
    color: black;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    border: none;
    padding: 10px 20px;
    border-radius: 0.375rem;
}

.btn-alt {
    background-color: lightgray;
    color: black;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    border: none;
    padding: 10px 20px;
    border-radius: 0.375rem;
}

/* Button hover styles */
.btn-gold:hover {
    background-color: #a58912;
    color: black;
}


.hero-video {
    position: absolute; /* Change to relative positioning */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Hide overflow to prevent video from being cut off */
}

.hero-video video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Overlay */
.gt4-hero-1 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensure the overlay is behind other content */
}

.gt4-hero-2 .container {
    position: relative; /* Ensure relative positioning for content */
    z-index: 1; /* Ensure the content is above the overlay */
}

.gt4-hero-2 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Ensure the overlay is behind other content */
}

/* People */
.people .list-group-item {
    background: none;
    padding-left: 0;
}

.people .list-group-item a {
    text-decoration: none;
}

.person-image-1 {
    background-size: cover;
    background-repeat: no-repeat;
    padding: calc(50% - 2px) 0;
    width: 100%;
    height: 0;
    margin-bottom: 15px;
}

.person-image-2 {
    height: 0;   
    display: flex;
    padding: calc(50% - 2px) 0;
    background-repeat: no-repeat;
    line-height: 0;
    border-radius: 50%;
    background-size: cover;
    background-position: 50%;
}

.person-image-2.center {
    margin: 0 auto 15px; /* Set top and bottom margin to 0, and left and right margins to auto */
}

/* Social Links */
.social-links {
    display: flex;
    margin-top: 10px;
}

.social-links.text-center {
    justify-content: center;
    align-items: center;
}

.social-link {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    width: 40px; 
    height: 40px; 
    border-radius: 50%;
}

.social.link a {
    text-decoration: none;
}


/* Figure */
figure {
    display: inline-block;
}
figure img {
    vertical-align: top;
    border-radius: 0.375rem !important;
    max-width: 100%;
    height: auto;
}
figure figcaption {
    font-size: .875em;
    color:  rgba(33, 37, 41, 0.75);
    padding-top: .5rem!important;
    text-align: center;
}

/* ========= Quote ========= */
.quote {
    text-align: center;
}
.quote.boxed {
    background: #ffffff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.quote.boxed p {
    color: black !important;
}

/* ========= Pod ========= */

.pod.boxed {
    background: #ffffff;
    color: black;
}
.card.unboxed {
    background: none;
    border: none;
    color: inherit;
}

.card.unboxed img {
    border-radius: 0.375rem !important;
}

/* ========= Pod ========= */
video {
    --video-width: 426;
    --video-height: 240;
    aspect-ratio: var(--video-width) / var(--video-height);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ========= Gallery ========= */


.mm-columns__img {
    width: 100%;
    height: auto;
}

.mm-columns__img.grid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1; /* Set aspect ratio to 1:1 */
}

.mm-columns__img a {
    cursor: zoom-in;
}

/* ========= Login / Register ========= */
.login .content, .register .content {
    padding: 0 50px;
    margin-top: -50px;
}

.login .background, .register .background{
    background-repeat: no-repeat; 
    background-size: cover; 
    height: 100vh;
    background-position: center center; 
    min-height:  768px; 
}

@media (max-width: 768px) {
    .login .content.light, .register .content.light {
        position: absolute;
        z-index: 1;
        background: rgba(255, 255, 255, 0.7);
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .login .content.dark, .register .content.dark {
        position: absolute;
        z-index: 1;
        background: rgba(0, 0, 0, 0.7);
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/* ========= Latest from Feed ========= */
.latest-from-feed {
    padding-bottom: 50px;
    padding-top: 50px;
}
.latest-from-feed .carousel-indicators {
    bottom: -50px;
}

/* ========= Cards ========= */
.card-img-top {
    width: 100%;
    height: 15vw;
    object-fit: cover;
}

/* ========= Grid Background ========= */
.grid-background {    
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1; /* Ensure the background is behind other content */
}

/* ========= Grayscale ========= */
.grayscale-image {
    /* For modern browsers */
    filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    filter: gray;
}

/* ========= Search ========= */

.search-button {
    background: rgba(0, 0, 0, 0.1);
    opacity: 0.5;
    width: 150px;
    height: 38px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: .375rem;
}

.search-button:active,.search-button:focus,.search-button:hover {
    border-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.search input{
    height: 60px;
    text-indent: 25px;
    border: 2px solid #d6d4d4;
}

.search .bi-search{
    position: absolute;
    top: 35px;
    left: 30px;
}

.ui-autocomplete a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}


.ui-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

.ui-autocomplete .highlight {
    color: #0d6efd;
}
.ui-autocomplete .m-icon {
    float: left;
    max-width: 62px;
}
.ui-autocomplete .x-icon {
    float: left;
    width: 62px;
    font-size: small;
    text-align: center;
}
.ui-autocomplete .m-name {
    display: block;
    margin-left: 10px;
    font-weight: bold;
}

.ui-autocomplete .m-description {
    display: block;
    margin-left: 10px;
}
.ui-autocomplete div::after {
    content: "";
    display: table;
    clear: both;
    margin-bottom: 20px;
}

.ui-menu-item .ui-state-active  {
    background: white;
    color: inherit;
}

/* ========= Post ========= */
.post-author {
    border-radius: 25px;
}

.post-image {
    max-width: 100%;
    height: auto;
    max-height: 560px;
}

.post .intro-text {
   font-size: 18px;
}

/* ========= Footer ========= */

footer {
    padding: 15px;
    border-top: 3px solid #c1a614;
    background-color: rgba(0, 0, 0, 0.8);
    height: 70px;
    width: 100%;
    z-index: 999;
    position: fixed;
    bottom: 0;
    color: white;
    font-size: 11px;
}

footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

footer ul li {
    display: inline-block;
    margin-left: 15px;
}
footer ul li a {
    color: white;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}

/* Countdown */
.position-relative {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem; /* Adjust font size as needed */
    
}

.countdown {
    text-align: center;
    font-size: 72px;
}

.full-container {
    width: 100%;
    height: 800px; /* or a specific height, if needed */
    position: relative; /* Optional, depending on your layout */
}
.circular-btn {
    position: fixed; /* Fixed position to stay in the same place when scrolling */
    bottom: 120px; /* Distance from the bottom of the page */
    right: 40px; /* Distance from the right of the page */
    width: 100px; /* Set width */
    height: 100px; /* Set height */
    border-radius: 50%; /* Make it circular */
    display: flex; /* Center the text inside */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    background: #c1a614; /* Background color */
    border: none; /* Remove border */
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.7); /* White glow effect */
    transition: box-shadow 0.3s ease; /* Smooth transition for hover effect */
}

.circular-btn:hover {
    background: #a58912; /* Change background color on hover */
    color: black;
    box-shadow: 0 0 15px 4px rgba(255, 255, 255, 1); /* Brighter glow on hover */
}




.modal {
    color: black;
}

.video-container {
    position: relative;
    top: 0;
    left: 5vw;
    width: 90vw;
    height: calc(100vh - 220px);
    
}

.grecaptcha-badge {
    display: none;
}