/* trending-section */
.recipe-card img {
    height: 200px;
    object-fit: cover;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.food-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.food-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.food-item:hover img {
    transform: scale(1.05);
}

.food-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    transition: bottom 0.3s ease;
}

.food-item:hover .food-overlay {
    bottom: 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    background: rgba(0, 0, 0, 0.2);
}

.dont-miss-card {
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.dont-miss-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dont-miss-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
}



/* navbar */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-link {
    font-size: 1.1rem;
    margin-left: 1.5rem;
}



/* hero-section */
.hero {
    height: 65vh;
    background: url('https://i0.wp.com/blog.petpooja.com/wp-content/uploads/2021/10/indian.jpg?resize=696%2C385&ssl=1') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-item {
    padding: 20px;
}

.g-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 0 50px 0 50px;
    padding: 30px;
    text-align: center;
    color: white;
    max-width: 400px;
    margin: 0 auto;
}

.s-btn {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid white;
    transition: all 0.3s ease;
}

.s-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.c-dots {
    bottom: -60px;
}

.c-dots [data-bs-target] {
    width: 15px !important;
    height: 15px !important;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    border: none;
    padding: 0;
    opacity: 1;
}

.c-dots .active {
    background-color: white;
    opacity: 1;
}


/* feature-category */
.category-icon {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}