html body {
    background-color: #550404 !important;
}

header {
    border-radius: 50px;
    background-color: #262657 !important;
}

ul > li > a {
    font-size: larger !important;
    color: #f7f1f4 !important;
}

.nav-link {
    color: white !important; /* Change to a contrasting color */
}

.nav-link:hover {
    color: #ff8a00 !important; /* Change to a contrasting color */
    text-decoration: underline; /* Optional: Add underline */
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slide {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes zoom {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes flip {
    from {
        transform: rotateY(90deg);
    }
    to {
        transform: rotateY(0);
    }
}

@keyframes rotate90 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(90deg);
    }
}

@keyframes rotate180 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(180deg);
    }
}

@keyframes rotate270 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(270deg);
    }
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.carousel-fade {
    animation: fade 0.5s;
}

.carousel-rotate90 {
    animation: rotate90 0.5s;
}

.carousel-rotate180 {
    animation: rotate180 0.5s;
}

.carousel-rotate270 {
    animation: rotate270 0.5s;
}

.carousel-rotate360 {
    animation: rotate360 0.5s;
}

.carousel-slide {
    animation: slide 0.5s;
}

.carousel-zoom {
    animation: zoom 0.5s;
}

.carousel-flip {
    animation: flip 0.5s;
}

.carousel-rotate {
    animation: rotate 0.5s;
}

#carouselExampleAutoplaying {
    height: 50vh;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

#carouselExampleAutoplaying .carousel-item,
#carouselExampleAutoplaying .carousel-item img {
    height: 100%;
    object-fit: cover;
}

/* Product card hover effects and animations */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card img {
    transition: transform 0.3s ease;
}

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

.card-body {
    transition: background-color 0.3s ease;
}

.card:hover .card-body {
    background-color: rgba(0, 0, 0, 0.03);
}

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

.card:hover {
    animation: cardBounce 0.8s ease;
}

/* Impressive heading styles */
h2.text-center.mb-4 {
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

h2.text-center.mb-4::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    transform: translateX(-50%);
    border-radius: 2px;
}

@keyframes headingGlow {
    0% {
        text-shadow: 0 0 5px rgba(255, 138, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(229, 46, 113, 0.8);
    }
    100% {
        text-shadow: 0 0 5px rgba(255, 138, 0, 0.5);
    }
}

h2.text-center.mb-4 {
    animation: headingGlow 3s ease-in-out infinite;
}

@keyframes brightSmoke {
    0% {
        opacity: 0.5;
        transform: scale(1);
        filter: hue-rotate(0deg); /* Initial color */
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
        filter: hue-rotate(90deg); /* Change color */
    }
    100% {
        opacity: 0.5;
        transform: scale(1);
        filter: hue-rotate(0deg); /* Reset color */
    }
}

.navbar-brand img {
    border-radius: 50%; /* Makes the image circular */
    width: 40px; /* Set width to match height */
    height: 40px; /* Set height to maintain aspect ratio */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    animation: brightSmoke 2s infinite; /* Apply the animation */
}


footer {
    background: linear-gradient(45deg, #ea6f6f, #3e3a3a);
    color: white;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
}

footer .container {
    position: relative;
    z-index: 1;
}

footer h5 {
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background: #ff8a00;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer p >  a {
    color: #ffffff;
    text-decoration: none;

}

footer ul li a:hover {
    color: #ff8a00;
}

footer .social-icons {
    margin-top: 20px;
}

footer .text-center a {
    color: #ffffff; /* Existing color */
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 2rem; /* Increase size */
    margin: 0 10px;
}

footer .text-center a:hover {
    color: #ff4500; /* Change color to a vibrant orange on hover */
    transform: scale(1.2) rotate(15deg); /* Slightly increase size and rotate on hover */
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.5); /* Change glow effect color */
    animation: bounce 0.5s; /* Add bounce animation */
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

footer .text-center {
    margin-top: 30px;
}
