body {
    font-family: 'Archivo Black', sans-serif;
}

h3 {
    font-size: 32px;
    font-weight: bold;
    color: #6F1101;
}

section p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.hero .overlay {
    background-color: rgba(0, 0, 0, 0.6);
}

.hero {
    min-height: 700px;
    overflow: hidden;
    position: relative;
}

.hero-burger {
    max-width: 100%;
    height: auto;
    animation: floatBurger 4s ease-in-out infinite;
    z-index: 1;
}

.menu-img {
    width: 100%;
    height: 250px !important;
    object-fit: cover;
}

@keyframes floatBurger {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero .badge {
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.promo-box {
    position: relative;
    overflow: hidden;
}

.promo-box img {
    object-fit: cover;
}

.promo-text {
    position: absolute;
    top: 10%;
    left: 8%;
    z-index: 2;
    color: white;
}

@media (max-width: 768px) {
    .promo-text {
        top: 5%;
        left: 5%;
        font-size: 14px;
    }
}


/* .hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 1px 1px 5px #000;
} */


/* Section Background */

.burger-story {
    background: linear-gradient(135deg, #FCD76E, #6F1101);
    /* Your gradient */
    color: #fff;
}


/* Image */

.burger-story-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* Title */

.burger-title {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    font-family: 'Archivo Black', sans-serif;
    /* Or your custom font */
    margin-bottom: 20px;
}


/* Paragraph */

.burger-text {
    font-size: 18px;
    line-height: 1.7;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
}

.custom-footer {
    background: linear-gradient(rgba(33, 10, 2, 0.9), rgba(33, 10, 2, 0.9)), url('../img/footer.jpg') no-repeat center;
    background-size: cover;
}

.custom-footer a {
    color: #ffffffb3;
    text-decoration: none;
    font-size: 14px;
}

.custom-footer a:hover {
    text-decoration: underline;
    color: #fff;
}

.custom-footer .footer-desc {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #ffffffcc;
}

.custom-footer i {
    font-size: 16px;
    vertical-align: middle;
}

.pepper-img {
    position: absolute;
    max-width: 80px;
    z-index: 0;
}

.pepper-img.left {
    top: 0;
    left: 0;
}

.pepper-img.right {
    bottom: 0;
    right: 0;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #dc3545;
    color: #fff;
    border-radius: 50%;
    z-index: 999;
    display: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.back-to-top:hover {
    background: #c82333;
    transform: translateY(-5px);
}

.back-to-top i {
    font-size: 18px;
}


/* Preloader Styles */

#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: fadeOut 1s ease-in-out forwards;
    animation-delay: 2s;
}

.loader-text {
    font-size: 2rem;
    font-weight: bold;
    animation: typing 2s steps(14), blink 0.5s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #fff;
}

@keyframes typing {
    from {
        width: 0
    }
    to {
        width: 14ch
    }
}

@keyframes blink {
    50% {
        border-color: transparent
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}