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);
    }
}

/* =========================================================
   LITTLE SPARKS - PROFESSIONAL WEBSITE
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #1f2937;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.page-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: #ffffff;
}


/* =========================================================
   HEADER
   ========================================================= */

.main-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.07);
}

    .main-header .navbar {
        min-height: 76px;
    }


/* =========================================================
   BRAND
   ========================================================= */

.navbar-brand {
    text-decoration: none;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff200;
    border-radius: 13px;
    font-size: 23px;
    box-shadow: 0 5px 12px rgba(255, 214, 0, 0.25);
}

.brand-name {
    font-size: 21px;
    font-weight: 800;
    color: #172033;
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 10px;
    color: #7b8494;
    letter-spacing: 1px;
    margin-top: 3px;
}


/* =========================================================
   MENU
   ========================================================= */

.main-menu {
    gap: 5px;
}

    .main-menu .nav-link {
        color: #4a5568;
        font-weight: 600;
        padding: 10px 14px !important;
        border-radius: 9px;
        transition: all 0.25s ease;
    }

        .main-menu .nav-link:hover {
            color: #172033;
            background: #fff9c4;
        }

    .main-menu .premium-link {
        color: #805b00;
    }


/* =========================================================
   HEADER ACTIONS
   ========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-btn {
    text-decoration: none;
    color: #172033;
    font-weight: 600;
    padding: 9px 15px;
}

.join-btn {
    text-decoration: none;
    background: #fff200;
    color: #171717;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.25s;
}

    .join-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(255, 214, 0, 0.30);
    }


/* =========================================================
   FESTIVAL BAR
   ========================================================= */

.festival-bar {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111b33;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}


/* =========================================================
   MAIN
   ========================================================= */

main {
    min-height: calc(100vh - 300px);
}


/* =========================================================
   FOOTER
   ========================================================= */

.main-footer {
    background: #111b33;
    color: #cbd3e1;
    padding: 55px 0 20px;
    margin-top: 50px;
}

.footer-brand {
    font-size: 24px;
    font-weight: 800;
    color: #fff200;
    margin-bottom: 12px;
}

.footer-description {
    color: #aeb8ca;
    font-size: 14px;
    line-height: 1.8;
    max-width: 350px;
}

.main-footer h5 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
}

.main-footer a {
    display: block;
    color: #aeb8ca;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 10px;
    transition: 0.2s;
}

    .main-footer a:hover {
        color: #fff200;
        transform: translateX(3px);
    }

.main-footer p {
    font-size: 13px;
    color: #aeb8ca;
}

.availability {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 13px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    font-size: 12px;
}

.footer-whatsapp {
    display: inline-block !important;
    background: #25D366;
    color: white !important;
    padding: 9px 15px;
    border-radius: 8px;
    width: fit-content;
}

    .footer-whatsapp:hover {
        transform: none !important;
        color: white !important;
    }

.footer-bottom {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.10);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #8893a8;
}

    .footer-bottom a {
        display: inline;
        margin: 0;
    }


/* =========================================================
   VISITOR COUNTER
   ========================================================= */

.visitor-counter {
    position: fixed;
    left: 15px;
    bottom: 15px;
    background: #111b33;
    color: white;
    padding: 9px 15px;
    border-radius: 30px;
    font-size: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.18);
    z-index: 999;
}

    .visitor-counter strong {
        color: #fff200;
        margin-left: 3px;
    }


/* =========================================================
   WHATSAPP
   ========================================================= */

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 7px 20px rgba(0,0,0,0.20);
    z-index: 9999;
    transition: all 0.25s ease;
}

    .whatsapp-float:hover {
        transform: scale(1.08);
    }

    .whatsapp-float img {
        width: 34px;
        height: 34px;
    }


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991px) {

    .main-menu {
        margin-top: 15px;
        padding: 10px 0;
    }

        .main-menu .nav-link {
            padding: 11px 12px !important;
        }

    .header-actions {
        padding: 15px 0;
        border-top: 1px solid #eee;
        margin-top: 5px;
    }
}


@media (max-width: 576px) {

    .brand-name {
        font-size: 18px;
    }

    .brand-icon {
        width: 40px;
        height: 40px;
    }
    .site-logo {
        height: 50px;
        max-width: 180px;
    }
    .festival-bar {
        font-size: 10px;
        padding: 8px;
        text-align: center;
    }

    .header-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .login-btn,
    .join-btn {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .visitor-counter {
        bottom: 12px;
        left: 10px;
        font-size: 10px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 12px;
        bottom: 12px;
    }

        .whatsapp-float img {
            width: 30px;
            height: 30px;
        }

    /* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

    @media (max-width: 991px) {

        .main-header .navbar {
            min-height: 70px;
        }

        .navbar-toggler {
            border: 2px solid #111b33;
            padding: 7px 9px;
            border-radius: 8px;
            background: #ffffff;
        }

            .navbar-toggler:focus {
                box-shadow: none;
            }

        .navbar-toggler-icon {
            width: 25px;
            height: 25px;
        }

        .navbar-collapse {
            background: #ffffff;
            padding: 10px 0 15px;
            border-top: 1px solid #eeeeee;
        }

        .main-menu {
            width: 100%;
            margin-top: 5px;
            padding: 0;
            gap: 0;
        }

            .main-menu .nav-item {
                width: 100%;
            }

            .main-menu .nav-link {
                width: 100%;
                padding: 13px 15px !important;
                border-radius: 8px;
                font-size: 14px;
                border-bottom: 1px solid #f1f1f1;
            }

                .main-menu .nav-link:hover {
                    background: #fff9c4;
                }

        .header-actions {
            width: 100%;
            padding: 15px 0 5px;
            margin-top: 5px;
            border-top: 1px solid #eeeeee;
        }

        .join-btn {
            display: block;
            width: 100%;
            text-align: center;
        }
    }
    /* =========================
   MOBILE HAMBURGER
   ========================= */

    .navbar-toggler {
        border: 2px solid #111b33 !important;
        border-radius: 8px;
        padding: 7px 8px;
        width: 44px;
        height: 42px;
        display: none;
        background: #ffffff;
    }

    .hamburger-line {
        display: block;
        width: 24px;
        height: 3px;
        background: #111b33;
        margin: 4px auto;
        border-radius: 5px;
    }

    /* Mobile */
    @media (max-width: 991px) {

        .navbar-toggler {
            display: block;
        }

        .navbar-collapse {
            width: 100%;
        }
        .main-menu .nav-item {
            width: 100%;
        }

        .main-menu .nav-link {
            display: block;
            width: 100%;
            padding: 12px 15px !important;
        }
    }
    /* =========================================================
   MOBILE NAVBAR
   ========================================================= */

    @media (max-width: 991px) {

        .main-header .navbar {
            padding: 8px 15px;
        }

        .site-logo {
            height: 50px;
            width: auto;
            max-width: 180px;
        }

        /* Hamburger button */
        .navbar-toggler {
            display: block;
            border: 2px solid #111b33;
            padding: 6px 9px;
            border-radius: 8px;
            background: #ffffff;
        }

            .navbar-toggler:focus {
                box-shadow: none;
            }

        /* Hamburger 3 lines */
        .navbar-toggler-icon {
            display: inline-block;
            width: 25px;
            height: 20px;
            background-image: none !important;
            position: relative;
        }

            .navbar-toggler-icon::before,
            .navbar-toggler-icon::after,
            .navbar-toggler-icon {
                background-color: transparent;
            }

                .navbar-toggler-icon::before {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 25px;
                    height: 3px;
                    background: #111b33;
                    border-radius: 3px;
                    box-shadow: 0 8px 0 #111b33, 0 16px 0 #111b33;
                }

        /* Mobile menu */
        .navbar-collapse {
            background: #ffffff;
            margin-top: 8px;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.10);
        }

        .main-menu {
            width: 100%;
            margin: 0 !important;
            padding: 0 !important;
            gap: 2px;
        }

            .main-menu .nav-item {
                width: 100%;
            }

            .main-menu .nav-link {
                display: block;
                width: 100%;
                color: #111b33 !important;
                background: #ffffff;
                padding: 12px 15px !important;
                border-radius: 8px;
                font-weight: 600;
            }

                .main-menu .nav-link:hover {
                    background: #fff9c4;
                }

        .header-actions {
            width: 100%;
            padding: 10px 0;
            border-top: 1px solid #eeeeee;
            margin-top: 8px;
        }

        .join-btn {
            display: block;
            width: 100%;
            text-align: center;
        }
    }
    /* =========================================================
   MOBILE HAMBURGER MENU
   ========================================================= */

    .custom-toggler {
        width: 45px;
        height: 40px;
        padding: 7px !important;
        border: 2px solid #111b33 !important;
        border-radius: 8px !important;
        background: #ffffff !important;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

        .custom-toggler span {
            display: block !important;
            width: 25px !important;
            height: 3px !important;
            background-color: #111b33 !important;
            border-radius: 3px;
        }


    /* Mobile / Tablet */
    @media (max-width: 991px) {

        .custom-toggler {
            display: flex !important;
        }

        .navbar-collapse {
            width: 100%;
            background: #ffffff;
            margin-top: 10px;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.12);
        }

        .main-menu {
            width: 100%;
            margin: 0 !important;
            padding: 0 !important;
            display: block;
        }

            .main-menu .nav-item {
                width: 100%;
            }

            .main-menu .nav-link {
                width: 100%;
                display: block;
                color: #111b33 !important;
                padding: 12px 15px !important;
            }
    }
}

