body {
    font-family: "Bricolage Grotesque", sans-serif;
}
.popup-overlay {
    display: none;
    position: fixed;
    /* top: 0; */
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    text-align: center;
    align-items: center;
    justify-content: center;
    z-index: 10000000;
}

.popup {
    display: inline-block;
    width: 100%;
    min-height: 52px;
    background-color: white;
    border-radius: 1px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    bottom: 0;
    -webkit-box-shadow: inset 0px 10px 10px -6px rgb(117 117 117);
    -moz-box-shadow: inset 0px 10px 10px -6px rgba(117,117,117,1);
    box-shadow: inset 0px 10px 10px -6px rgb(117 117 117);
    position: absolute;
    font-size: 12px;
}

a.accept, a.submit {
    margin-top: 0;
    margin-left: 20px;
    display: inline-block;
    color: white;
    background-color: #001745;
    border-radius: 5px;
    padding: 1px 14px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: sans-serif;
}
#mainNavbar {
    transition: all 0.4s ease;
}

    /* Homepage - Transparent */
    #mainNavbar.bg-transparent {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1030;
        background-color: transparent !important;
    }

        /* Gradient Shadow Below Navbar */
        /*#mainNavbar.bg-transparent::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 135%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
            pointer-events: none;
            z-index: -1;
        }*/

        /* Scrolled State */
        #mainNavbar.bg-transparent.navbar-scrolled {
            background-color: #000 !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        }

            #mainNavbar.bg-transparent.navbar-scrolled::after {
                opacity: 0;
            }

            /* Text/Icon color on scroll */
           /* #mainNavbar.bg-transparent.navbar-scrolled i,
            #mainNavbar.bg-transparent.navbar-scrolled .nav-link {
                color: #333 !important;
            }
*/


.bg-black {
    background:#000;
}


.HomeBanner {
    position: relative;
    width: 100%;
}

    .HomeBanner img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        display: block;
    }

/* Dark Gradient Overlay on Banner */
.HomeBannerOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.75) 0%, /* Darker at top */
    rgba(0, 0, 0, 0.65) 40%, rgba(0, 0, 0, 0.25) 70%, rgba(0, 0, 0, 0.1) 100% );
    z-index: 1;
    pointer-events: none;
}

/* Text Styling */
.HomeBannerText {
    top: 24%;
    z-index: 2; /* Make sure text stays above overlay */
    color: white;
}

    .HomeBannerText .font1 {
        font-size: 4.8rem;
        font-weight: 800;
    }

    .HomeBannerText .font2 {
        font-size: 4rem;
        font-weight: 400;
        margin: 0px 10px;
    }

    .HomeBannerText .font3 {
        font-size: 5.2rem;
        font-weight: 600;
        color: #e4661a;
    }

    .HomeBannerText sub {
        font-size: 1.45rem;
        font-weight: 300;
    }
footer {
    background: #000;
    padding: 30px 0px;
    color: #fff;
}
.footerHeader {
    font-weight: bold;
    font-size: 27px;
}
.footerContent {
    font-weight: normal;
    font-size: 16px;
}
    .footerContent li {
        list-style:none;
    } .footerContent li a {
        font-size: 16px;
    }
    .footerContent .nav-link::after {
    display:none!important
    }
    .footerContent a:hover {
    color:#e4661a
    }

    .HomeBlock {
        position: relative;
        color: #fff;
        padding: 250px 30px 100px;
        min-height: 600px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
        margin-top: 30px;
    }

    /* Background + gradient overlay */
    .HomeBlock::before {
        content: "";
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center top;
        z-index: 1;
    }

    /* Dark gradient overlay */
    .HomeBlock::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1) );
        z-index: 2;
    }

    /* Ensure content sits above overlay */
    .HomeBlock h4,
    .HomeBlock p,
    .BlockButton {
        position: relative;
        z-index: 3;
        margin-top:30px;
    }

/* Specific images */
.Block1::before {
    background-image: url('/images/1.png');
}

.Block2::before {
    background-image: url('/images/2.png');
}

/* Button styling */
.BlockButton a {
    display: table;
    margin: 0 auto;
    background: #e4661a;
    padding: 6px 15px;
    font-size: 22px;
    font-weight: bold;
    transition: all 0.3s ease;
    color: #fff;
    border-radius: 8px;
}
.Block2 .BlockButton a {
    color:#000;
    background:#fff;
}


.BlockButton a:hover {
    opacity: 0.7;
}
.HomeBlock h4 {
    text-align: center;
    font-size: 33px;
    font-weight: bold;
}
.HomeBlock p {
    text-align: center;
    font-size: 20px;
    margin-top: 18px;
}
/* underline */
.HomeBlock h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: #e4661a;
    right: 0;
    margin: 0 auto -14px;
}
.StoreImage img {
    width: 100%;
}
.StoreItem {
    background: #f8f9fa;
    border-radius: 10px;
}
.StoreNameArea {
    padding: 15px 15px;
}
.StoreImage img {
    border-radius: 10px;
}
.miniBlockName {
    text-align: center;
    color: #fff;
    background: #000;
    font-size: 30px;
    font-weight: bold;
    padding: 5px 0px;
}

a {
    text-decoration:none;
}
/*.CatItem {
    display: inline-flex;
    margin: 4px 3px;
}
    .CatItem a {
        background: grey;
        padding: 3px 6px;
        border-radius: 6px;
        color: #fff;
        font-size: 15px;
    }
    .CatItem.active a {
        background: #e4661a;
    }*/
a.nav-link {
    color: #fff;
    font-size: 18px;
    font-weight: normal;position:relative;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #fff;
    font-weight: 500;
}
.nav-link:focus::after, .nav-link:hover::after, a.nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 70%; /* Adjust width as needed */
    height: 4px;
    background-color: #e4661a;
    transform: translateX(-50%);
    border-radius: 2px;
}
.nav-link:focus, .nav-link:hover {
    color: #fff;
}
div#socialIcons a {
    color: #fff;
}
.greybg {
    background: #f4f2f3;
    border-radius: 10px;
}
.mt--60 {
    margin-top: -60px;
    z-index: 1;
    position: relative;
}
.p-20 {
    padding:20px
}
.StoreDetailName {
    font-weight: bold;
    font-size: 35px;
}


/* ==================== STORE DETAILS ==================== */


/* Category Pill */
.StoreDetailCategory {
    display: inline-flex;
    align-items: center;
    background: #f1f1f1;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

    .StoreDetailCategory .category-label {
        background: #e4661a;
        color: white;
        padding: 7px 22px;
        white-space: nowrap;
    }

    .StoreDetailCategory .category-value {
        background: #f8f9fa;
        color: #333;
        padding: 7px 22px;
        white-space: nowrap;
    }

/* Store Number, Phone, Website */
.StoreDetailStoreNumber, .StoreDetailTel, .StoreDetailWebsite {
    font-size: 23px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .StoreDetailStoreNumber i,
    .StoreDetailTel i,
    .StoreDetailWebsite i {
        color: #e4661a;
        font-size: 28px;
        width: 32px;
    }

/* Social Icons */
.StoreSocials {
    margin-top: 25px;
    display: flex;
    gap: 14px;
}

    .StoreSocials a {
        font-size: 2.1rem;
        color: #000;
        transition: all 0.3s ease;
    }

        .StoreSocials a:hover {
            color: #e4661a;
            transform: translateY(-3px);
        }

            /* Optional: Make social icons bigger on hover */
            .StoreSocials a:hover i {
                color: #e4661a;
            }

.DetailsAbout h4,
.DetailsHours h4 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: #222;
    text-align: left;
}

    .DetailsAbout h4::after,
    .DetailsHours h4::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%; /* This makes it follow text width */
        height: 4px;
        background-color: #e4661a;
        border-radius: 3px;
    }

/* Store Name Area */
.StoreNameArea {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #f8f9fa;
    min-height: 85px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.store-info {
    flex: 1;
}

.store-name {
    font-size: 25px;
    font-weight: 700;
    color: #000;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.store-category {
    font-size: 1rem;
    color: #000;
    margin: 0;
}

/* Orange Arrow Circle */
.arrow-circle {
    width: 42px;
    height: 42px;
    background: #e4661a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.StoreItem:hover .arrow-circle {
    background: #e4661a;
    transform: scale(1.08);
}

.search-filter-bar {
    display: flex;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.search-input {
    flex: 1;
    border: none;
    padding: 14px 20px;
    font-size: 1.05rem;
    outline: none;
}

.category-select {
    border: none;
    border-left: 1px solid #ddd;
    padding: 14px 18px;
    font-size: 1.05rem;
    min-width: 190px;
    background: white;
    outline: none;
}

/* Search Button */
.search-btn {
    border: none;
    background: #e4661a;
    color: white;
    padding: 0 24px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
}

    .search-btn:hover {
        background: #e4661a;
    }

    .search-btn i {
        margin-bottom: 2px;
    }

/* Category Chips */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom:30px;
}
.CatItem a {
    display: block;
    background: #7d7f83;
    color: white;
    padding: 5px 17px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}
.CatItem.active a {
    background: #e4661a;
}
.text-align-center {
    text-align:center;
}

.pb-30 {
    padding-bottom:30px
}
.pt-30 {
    padding-top: 30px
}

.content, .content p, .content li {
    font-size:14px;
}
p {
    margin-bottom: 8px;
}
.content h2 {
    margin-bottom: 0px;
    margin-top: 15px;
    font-size: 24px;
}
.eventTitle {
    text-align: center;
    color: #fff;
    background: #000;
    font-size: 30px;
    font-weight: bold;
    padding: 5px 0px;
}

a {
color:#e4661a
}

.label {
    font-size:16px;
    font-weight:bold;
}
.MiniBlock img {
    width: 100%;
}