

html {
    font-size: 16px;
}


html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif;
}


/* Hamburger Menu Icon */
.hamburger-menu {
    position: fixed;
    top: 20px;
    right: 30px;
    cursor: pointer;
    z-index: 1051; /* Ensure it’s on top */
}


/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    flex-direction: column;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
}




/* CSS for the loader overlay */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
    width: 243px;
    height: 306px;
    background-image: url("/images/KFCD logo.webp");
    background-size: contain;
    background-repeat: no-repeat;
    animation:  pulse 1.5s ease-in-out infinite;
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}


