
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playwrite+AU+SA:wght@100..400&family=Roboto:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
*{
    padding: 0;
    margin: 0;
    font-family: "roboto";
}

nav{
    width: 100%;
    background:   #ff0a54;
    top: 0;
    height: 70px;
    padding-right: 40px;
    padding-left: 10px;
    position: fixed;
    z-index: 999;

}
nav ul{
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding: 15px 0 0 0;
}
nav ul li{
    /* height: 40px; */
    display: flex;
    align-items: center;
}
li:first-child{
    margin-right: auto;
}
.logo{
    padding-left: 25px;
    font-family: "Playwrite AU SA";
    font-size: 25px;
    display: flex;
    align-items: center;
}
li a, li div a{
    padding: 0 14px;
    text-decoration: none;
    font-size: 17px;
    font-family: sans-serif;
    color: #fff;
    font-weight: 400;
}
li div a{
    background-color: #fff;
    padding: 10px 15px;
    color: #ff0a54 !important;
    border-radius: 5px;
}
.sidebar{
    /* border: 1px solid #003049; */
    border-radius: 10px;
    position: fixed;
    left: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 10, 84, 0.5);
    z-index: 999;
    width: 100%;
    max-width: 250px;
    transition: .5s ease-in-out;
    height: 100vh;
    /* transition: .5s ease; */
    
}
.sidebar li{
    width: 100%;
    margin-top: 5px;
}
.sidebar a{
    width: 100%;
    color:  #fff;
    padding-left: 30px;
    padding-bottom: 10px;
}
.hidden{
    display: none;
}
.fa-solid{
    color: #fff;
    font-size: 25px;
}
.active .sidebar{
    left: calc(100% - 249px);
  }

/* cart */
.cart-container{
    position: relative;
    color: #fff;
}
.cart-container span{
    position: absolute;
    color: red;
    top: 13px;
    left: 10px;
    height: 15px;
    width: 15px;
    display: flex;
    justify-content: center;
    align-items: center;

}








.carousel {
    position: relative; 
    width: 100%;
    max-width: 100vw;
    margin-top: 70px;
    height: auto !important;
}
/* .carousel .slide{
    height: 90vh;
} */
.carousel-item{
    width: 100%;
    height: 100%;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    gap: 0 !important;

}
.image-layer {
    position: relative;
    display: inline-block; /* Ensures it wraps around the image */
    /* height: 100%; */
}

.image-layer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: rgba(0, 0, 0, 0.2); /* Adjust darkness here */
    z-index: 1;
}
.image-layer img {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0; /* Keeps image below overlay */
}
.carousel-caption{
    position: absolute  !important;
    bottom: 30% !important;
    
}
.carousel-caption h2{
    font-size: 30px;
    padding-bottom: 20px;
    font-family: "Great Vibes";
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.carousel-caption p{
    font-size: 20px;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.carousel-item.active .carousel-caption h2, .carousel-item.active .carousel-caption p{
    opacity: 1;
    transform: translateY(0);
}


.carousel-control-prev, .carousel-control-next{
    width: 8% !important;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-size: contain !important;
    width: 40px !important; 
    height: 40px !important;
    filter: invert(22%) sepia(100%) saturate(7471%) hue-rotate(359deg) brightness(107%) contrast(119%) !important;
}
.carousel-control-next-icon:hover,
.carousel-control-prev-icon:hover {
    filter: brightness(1.5);
    transition: 0.3s ease;
}

/* How it works */
.how-it-works{
    width: 100%;
    padding: 2% 5%;
    margin: auto;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)), 
        url('https://kilimanjaro-restaurants.com/images/background-cover.jpg');
    background-size: cover;
    background-position: center;
}
.header{
    text-align: center;
    padding: 40px 0 30px 0;
    font-family: "ubuntu";
    font-weight: 600;
    font-size: 40px;
}
.how-it-works img:hover {
    animation: bounce .5s ease-in-out;
  }
  
@keyframes bounce {
    0% { transform: translateY(0); }
    25% { transform: translateY(-20px); }
    50% { transform: translateY(0); }
    75% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }
.reveal{
    opacity: 0;
    transform: translateY(20px);
    transition: all ease-in-out .5s;
}
.reveal.visible{
    opacity: 1;
    transform: translateY(0);
}

.right-to-left{
    opacity: 0;
    transform: translateX(20px);
    transition: all ease-in-out .5s;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.right-to-left.visible{
    opacity: 1;
    transform: translateX(0);
}
.left-to-right{
    opacity: 0;
    transform: translateX(-20px);
    transition: all ease-in-out .5s;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.left-to-right.visible{
    opacity: 1;
    transform: translateX(0);
}
.how-it-works h3{
    font-size: 40px;
    font-family: "Great Vibes";
    padding-bottom: 5px;
    color: #ff0a54;
}
.images .image-2{
    position: absolute;
    left: 500px;
}
.fast-delivery,.order-with-app{
    width: 90%;
    margin: auto;
    padding-top: 50px;
}
.fast-delivery h2,.order-with-app h2{
    font-size: 40px;
    font-family: "Great Vibes";
    padding-bottom: 5px;
    color: #ff0a54;
}
.special-offers{
    background-color: #ff0a54;
}
/* Our Food */
.our-food{
    width: 100%;
    padding: 20px 10%;
    margin: auto;
    background: 
        linear-gradient(rgba(70, 0, 25, 0.05), rgba(100, 0, 0, 0.05)), 
        url('https://kilimanjaro-restaurants.com/images/background-cover.jpg');
    background-size: cover;
    background-position: center;
}
.our-food h2{
    font-size: 40px;
    font-family: "Ubuntu";
    padding-bottom: 5px;
    text-align: center;
}
.card{
    box-shadow: 0  4px 8px rgba(0, 0, 0, 0.5) !important; 
    transition: transform 0.3s ease; 
}

.card:hover {
    transform: translateY(-7px);
}
.card img{
    height: 250px;
    object-fit: cover;
}

.card-body .card-title{
    font-size: 18px;
    font-family: "ubuntu";
    padding-bottom: 5px;
    color: #ff0a54;
    text-transform: capitalize;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card-body .card-text{
    font-family: "roboto";
    padding-bottom: 5px;
    color: rgba(0, 0, 0, 0.9);
    font-style: italic;
    flex-grow: 1;
    /* height: 90px; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: inherit;
}
.card-body .btn{
    background-color: #ff0a54;
    color: #fff;
    padding: 8px 25px;
    border-radius: 5px;
    transition: .5s ease;
}
.card-body .btn:hover{
    background-color: rgba(0, 0, 0, 0.3);
    color: #ff0a54;
    transition: .5s ease;
}
.our-food .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Space between items */
}

/* Default: 1 per row (Mobile) */
.our-food .col-md-3 {
    flex: 1 1 100%;
    max-width: 100%;
}

/* Tablets (iPad Pro & Similar): 2 per row */
@media screen and (min-width: 768px) and (max-width: 1199px) { 
    .our-food .col-md-3 {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

/* PC & Larger Screens: 4 per row */
@media screen and (min-width: 1200px) { 
    .our-food .col-md-3 {
        flex: 1 1 calc(25% - 20px);
        max-width: calc(25% - 20px);
    }
}


/* Testimonial */
/* Swiper Container */
.slider-wrapper {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto; /* Center it */
    padding: 20px;
    position: relative;
}


/* Name Styling */
.swiper-slide h2 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

/* Review Text */
.swiper-slide p {
    font-size: 16px;
    color: #555;
    margin: 10px 0;
    font-style: italic;
}

/* Star Rating */
.swiper-slide span {
    font-size: 20px;
    color: #ff9800;
}

/* ===== Navigation Buttons (Move Outside) ===== */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ff9800 !important;
    font-size: 30px;
    transition: opacity 0.3s ease-in-out;
    z-index: 10;
}

.swiper-button-prev {
    left: -60px; /* Move left outside */
}

.swiper-button-next {
    right: -60px; /* Move right outside */
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    opacity: 0.7;
}

/* ===== Pagination Dots (Move Below) ===== */
.swiper-pagination {
    position: relative;
    margin-top: 60px !important; /* Push it below */
}

.swiper-pagination-bullet {
    background-color: #ff9800 !important;
    height: 9px !important;
    width: 9px !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* .card-list{
    margin-bottom: 55px;
} */
 .card-item{
    width: 400px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(225, 225, 225, 0.2);
    border: 1px solid #ddd;

}
.card-item .user-image{
    border: 3px solid #ff0a54;
    padding: 2px;
    margin-bottom: 40px;
} 


















#customAlert {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    
}
/* faq-section */
.faq-section {
    padding: 50px 0;
    background: 
        linear-gradient(rgba(248, 249, 250,0.5), rgba(175, 167, 167, 0.05)), 
        url('https://kilimanjaro-restaurants.com/images/background-cover.jpg');
    background-size: cover;     

}
.accordion-button {
    font-size: 18px;
    font-weight: bold;
}
.accordion-body {
    font-size: 16px;
    color: #555;
}















































@media screen and (max-width: 800px){
    nav ul{
        padding-top: 20px;
    }
    .hidden{
        display: flex;
    }
    nav a{
        padding: 0 8px;
    }
    .hideOnMobile{
        display:none;
    }
    .logo{
        font-size: 20px;
    }
    .carousel-caption{
        bottom: 10% !important;
    }
    .carousel-caption h2{
        font-size: 25px;
        padding-bottom: 20px;
    }
    .carousel-caption p{
        font-size: 15px;
    }
    .right-to-left{
        margin-top: 30px;
        transform: translateY(20px);
        height: auto;
    }
    .left-to-right{
        height: auto;
    }
    .right-to-left.visible{
        opacity: 1;
        transform: translateY(0);
    }
    #customAlert {
        width: 90%;
    }
    .our-food{
        padding: 20px 7%;
    }
}
@media screen and (min-width: 1280px) { 
    .carousel-inner,
    .carousel-item {
        height: 90vh !important; /* Set height to 90vh on PC */
    }
}