/*
Theme Name: D-Grill Restaurant
Description: Modern Restaurant Theme for D-Grill
Version: 1.0
*/
html {
  scroll-behavior: smooth;
}
.bebas-neue-regular {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.mr-dafoe-regular {
    font-family: "Mr Dafoe", cursive;
    font-weight: 400;
    font-style: normal;
}

.roboto-400 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
}

.roboto-300 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;
}

.fade-slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.fade-slide.active {
    opacity: 1;
}

.slide-mask {
    background-color: rgb(45, 45, 45);
    opacity: 0.4;
}

/* Sticky navbar styles */
#mainNav {
    transition: all 0.3s ease;
}

#mainNav.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Add padding to body to prevent content jump when navbar becomes sticky */
body.sticky-nav-active {
    padding-top: 80px;
}



.leaflet-popup-content-wrapper{
    width:300px;
    border-radius: 0;
   
}
.leaflet-popup-close-button{
    display: none;
}
.leaflet-popup-tip{
    display: none;
}
.leaflet-container a {
    color: #000000;
     align-self: center;
}
.leaflet-container a:hover {
    background-color: #000000;
    color: white;
}
.leaflet-popup , .leaflet-zoom-animated{
    bottom:9px !important;
}


/* Inactive bullets swiper*/
.swiper-pagination-bullet {
    background-color: #888888;  
    
}

/* Active bullet */
.swiper-pagination-bullet-active {
    background-color: #DB5E3A !important;
}

.swiper-pagination {
    display: none !important;
}

/* Preloader styling */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: #2D2D2D;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}


 /* Fade + Move Up Animation */
.float-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: floatFadeUp 0.6s ease forwards;
}

@keyframes floatFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
