.phone-link {
    color: black;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-link:hover {
    color: #007AC3 !important;
}
  .link-color-res {
        text-decoration: none;
        color: black; /* Optional: keeps it visually clickable */
        font-weight: 500;
    }

    .link-color-res:hover {
        text-decoration: none; /* Optional: show underline on hover */
    }
.featured-eatery-card {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 410px;
    max-width: 300px;
    margin: 1px auto;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border:1px solid white;
}

.featured-eatery-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.image-box {
    width: 100%;
    height: 193px;
    overflow: hidden;
    margin: 0;
    flex-shrink: 0;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-box {
    padding: 3px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid white;
}

.restaurant-name {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.3;
}

.restaurant-phone {
    margin-bottom: 10px;
}

.restaurant-phone .phone-link {
    font-size: 0.9rem;
    font-weight: 500;
}

.resDescription {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-top: 5px;
}

/* Special offer badge (optional) */
.special-offer-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 2;
}

/* Rating stars (optional) */
.restaurant-rating {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #666;
}

.rating-star {
    color: #ffd700;
    margin-right: 2px;
}

.slider-video {
    opacity: 0;
    transform: scale(1.05);
    z-index: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.slider-video.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slider-text {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-text.active {
    opacity: 1;
}



    /* Mobile page background */
@media (max-width: 767.98px) {
    body {
        background-color: #EADBD3 !important;
    }
}
