html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
}

.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;
    display: block !important;
    text-align: left !important;
}
.navbar-brand {
    margin-right: auto !important;
}
/* WhatsApp Floating Button*/
.whatsapp-float {
    position:absolute;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 6px 10px rgba(0,0,0,.3);
    display:flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: pulse 1.5s infinite;
}

    .whatsapp-float img {
        width: 30px;
        height: 30px;
       
    }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Mobile size */
@media(max - width:600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
}
.visit-counter {
    position: fixed;
    left: 15px;
    bottom: 20px;
    background: #1e293b;
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,.3);
    z-index: 9999;
}

.festival-box {
    font-family: 'Fredoka One', cursive;
    font-size: 12px;
    color: #FFE500;
    margin-top: 10px;
    animation: pulse 1.2s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.12);
        opacity: 1;
    }
}
.footer {
    height: 60px;
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center; /* vertical center */
    color:white;
}


.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(2px 2px at 20% 30%, #fff, transparent), radial-gradient(2px 2px at 80% 20%, #fff, transparent), radial-gradient(2px 2px at 60% 70%, #fff, transparent), radial-gradient(1.5px 1.5px at 30% 80%, #fff, transparent), radial-gradient(1.5px 1.5px at 90% 60%, #fff, transparent);
    animation: starMove 30s linear infinite;
    opacity: 0.6;
}

@keyframes starMove {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-200px);
    }
}
/*offline/ online highlight*/
.highlight-box {
    /*background: linear-gradient(45deg, #ffeb3b, #ff9800);*/
    color: white;
    padding: 2px 10px;
    border-radius: 30px;
    font-weight: 400;
    font-size: 15px;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}


