/* Placeholder Images CSS for Restaurante El Parrillero */

/* Hero Background */
.hero-bg-placeholder {
    background: linear-gradient(135deg, #000000 0%, #8b4513 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(245, 230, 211, 0.05) 0%, transparent 50%);
    animation: shimmer 3s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Hero Dish */
.hero-dish-placeholder {
    background: linear-gradient(135deg, #f5e6d3 0%, #f4e4c1 100%);
    border: 3px solid #ff6b35;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.hero-dish-placeholder::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    background: 
        radial-gradient(ellipse at center, rgba(255, 107, 53, 0.2) 0%, transparent 70%),
        linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.1) 50%, transparent 60%);
    border-radius: 10px;
}

/* Restaurant Interior */
.interior-placeholder {
    background: linear-gradient(135deg, #f5e6d3 0%, #f4e4c1 100%);
    border: 2px solid #8b4513;
    border-radius: 10px;
    position: relative;
}

.interior-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(139, 69, 19, 0.1) 50%, transparent 100%),
        radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

/* Menu Categories */
.menu-category-placeholder {
    background: linear-gradient(135deg, #f5e6d3 0%, #f4e4c1 100%);
    border: 2px solid #ff6b35;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.menu-category-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    animation: slide 2s infinite;
}

@keyframes slide {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Gallery Items */
.gallery-placeholder {
    background: linear-gradient(135deg, #f5e6d3 0%, #f4e4c1 100%);
    border: 2px solid #8b4513;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

/* Map Placeholder */
.map-placeholder {
    background: linear-gradient(135deg, #f5e6d3 0%, #f4e4c1 100%);
    border: 3px solid #8b4513;
    border-radius: 10px;
    position: relative;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    right: 20%;
    bottom: 20%;
    background: 
        radial-gradient(circle at center, rgba(139, 69, 19, 0.2) 0%, transparent 70%),
        linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.1) 50%, transparent 70%);
    border-radius: 8px;
}

/* Icon Styles */
.placeholder-icon {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.placeholder-icon.large {
    font-size: 3.5rem;
}

.placeholder-icon.medium {
    font-size: 2rem;
}

/* Text Styles */
.placeholder-text {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0.5rem;
}

.placeholder-subtext {
    color: #8b4513;
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
    opacity: 0.8;
}

/* Hover Effects */
.placeholder-hover:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .placeholder-icon {
        font-size: 2rem;
    }
    
    .placeholder-icon.large {
        font-size: 2.5rem;
    }
    
    .placeholder-text {
        font-size: 1rem;
    }
    
    .placeholder-subtext {
        font-size: 0.8rem;
    }
}
