/* style.css */
body {
    background-image: url('pexels.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: #343a40; 
}

.card {
    background-color: rgba(255, 255, 255, 0.85);
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    font-weight: bold;
    color: #d7003a; /* Títulos en rojo vino */
}

.card-text {
    font-size: 1rem;
    line-height: 1.6;
}

.text-end strong {
    color: #d7003a; /* Precios en rojo vino */
}

.border-bottom {
    border-bottom: 2px solid #d7003a !important;
}
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-link {
    color: #d7003a !important;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #b0002a !important;
}

.gluten-free-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            background: linear-gradient(135deg, #4CAF50, #45a049);
            border-radius: 50%;
            margin-left: 6px;
        }
        
        .gluten-free-icon i {
            color: white;
            font-size: 12px;
        }
        
        .card-text {
            position: relative;
        }
