/* Header Container */
.masthead {
    position: relative;
    height: 100vh;
    background: url('../img/header-bg.webp') no-repeat center center / cover;
     background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

/* Dynamic Background Overlay with Gradient */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

/* Content Styling */
.container {
    position: relative;
    z-index: 2;
}

.main-logo img {
    animation: bounce 2s infinite; /* Add bounce animation */
}

.intro-heading {
    font-size: 3rem;
    font-weight: bold;
    margin-top: 20px;
}

.intro-lead-sub {
    font-size: 1.25rem;
    margin: 20px 0;
}

/* Button Hover Effects */
.btn-primary {
    background-color: #ff7f50;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #ff6347;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

/* Animations */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.masthead {
    background-attachment: fixed;
}

.intro-heading {
    overflow: hidden;
    border-right: 3px solid #fff;
    white-space: nowrap;
    width: 0;
    animation: typing 3s, blink 0.5s step-end infinite alternate;
    animation-fill-mode: forwards; 
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    from {
        border-right-color: transparent;
    }
    to {
        border-right-color: #fff;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 2s infinite;
}

.scroll-arrow {
    font-size: 3rem;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-tooltip {
    visibility: hidden;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    transition: visibility 0.3s ease;
}

.products-item:hover .order-tooltip {
    visibility: visible;
}

.card-body p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}
.accordion-button {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
}

