🍔 What Movie Fast Food Order Are You? 🍕
Ever wondered which iconic movie meal matches your vibe? Are you as bold as a Pulp Fiction Big Kahuna Burger? Are you as playful as a SpongeBob Krabby Patty? Or are you as chill as a Home Alone pizza? Take our fun, 6-question quiz to find out! We’ll consider your fast food style. We’ll also think about your movie night crew. Together, we’ll dish up a personalized result that’s as tasty as it sounds. Share your match on Pinterest, Instagram, or X with #FastFoodQuiz and see what your friends get! Ready to dig in? Let’s find your cinematic fast food soulmate! 🎬🍟
What Movie Fast Food Order Are You?
body {
font-family: ‘Roboto’, sans-serif;
margin: 0;
padding: 20px;
background: linear-gradient(135deg, #ff4d4d, #1e90ff);
color: #fff;
display: flex;
justify-content: center;
min-height: 100vh;
overflow-x: hidden;
}
.container {
max-width: 1000px;
width: 100%;
position: relative;
}
h1 {
text-align: center;
font-size: 40px;
color: #ffd700;
text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
margin-bottom: 30px;
}
.progress-bar {
width: 100%;
height: 10px;
background: #333;
border-radius: 5px;
margin-bottom: 20px;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: #ffd700;
width: 0;
transition: width 0.5s ease;
}
.quiz-container, .result-container {
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
padding: 40px;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
margin-bottom: 20px;
opacity: 0;
transform: translateY(20px);
animation: slideIn 0.5s forwards;
}
@keyframes slideIn {
to { opacity: 1; transform: translateY(0); }
}
.question {
font-size: 24px;
font-weight: 700;
color: #d81b60;
text-align: center;
margin-bottom: 25px;
}
.options {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
}
.option {
padding: 15px;
border: 2px solid #ffd700;
border-radius: 12px;
cursor: pointer;
font-size: 16px;
background: #fff;
color: #333;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 10px;
position: relative;
overflow: hidden;
}
.option:hover {
background: #ffd700;
border-color: #d81b60;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.option input {
margin: 0;
}
.option::after {
content: ”;
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
transition: 0.5s;
}
.option:hover::after {
left: 100%;
}
.button-group {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 30px;
}
button {
padding: 12px 30px;
background: #d81b60;
color: white;
border: none;
border-radius: 10px;
cursor: pointer;
font-size: 16px;
font-weight: 600;
transition: all 0.3s ease;
}
button:hover {
background: #b0003a;
box-shadow: 0 5px 15px rgba(216, 27, 96, 0.4);
}
button:disabled {
background: #666;
cursor: not-allowed;
}
.result-container {
display: none;
text-align: center;
}
.result-container h2 {
color: #d81b60;
font-size: 30px;
margin-bottom: 20px;
}
#result-text {
font-size: 18px;
color: #333;
margin-bottom: 20px;
line-height: 1.5;
opacity: 1 !important;
display: block !important;
}
.result-container img {
max-width: 300px;
height: auto;
border-radius: 15px;
margin: 20px auto;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}
.result-container img:hover {
transform: scale(1.05);
}
.affiliate-link a {
display: inline-block;
margin: 20px 0;
padding: 12px 25px;
background: #ffd700;
color: #333;
text-decoration: none;
border-radius: 10px;
font-weight: 600;
transition: background 0.3s ease;
}
.affiliate-link a:hover {
background: #ffca28;
box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}
.affiliate-disclosure {
font-size: 14px;
color: #666;
margin-top: 20px;
}
.social-share {
margin: 20px 0;
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
}
.social-share a {
text-decoration: none;
color: white;
padding: 10px 20px;
border-radius: 8px;
font-size: 14px;
transition: opacity 0.3s ease;
}
.social-share a:hover {
opacity: 0.85;
}
.pinterest { background: #bd081c; }
.instagram { background: #e1306c; }
.twitter { background: #1da1f2; }
.facebook { background: #3b5998; }
.linkedin { background: #0077b5; }
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
align-items: center;
justify-content: center;
z-index: 1000;
}
.modal-content {
background: white;
padding: 20px;
border-radius: 10px;
text-align: center;
max-width: 400px;
width: 90%;
}
.modal-content input {
padding: 10px;
margin: 10px 0;
width: 80%;
border: 1px solid #ccc;
border-radius: 5px;
}
.modal-content button {
margin: 10px;
}
@media (max-width: 768px) {
.container {
padding: 10px;
}
h1 {
font-size: 32px;
}
.question {
font-size: 20px;
}
.options {
grid-template-columns: 1fr;
}
.option {
font-size: 14px;
padding: 12px;
}
button {
padding: 10px 20px;
font-size: 14px;
}
.result-container img {
max-width: 250px;
}
#result-text {
font-size: 16px;
}
}
https://www.googletagmanager.com/gtag/js?id=G-ZREN9LSKEH
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag(‘js’, new Date());
gtag(‘config’, ‘G-ZREN9LSKEH’);
What Movie Fast Food Order Are You?
Your Movie Fast Food Match!
Disclosure: This page contains affiliate links. If you purchase through these links, we may earn a commission at no extra cost to you.
Retake Quiz
Save Result
Save Your Result
Enter your email to receive your fast food match and exclusive recipes!
Submit
Cancel
const questions = [
{
question: “What’s your fast food vibe?”,
options: [“Classic”, “Quirky”, “Gourmet”, “Simple”]
},
{
question: “Pick a movie genre!”,
options: [“Action”, “Animated”, “Thriller”, “Comedy”]
},
{
question: “What’s your go-to flavor?”,
options: [“Savory”, “Sweet”, “Spicy”, “Tangy”]
},
{
question: “How do you order food?”,
options: [“Quick”, “Picky”, “Adventurous”, “Routine”]
},
{
question: “What’s your movie night crew?”,
options: [“Solo”, “Friends”, “Family”, “Date”]
},
{
question: “Pick a side!”,
options: [“Fries”, “Onion Rings”, “Soda”, “Milkshake”]
}
];
const results = [
{
food: “Big Kahuna Burger (Pulp Fiction)”,
description: “You’re bold and intense, just like the iconic Big Kahuna Burger from *Pulp Fiction*! You love a hearty, no-nonsense meal that packs a punch.”,
image: “
https://atenajos.blog/wp-content/uploads/2025/08/def47-big-kahuna-burger-pulp-fiction.png”, // Placeholder; replace with Amazon API image
affiliateLink: ‘
Get a burger press for your Big Kahuna Burger!‘
},
{
food: “Krabby Patty (SpongeBob SquarePants)”,
description: “You’re fun and imaginative, just like the Krabby Patty from *SpongeBob SquarePants*! Your playful spirit loves a burger with a side of creativity.”,
image: “
https://atenajos.blog/wp-content/uploads/2025/08/b72d5-krabby-patty-spongebob-squarepants.png”, // Placeholder; replace with Amazon API image
affiliateLink: ‘
Buy a griddle pan for your Krabby Patty!‘
},
{
food: “Pizza (Home Alone)”,
description: “You’re easygoing and nostalgic, just like the classic pizza from *Home Alone*! You love a crowd-pleasing meal that brings everyone together.”,
image: “
https://atenajos.blog/wp-content/uploads/2025/08/715db-pizza-home-alone.png”, // Placeholder; replace with Amazon API image
affiliateLink: ‘
Grab a pizza cutter for your Home Alone pizza!‘
},
{
food: “In-N-Out Burger (The Big Lebowski)”,
description: “You’re chill and iconic, just like the In-N-Out Burger from *The Big Lebowski*! You keep it cool with a classic, satisfying meal.”,
image: “
https://atenajos.blog/wp-content/uploads/2025/08/229f2-in-n-out-burger-the-big-lebowski.png”, // Placeholder; replace with Amazon API image
affiliateLink: ‘
Get a fry basket for your In-N-Out fries!‘
},
{
food: “Tacos (Deadpool)”,
description: “You’re witty and flavorful, just like the tacos from *Deadpool*! You bring spice and humor to every meal.”,
image: “
https://atenajos.blog/wp-content/uploads/2025/08/80034-tacos-deadpool.png”, // Placeholder; replace with Amazon API image
affiliateLink: ‘
Buy a taco holder for your Deadpool tacos!‘
}
];
let currentQuestion = 0;
let score = 0;
let userResponses = [];
const abTestVariant = Math.random() {
const div = document.createElement(‘div’);
div.className = ‘option’;
div.innerHTML = `
${option}`;
div.onclick = () => selectOption(index, option);
optionsDiv.appendChild(div);
});
updateProgress();
document.getElementById(‘nextBtn’).disabled = true;
} catch (error) {
console.error(‘Error loading question:’, error);
alert(‘An error occurred. Please refresh the page.’);
}
}
function selectOption(index, option) {
try {
console.log(`Selected option: ${option} (index: ${index}, question: ${currentQuestion + 1})`);
score += index;
userResponses[currentQuestion] = option;
localStorage.setItem(‘fastFoodQuizResponses’, JSON.stringify(userResponses));
document.getElementById(‘nextBtn’).disabled = false;
document.querySelectorAll(‘.option’).forEach(opt => opt.classList.remove(‘selected’));
document.querySelector(`#opt${index}`).parentElement.classList.add(‘selected’);
trackEvent(‘select_option’, { question: currentQuestion + 1, option: option, variant: abTestVariant });
} catch (error) {
console.error(‘Error selecting option:’, error);
}
}
function nextQuestion() {
try {
console.log(`Moving to question ${currentQuestion + 2}, current score: ${score}`);
currentQuestion++;
if (currentQuestion < questions.length) {
loadQuestion();
} else {
showResult();
}
} catch (error) {
console.error('Error in nextQuestion:', error);
alert('An error occurred. Please refresh the page.');
}
}
function updateProgress() {
const progress = (currentQuestion / questions.length) * 100;
document.getElementById('progressFill').style.width = `${progress}%`;
}
function showResult() {
try {
console.log(`Showing result, final score: ${score}`);
document.getElementById('quiz').style.display = 'none';
const resultContainer = document.getElementById('result');
resultContainer.style.display = 'block';
// Calculate result index
let resultIndex;
if (score <= 4) resultIndex = 0; // Big Kahuna Burger
else if (score <= 8) resultIndex = 1; // Krabby Patty
else if (score <= 12) resultIndex = 2; // Pizza
else if (score {
console.warn(‘Image failed to load, using fallback’);
imgElement.src = ‘
https://via.placeholder.com/300?text=Product+Image’;
};
document.getElementById(‘result-image’).innerHTML = ”;
document.getElementById(‘result-image’).appendChild(imgElement);
// Set affiliate link
document.getElementById(‘affiliate-link’).innerHTML = result.affiliateLink;
trackEvent(‘quiz_completed’, { score: score, result: result.food, variant: abTestVariant });
} catch (error) {
console.error(‘Error showing result:’, error);
document.getElementById(‘result-text’).innerText = ‘Error displaying result. Please try again.’;
}
}
function resetQuiz() {
try {
console.log(‘Resetting quiz’);
currentQuestion = 0;
score = 0;
userResponses = [];
localStorage.removeItem(‘fastFoodQuizResponses’);
document.getElementById(‘quiz’).style.display = ‘block’;
document.getElementById(‘result’).style.display = ‘none’;
loadQuestion();
trackEvent(‘quiz_reset’, { variant: abTestVariant });
} catch (error) {
console.error(‘Error resetting quiz:’, error);
}
}
function showEmailModal() {
document.getElementById(’emailModal’).style.display = ‘flex’;
}
function closeModal() {
document.getElementById(’emailModal’).style.display = ‘none’;
}
function saveEmail() {
const email = document.getElementById(‘userEmail’).value;
if (email.match(/^[^\s@]+@[^\s@]+\.[^\s@]+$/)) {
console.log(`Subscribed: ${email}`);
trackEvent(’email_subscribed’, { email: email, variant: abTestVariant });
alert(‘Thank you for subscribing! Check your email for your result and recipes.’);
closeModal();
} else {
alert(‘Please enter a valid email.’);
}
}
function shareOnPinterest() {
const resultText = document.getElementById(‘result-text’).innerText || ‘Check out my fast food match!’;
const url = `https://atomic-temporary-240405815.wpcomstaging.com/discover-your-ideal-cat-breed-based-on-personality/?utm_source=pinterest&utm_medium=social&utm_campaign=fast_food_quiz&utm_content=movie_fast_food&utm_term=fast_food_fans&utm_variant=${abTestVariant}`;
window.open(`https://pinterest.com/pin/create/button/?url=${encodeURIComponent(url)}&description=${encodeURIComponent(resultText)}`, ‘_blank’);
trackEvent(‘share_pinterest’, { result: resultText, variant: abTestVariant });
}
function shareOnInstagram() {
alert(“To share on Instagram, take a screenshot of your result and post it with a link to the quiz in your story or bio!”);
trackEvent(‘share_instagram’, { variant: abTestVariant });
}
function shareOnTwitter() {
const resultText = document.getElementById(‘result-text’).innerText || ‘Check out my fast food match!’;
const url = `https://atomic-temporary-240405815.wpcomstaging.com/discover-your-ideal-cat-breed-based-on-personality/?utm_source=twitter&utm_medium=social&utm_campaign=fast_food_quiz&utm_content=movie_fast_food&utm_term=fast_food_fans&utm_variant=${abTestVariant}`;
window.open(`https://twitter.com/intent/tweet?text=${encodeURIComponent(resultText + ‘ Take the quiz: ‘ + url)}`, ‘_blank’);
trackEvent(‘share_twitter’, { result: resultText, variant: abTestVariant });
}
function shareOnFacebook() {
const resultText = document.getElementById(‘result-text’).innerText || ‘Check out my fast food match!’;
const url = `https://atomic-temporary-240405815.wpcomstaging.com/discover-your-ideal-cat-breed-based-on-personality/?utm_source=facebook&utm_medium=social&utm_campaign=fast_food_quiz&utm_content=movie_fast_food&utm_term=fast_food_fans&utm_variant=${abTestVariant}`;
window.open(`https://www.facebook.com/sharer/sharer.php?u=${encodeURIComponent(url)}"e=${encodeURIComponent(resultText)}`, ‘_blank’);
trackEvent(‘share_facebook’, { result: resultText, variant: abTestVariant });
}
function shareOnLinkedIn() {
const resultText = document.getElementById(‘result-text’).innerText || ‘Check out my fast food match!’;
const url = `https://atomic-temporary-240405815.wpcomstaging.com/discover-your-ideal-cat-breed-based-on-personality/?utm_source=linkedin&utm_medium=social&utm_campaign=fast_food_quiz&utm_content=movie_fast_food&utm_term=fast_food_fans&utm_variant=${abTestVariant}`;
window.open(`https://www.linkedin.com/sharing/share-offsite/?url=${encodeURIComponent(url)}`, ‘_blank’);
trackEvent(‘share_linkedin’, { result: resultText, variant: abTestVariant });
}
function trackEvent(eventName, data) {
console.log(`Event: ${eventName}`, data);
// Integrate with Google Analytics: ga(‘send’, ‘event’, eventName, JSON.stringify(data));
}
// Initialize quiz
try {
if (localStorage.getItem(‘fastFoodQuizResponses’)) {
userResponses = JSON.parse(localStorage.getItem(‘fastFoodQuizResponses’));
}
loadQuestion();
trackEvent(‘quiz_started’, { variant: abTestVariant });
} catch (error) {
console.error(‘Error initializing quiz:’, error);
alert(‘Failed to load quiz. Please refresh the page.’);
}