html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    padding-top: 70px;
}


@media (min-width: 992px) {
    .category-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        justify-content: space-between;
    }

    .category-image {
        margin-top: 3px;
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 50%;
    }

    .category-name {
        margin-top: 4px;
        font-size: 16px;
    }

    .shadowed-heading {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    .card-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .card-text {
        color: #555;
        font-size: 15px;
    }
}


@media (max-width: 991px) and (min-width: 576px) {
    .category-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        justify-content: space-between;
    }

    .category-image {
        margin-top: 3px;
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 50%;
    }

    .category-name {
        margin-top: 4px;
        font-size: 14px;
    }

    .shadowed-heading {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    .card-title {
        font-size: 17px;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .card-text {
        color: #555;
        font-size: 14px;
    }
}


@media (max-width: 575px) {
    .category-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        justify-content: space-between;
    }

    .category-image {
        margin: 5px;
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 50%;
    }

    .category-name {
        margin-top: 4px;
        font-size: 12px;
        text-align: center;
    }


    .shadowed-heading {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    .card-title {
        font-size: 13px;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .card-text {
        color: #555;
        font-size: 12px;
    }
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {

    background-color: papayawhip;
    
}




.card-link {
    display: block;
    text-align: center;
    background-color: #f0f0f0;
    color: #555;
    padding: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .card-link:hover {
        background-color: #ccc;
    }

.item-details {
    display: none;
}

    .item-details.show {
        display: block;
    }

.instagram-logo {
    font-size: 40px;
}


.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
}

.footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 12px;
    
}

.instagram-link {
    color: #c13584;
    font-size: 18px;
    margin-left: 8px;
    margin-right: 8px;
}



@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.content-container {
    animation: fade-in 3s ease-out;
}


@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.list-group-items {
    animation: slide-in 2.5s ease-out;
    animation-fill-mode: forwards;
}


.category-container {
    border-bottom: 1px solid white;
    margin-bottom: 20px;
}

.background_images {
    background-repeat:no-repeat;
    background-size: cover;
    position: relative;
    background-position: center center;
    
}

.bright-text {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.2), 0 0 50px rgba(255, 255, 255, 0.1);
}

.elevated-card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


@media (min-width: 992px) {
    .card-columns {
        column-count: 3;
    }
}


@media (max-width: 991px) and (min-width: 576px) {
    .card-columns {
        column-count: 2;
    }
}


@media (max-width: 575px) {
    .card-columns {
        column-count: 1;
    }
}


@media (min-width: 992px) {
    .card {
        width: 900px;
        max-width: 100%;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 5px;
        display: flex;
        flex-direction:row;
        transition: transform 0.3s ease-in-out;
    }
}


@media (max-width: 991px) and (min-width: 576px) {
    .card {
        width: 500px;
        max-width: 100%;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 5px;
        display: flex;
        flex-direction: row;
        transition: transform 0.3s ease-in-out;
    }
}


@media (max-width: 575px) {
    .card {
        width: 265px;
        max-width: 100%;
        background-color: #fff;
        
        border-radius: 8px;
        overflow: hidden;

        display: flex;
        flex-direction:column;
        transition: transform 0.3s ease-in-out;
       
    }
}





@media (min-width: 992px) {
    .carousel-image {
        height: 600px;
        object-fit: cover;
    }
}


@media (max-width: 991px) and (min-width: 576px) {
    .carousel-image {
        height: 400px;
        object-fit: cover;
    }
}


@media (max-width: 575px) {
    .carousel-image {
        height: 200px;
        object-fit: cover;
    }
}

.card:hover {
    transform: translateY(-5px);
}



.carousel-caption {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px;
    box-sizing: border-box;
}

.image-name {
    position: absolute;   
    background-color: black;
    color: white;
    padding: 5px 10px;
}


#scroll-to-top {
    display: none;
    position: fixed;
    bottom: 110px;
    right: 20px;
    z-index: 99;
}

    #scroll-to-top a {
        width: 40px;
        height: 40px;
        background-color: #555;
        color: #fff;
        border-radius: 50%;
        text-align: center;
        font-size: 24px;
        line-height: 40px;
        text-decoration: none;
    }

        #scroll-to-top a:hover {
            background-color: #333;
        }