
:root {
    --primary: #CF2C1E;
    --secondary: #edff4f
}

body {
    font-family: "Poppins", sans-serif;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6,body{
    color:#5d4f75;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    margin-bottom: 0px;
}

p{
    margin-bottom: 0px;
}

.logo {
    width: 3em;
}

.brand-name{
    color: var(--primary)
}

.slogan {
    font-size: 12px;
}

.popcorn-hero {
    /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/api/placeholder/1200/800') no-repeat center center; */
    padding-top: 84px;
    background-color: #edff4f;
    height: 47em;
    overflow: hidden;
    background-size: cover;
    color: var(--primary);
    h1{
        color:inherit!important;
    }
}

.product-card {
    transition: transform 0.3s;
    border-radius: 10px;
    overflow: hidden;
}

.product-card:hover {
    transform: scale(1.05);
}

.popcorn-banner {
    width: 60em;
    margin-top: -5em;
    transform: rotate(-26deg);
    -webkit-transform: rotate(-26deg);
    -moz-transform: rotate(-26deg);
    -ms-transform: rotate(-26deg);
    -o-transform: rotate(-26deg);
}

.title-banner {
    margin-top: -5em;
    font-size: 4em;
    font-weight: 700;
}

.cta-banner {
    margin-top:2em;
    background-color: var(--primary);
    color: white;
    transition: all;
    transition-duration: 300ms;
    &:hover{
        background-color: #fff;
        scale: 1.1;

    }
}

.card-img-top{
    height: 20em;
    width: 100%;
    background-position: center;
    background-size: cover;
}

.text-primary-akm {
    color: var(--primary);
}

.bg-primary-akm{
    background-color: var(--primary);
}

.cta-order {
    background-color: var(--primary);
    color: white;
    &:hover{
        background-color: white;
        color: var(--primary);
        border: 1px solid var(--primary);
    }
}

.btn-price {
    background-color: var(--primary);
    color: white;
    /* background-color: var(--secondary);
    color: var(--primary); */
}

.logo-footer {
    width: 5em;
}

.icon-footer {
    width:3em;
    height:3em;
    display: flex;
    border-radius: 9999px;
    color: var(--primary);
    font-size: 14px;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.header-nav{
    .nav-link {
        border-radius: 10px;
        &:hover {
            background: var(--primary);
            color: white;

        }
    }
}

.float-button {
    font-size: 30px;
    background: rgb(23, 175, 23);
    width: 60px;
    height: 60px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
}

.float-container{
    position: fixed;
    bottom: -30px;
    right: 0;
}

.float-image {
    width: 15em;
}

@media (max-width: 991px) {
    .title-banner{
        margin-top:3em;
        font-size: 3em;
    }
    .float-image {
        width: 10em;
    }
}
