-- Insert 5 Point of Interest Categories for Smartsense Tourism Platform
-- Based on the PointOfInterestCategory model structure

INSERT INTO point_of_interest_categories (name_en, name_ro, image, created_at, updated_at) VALUES
(
    'Museums & Cultural Sites',
    'Muzee și Situri Culturale',
    'https://images.unsplash.com/photo-1541961017774-22349e4a1262?w=800&h=600&fit=crop&crop=center',
    NOW(),
    NOW()
),
(
    'Landmarks & Monuments',
    'Repere și Monumente',
    'https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800&h=600&fit=crop&crop=center',
    NOW(),
    NOW()
),
(
    'Restaurants & Dining',
    'Restaurante și Mese',
    'https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=800&h=600&fit=crop&crop=center',
    NOW(),
    NOW()
),
(
    'Adventure & Outdoor',
    'Aventură și Activități în Aer Liber',
    'https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800&h=600&fit=crop&crop=center',
    NOW(),
    NOW()
),
(
    'Entertainment & Nightlife',
    'Divertisment și Viață de Noapte',
    'https://images.unsplash.com/photo-1559339352-11d035aa65de?w=800&h=600&fit=crop&crop=center',
    NOW(),
    NOW()
);

-- Insert 10 Points of Interest for Smartsense Tourism Platform
-- Based on the PointOfInterest model structure

INSERT INTO point_of_interests (name, description, image_url, poi_category_id, created_by_user_id, created_at, updated_at) VALUES
(
    'Louvre Museum',
    'The world''s largest art museum and a historic monument in Paris, France. Home to the Mona Lisa and thousands of other masterpieces.',
    'https://images.unsplash.com/photo-1541961017774-22349e4a1262?w=800&h=600&fit=crop&crop=center',
    1, -- Museums & Cultural Sites category
    1, -- created_by_user_id
    NOW(),
    NOW()
),
(
    'Eiffel Tower',
    'Iconic iron lattice tower on the Champ de Mars in Paris, symbol of France and one of the most recognizable structures in the world.',
    'https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800&h=600&fit=crop&crop=center',
    2, -- Landmarks & Monuments category
    1,
    NOW(),
    NOW()
),
(
    'Le Petit Bistrot',
    'Authentic French cuisine in a charming, intimate setting with traditional recipes passed down through generations.',
    'https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=800&h=600&fit=crop&crop=center',
    3, -- Restaurants & Dining category
    1,
    NOW(),
    NOW()
),
(
    'Sagrada Familia',
    'Antoni Gaudí''s masterpiece basilica in Barcelona, Spain. A UNESCO World Heritage site with stunning architecture.',
    'https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=600&fit=crop&crop=center',
    1, -- Museums & Cultural Sites category
    1,
    NOW(),
    NOW()
),
(
    'Colosseum',
    'Ancient amphitheater in Rome, Italy. The largest ancient amphitheater ever built and a symbol of Imperial Rome.',
    'https://images.unsplash.com/photo-1552832230-cb7e50c8b2a1?w=800&h=600&fit=crop&crop=center',
    2, -- Landmarks & Monuments category
    1,
    NOW(),
    NOW()
),
(
    'Trattoria Romana',
    'Traditional Italian restaurant serving authentic Roman cuisine in the heart of the Eternal City.',
    'https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=800&h=600&fit=crop&crop=center',
    3, -- Restaurants & Dining category
    1,
    NOW(),
    NOW()
),
(
    'British Museum',
    'World-famous museum in London housing a vast collection of world art and artifacts, including the Rosetta Stone.',
    'https://images.unsplash.com/photo-1544966503-7cc5ac882d5f?w=800&h=600&fit=crop&crop=center',
    1, -- Museums & Cultural Sites category
    1,
    NOW(),
    NOW()
),
(
    'Big Ben',
    'Iconic clock tower at the north end of the Houses of Parliament in London, England.',
    'https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=800&h=600&fit=crop&crop=center',
    2, -- Landmarks & Monuments category
    1,
    NOW(),
    NOW()
),
(
    'The Ivy',
    'Celebrated British restaurant in London known for its sophisticated dining experience and celebrity clientele.',
    'https://images.unsplash.com/photo-1559339352-11d035aa65de?w=800&h=600&fit=crop&crop=center',
    3, -- Restaurants & Dining category
    1,
    NOW(),
    NOW()
),
(
    'Acropolis Museum',
    'Modern museum in Athens, Greece, housing artifacts from the Acropolis archaeological site and ancient Greek civilization.',
    'https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=800&h=600&fit=crop&crop=center',
    1, -- Museums & Cultural Sites category
    1,
    NOW(),
    NOW()
);
