/* Restaurant Cards */
.restaurant-card {
    background: linear-gradient(135deg, #ffffff 0%, #fcf8f3 100%);
    border: 4px solid #2c1810;
    border-radius: 15px;
    padding: 1.75rem;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(249, 215, 28, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.restaurant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        #e63946 0px,
        #e63946 20px,
        #f9d71c 20px,
        #f9d71c 40px
    );
}

.restaurant-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.25),
        inset 0 2px 4px rgba(249, 215, 28, 0.3);
    border-color: #e63946;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
}

.restaurant-name {
    font-size: 1.6rem;
    color: #e63946;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
    flex: 1;
    line-height: 1.2;
}

.stars {
    font-size: 1.4rem;
    color: #f9d71c;
    text-shadow: 
        1px 1px 0 #2c1810,
        2px 2px 0 rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    margin-left: 0.5rem;
}

.restaurant-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px dashed #d0a650;
}

.cuisine-type,
.neighborhood {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #2c1810 0%, #3d2416 100%);
    color: #fcebb6;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.neighborhood {
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    color: #ffffff;
}

.restaurant-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #3d2416;
    margin-bottom: 1.25rem;
}

.restaurant-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #f9d71c 0%, #e8c417 100%);
    color: #2c1810;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid #2c1810;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.restaurant-link:hover {
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.restaurant-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hidden class for filtering */
.hidden {
    display: none;
}