/**
 * Hero Simple CSS - DejaVu Restaurante
 * Diseño minimalista para portada
 */

/* Hero Section */
.hero-simple {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-bottom: 2px solid var(--accent, #dbad50);
    padding: 50px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent, #dbad50);
    margin: 0 0 0.5rem 0;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    margin: 0 0 2rem 0;
}

/* Botones */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid;
    min-height: 48px;
}

/* Botón primario - Oferta de tapas */
.btn-primary {
    background: var(--accent, #dbad50);
    color: #000000;
    border-color: var(--accent, #dbad50);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent, #dbad50);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(219, 173, 80, 0.4);
}

/* Botón secundario - Ver Carta */
.btn-secondary {
    background: transparent;
    color: var(--accent, #dbad50);
    border-color: var(--accent, #dbad50);
}

.btn-secondary:hover {
    background: var(--accent, #dbad50);
    color: #000000;
    transform: translateY(-2px);
}

/* Botón de teléfono */
.btn-phone {
    background: #2a2a2a;
    color: #ffffff;
    border-color: #444444;
}

.btn-phone:hover {
    background: var(--accent, #dbad50);
    color: #000000;
    border-color: var(--accent, #dbad50);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .hero-simple {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
}
