monaco-guide / index.html
Dbdani71's picture
Add 3 files
dab7e95 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Monaco Monte Carlo - The Ultimate Guide</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.hero {
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1580734693996-5fbaa0f7f1ea?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
background-size: cover;
background-position: center;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.parallax {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.activity-card {
transition: all 0.3s ease;
}
.activity-card:hover {
transform: scale(1.03);
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- Navigation -->
<nav class="bg-white shadow-lg sticky top-0 z-50">
<div class="container mx-auto px-4 py-3">
<div class="flex justify-between items-center">
<div class="flex items-center">
<i class="fas fa-crown text-red-500 text-2xl mr-2"></i>
<span class="font-bold text-xl text-gray-800">Monaco Guide</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#attractions" class="text-gray-800 hover:text-red-500">Attractions</a>
<a href="#dining" class="text-gray-800 hover:text-red-500">Dining</a>
<a href="#events" class="text-gray-800 hover:text-red-500">Events</a>
<a href="#hotels" class="text-gray-800 hover:text-red-500">Hotels</a>
<a href="#tips" class="text-gray-800 hover:text-red-500">Tips</a>
</div>
<div class="md:hidden">
<button class="mobile-menu-button">
<i class="fas fa-bars text-gray-800 text-xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="mobile-menu hidden md:hidden bg-white py-2 px-4">
<a href="#attractions" class="block py-2 text-gray-800 hover:text-red-500">Attractions</a>
<a href="#dining" class="block py-2 text-gray-800 hover:text-red-500">Dining</a>
<a href="#events" class="block py-2 text-gray-800 hover:text-red-500">Events</a>
<a href="#hotels" class="block py-2 text-gray-800 hover:text-red-500">Hotels</a>
<a href="#tips" class="block py-2 text-gray-800 hover:text-red-500">Tips</a>
</div>
</nav>
<!-- Hero Section -->
<header class="hero text-white py-32 px-4 text-center">
<div class="max-w-4xl mx-auto">
<h1 class="text-5xl md:text-6xl font-bold mb-6">Discover Monaco Monte Carlo</h1>
<p class="text-xl md:text-2xl mb-8">The playground of the rich and famous - luxury, glamour, and breathtaking Mediterranean views</p>
<div class="flex flex-wrap justify-center gap-4">
<a href="#attractions" class="bg-red-500 hover:bg-red-600 text-white font-bold py-3 px-6 rounded-full transition duration-300">
Explore Attractions
</a>
<a href="#hotels" class="bg-white hover:bg-gray-100 text-gray-800 font-bold py-3 px-6 rounded-full transition duration-300">
Find Hotels
</a>
</div>
</div>
</header>
<!-- Quick Facts -->
<section class="bg-gray-100 py-12">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-8 text-gray-800">Monaco at a Glance</h2>
<div class="grid md:grid-cols-4 gap-6">
<div class="bg-white p-6 rounded-lg shadow text-center">
<div class="text-4xl text-red-500 mb-3">
<i class="fas fa-flag"></i>
</div>
<h3 class="font-bold text-lg mb-2">World's 2nd Smallest Country</h3>
<p class="text-gray-600">Just 2.02 km² in size</p>
</div>
<div class="bg-white p-6 rounded-lg shadow text-center">
<div class="text-4xl text-blue-500 mb-3">
<i class="fas fa-users"></i>
</div>
<h3 class="font-bold text-lg mb-2">Population</h3>
<p class="text-gray-600">Around 38,000 residents</p>
</div>
<div class="bg-white p-6 rounded-lg shadow text-center">
<div class="text-4xl text-yellow-500 mb-3">
<i class="fas fa-euro-sign"></i>
</div>
<h3 class="font-bold text-lg mb-2">Currency</h3>
<p class="text-gray-600">Euro (€)</p>
</div>
<div class="bg-white p-6 rounded-lg shadow text-center">
<div class="text-4xl text-green-500 mb-3">
<i class="fas fa-sun"></i>
</div>
<h3 class="font-bold text-lg mb-2">Climate</h3>
<p class="text-gray-600">300+ sunny days per year</p>
</div>
</div>
</div>
</section>
<!-- Top Attractions -->
<section id="attractions" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Top Attractions in Monaco</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Casino de Monte-Carlo -->
<div class="activity-card bg-white rounded-xl overflow-hidden shadow-lg card-hover">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1580130732473-afd7afe4918b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Casino de Monte-Carlo" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center mb-2">
<div class="bg-red-100 p-2 rounded-full mr-3">
<i class="fas fa-dice text-red-500"></i>
</div>
<h3 class="text-xl font-bold">Casino de Monte-Carlo</h3>
</div>
<p class="text-gray-600 mb-4">The iconic Belle Époque casino featured in James Bond films. Open since 1863.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500"><i class="fas fa-map-marker-alt mr-1"></i> Place du Casino</span>
<span class="text-sm font-semibold">€10-17 entry</span>
</div>
</div>
</div>
<!-- Prince's Palace -->
<div class="activity-card bg-white rounded-xl overflow-hidden shadow-lg card-hover">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1552832230-cb4974ff1e2a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Prince's Palace" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center mb-2">
<div class="bg-blue-100 p-2 rounded-full mr-3">
<i class="fas fa-crown text-blue-500"></i>
</div>
<h3 class="text-xl font-bold">Prince's Palace</h3>
</div>
<p class="text-gray-600 mb-4">Official residence of the Sovereign Prince of Monaco with stunning views.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500"><i class="fas fa-map-marker-alt mr-1"></i> Monaco-Ville</span>
<span class="text-sm font-semibold">€8 entry</span>
</div>
</div>
</div>
<!-- Oceanographic Museum -->
<div class="activity-card bg-white rounded-xl overflow-hidden shadow-lg card-hover">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1559128010-7c1ad6e1b7a3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2073&q=80"
alt="Oceanographic Museum" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center mb-2">
<div class="bg-green-100 p-2 rounded-full mr-3">
<i class="fas fa-fish text-green-500"></i>
</div>
<h3 class="text-xl font-bold">Oceanographic Museum</h3>
</div>
<p class="text-gray-600 mb-4">Marine science museum founded in 1910 by Prince Albert I.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500"><i class="fas fa-map-marker-alt mr-1"></i> Avenue Saint-Martin</span>
<span class="text-sm font-semibold">€16 entry</span>
</div>
</div>
</div>
<!-- Larvotto Beach -->
<div class="activity-card bg-white rounded-xl overflow-hidden shadow-lg card-hover">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Larvotto Beach" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center mb-2">
<div class="bg-yellow-100 p-2 rounded-full mr-3">
<i class="fas fa-umbrella-beach text-yellow-500"></i>
</div>
<h3 class="text-xl font-bold">Larvotto Beach</h3>
</div>
<p class="text-gray-600 mb-4">Monaco's most famous beach with imported white sand and crystal waters.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500"><i class="fas fa-map-marker-alt mr-1"></i> Avenue Princesse Grace</span>
<span class="text-sm font-semibold">Free access</span>
</div>
</div>
</div>
<!-- Monaco Grand Prix Circuit -->
<div class="activity-card bg-white rounded-xl overflow-hidden shadow-lg card-hover">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1605559421013-9a5dcde8b6d3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Monaco Grand Prix Circuit" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center mb-2">
<div class="bg-red-100 p-2 rounded-full mr-3">
<i class="fas fa-flag-checkered text-red-500"></i>
</div>
<h3 class="text-xl font-bold">Grand Prix Circuit</h3>
</div>
<p class="text-gray-600 mb-4">Walk the famous Formula 1 street circuit year-round.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500"><i class="fas fa-map-marker-alt mr-1"></i> Throughout Monaco</span>
<span class="text-sm font-semibold">Free to walk</span>
</div>
</div>
</div>
<!-- Japanese Garden -->
<div class="activity-card bg-white rounded-xl overflow-hidden shadow-lg card-hover">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1558174685-430919a96c1d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80"
alt="Japanese Garden" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center mb-2">
<div class="bg-green-100 p-2 rounded-full mr-3">
<i class="fas fa-tree text-green-500"></i>
</div>
<h3 class="text-xl font-bold">Japanese Garden</h3>
</div>
<p class="text-gray-600 mb-4">Authentic Japanese garden designed by Yasuo Beppu in 1994.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500"><i class="fas fa-map-marker-alt mr-1"></i> Avenue Princesse Grace</span>
<span class="text-sm font-semibold">Free entry</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Luxury Dining -->
<section id="dining" class="py-16 bg-gray-100">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Luxury Dining Experiences</h2>
<div class="grid md:grid-cols-3 gap-8">
<!-- Le Louis XV -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Le Louis XV" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-3">
<h3 class="text-xl font-bold">Le Louis XV - Alain Ducasse</h3>
<span class="bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded">3 Michelin ★</span>
</div>
<p class="text-gray-600 mb-4">Mediterranean haute cuisine in the Hôtel de Paris.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500"><i class="fas fa-map-marker-alt mr-1"></i> Hôtel de Paris</span>
<span class="text-sm font-semibold">€200-400/person</span>
</div>
</div>
</div>
<!-- Blue Bay -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1517248135467-4aea76c069a8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Blue Bay" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-3">
<h3 class="text-xl font-bold">Blue Bay</h3>
<span class="bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded">1 Michelin ★</span>
</div>
<p class="text-gray-600 mb-4">Caribbean-inspired cuisine with French techniques at Monte-Carlo Bay.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500"><i class="fas fa-map-marker-alt mr-1"></i> Monte-Carlo Bay Hotel</span>
<span class="text-sm font-semibold">€120-250/person</span>
</div>
</div>
</div>
<!-- Buddha-Bar -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80"
alt="Buddha-Bar" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3">Buddha-Bar Monte-Carlo</h3>
<p class="text-gray-600 mb-4">Asian fusion cuisine with a trendy lounge atmosphere.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500"><i class="fas fa-map-marker-alt mr-1"></i> Place du Casino</span>
<span class="text-sm font-semibold">€80-150/person</span>
</div>
</div>
</div>
</div>
<div class="mt-12 bg-white rounded-xl p-8 shadow-lg">
<h3 class="text-2xl font-bold mb-4 text-center">More Dining Options</h3>
<div class="grid md:grid-cols-3 gap-6">
<div>
<h4 class="font-semibold mb-2 flex items-center">
<i class="fas fa-pizza-slice text-red-500 mr-2"></i> Casual Dining
</h4>
<ul class="space-y-2">
<li>Stars 'n' Bars - American</li>
<li>La Note Bleue - Beachfront</li>
<li>Pizzeria Monégasque</li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-2 flex items-center">
<i class="fas fa-coffee text-yellow-600 mr-2"></i> Cafés & Bars
</h4>
<ul class="space-y-2">
<li>Café de Paris - Iconic</li>
<li>Horizon Rooftop - Views</li>
<li>Twiga - Club & Dining</li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-2 flex items-center">
<i class="fas fa-ice-cream text-pink-400 mr-2"></i> Sweet Treats
</h4>
<ul class="space-y-2">
<li>Chocolaterie de Monaco</li>
<li>Glacier du Métropole</li>
<li>Ladurée - Macarons</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Events & Festivals -->
<section id="events" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Major Events & Festivals</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Grand Prix -->
<div class="bg-gray-800 text-white rounded-xl overflow-hidden shadow-lg">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1584537746934-1a21b0ae0896?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Monaco Grand Prix" class="w-full h-full object-cover opacity-90">
</div>
<div class="p-6">
<div class="flex items-center mb-3">
<div class="bg-red-500 p-2 rounded-full mr-3">
<i class="fas fa-flag-checkered"></i>
</div>
<h3 class="text-xl font-bold">Monaco Grand Prix</h3>
</div>
<p class="text-gray-300 mb-4">The most prestigious Formula 1 race through Monaco's streets.</p>
<div class="flex justify-between items-center text-sm">
<span><i class="fas fa-calendar-alt mr-1"></i> May</span>
<span><i class="fas fa-ticket-alt mr-1"></i> €100-2000</span>
</div>
</div>
</div>
<!-- Monte-Carlo Masters -->
<div class="bg-gray-800 text-white rounded-xl overflow-hidden shadow-lg">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1518611012118-696072aa579a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Monte-Carlo Masters" class="w-full h-full object-cover opacity-90">
</div>
<div class="p-6">
<div class="flex items-center mb-3">
<div class="bg-green-500 p-2 rounded-full mr-3">
<i class="fas fa-table-tennis"></i>
</div>
<h3 class="text-xl font-bold">Monte-Carlo Masters</h3>
</div>
<p class="text-gray-300 mb-4">ATP Tour Masters 1000 clay court tennis tournament.</p>
<div class="flex justify-between items-center text-sm">
<span><i class="fas fa-calendar-alt mr-1"></i> April</span>
<span><i class="fas fa-ticket-alt mr-1"></i> €50-500</span>
</div>
</div>
</div>
<!-- Monaco Yacht Show -->
<div class="bg-gray-800 text-white rounded-xl overflow-hidden shadow-lg">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1533929736458-ca588d08c8be?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Monaco Yacht Show" class="w-full h-full object-cover opacity-90">
</div>
<div class="p-6">
<div class="flex items-center mb-3">
<div class="bg-blue-500 p-2 rounded-full mr-3">
<i class="fas fa-ship"></i>
</div>
<h3 class="text-xl font-bold">Monaco Yacht Show</h3>
</div>
<p class="text-gray-300 mb-4">The world's leading superyacht show with €4+ billion worth of yachts.</p>
<div class="flex justify-between items-center text-sm">
<span><i class="fas fa-calendar-alt mr-1"></i> September</span>
<span><i class="fas fa-ticket-alt mr-1"></i> €120-500</span>
</div>
</div>
</div>
</div>
<div class="mt-12 grid md:grid-cols-2 gap-8">
<div class="bg-white p-6 rounded-xl shadow-lg">
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-music text-purple-500 mr-3"></i> Monte-Carlo Summer Festival
</h3>
<p class="text-gray-600 mb-4">July-August opera, ballet and classical music performances at the Opéra Garnier Monte-Carlo.</p>
<div class="text-sm text-gray-500">
<i class="fas fa-calendar-alt mr-1"></i> July-August • <i class="fas fa-ticket-alt mr-1"></i> €50-300
</div>
</div>
<div class="bg-white p-6 rounded-xl shadow-lg">
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-fireworks text-red-500 mr-3"></i> National Day
</h3>
<p class="text-gray-600 mb-4">November 19 celebrations with parades, concerts and spectacular fireworks.</p>
<div class="text-sm text-gray-500">
<i class="fas fa-calendar-alt mr-1"></i> November 19 • Free events
</div>
</div>
</div>
</div>
</section>
<!-- Luxury Hotels -->
<section id="hotels" class="py-16 bg-gray-100">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Luxury Hotels in Monaco</h2>
<div class="grid md:grid-cols-3 gap-8">
<!-- Hôtel de Paris -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Hôtel de Paris" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center mb-3">
<div class="bg-yellow-100 p-2 rounded-full mr-3">
<i class="fas fa-star text-yellow-500"></i>
<i class="fas fa-star text-yellow-500"></i>
<i class="fas fa-star text-yellow-500"></i>
<i class="fas fa-star text-yellow-500"></i>
<i class="fas fa-star text-yellow-500"></i>
</div>
<h3 class="text-xl font-bold">Hôtel de Paris</h3>
</div>
<p class="text-gray-600 mb-4">Legendary luxury hotel next to the Casino with a 300,000-bottle wine cellar.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500"><i class="fas fa-map-marker-alt mr-1"></i> Place du Casino</span>
<span class="text-sm font-semibold">€800-3000/night</span>
</div>
</div>
</div>
<!-- Hôtel Hermitage -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1564501049412-61c2a3083791?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2089&q=80"
alt="Hôtel Hermitage" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center mb-3">
<div class="bg-yellow-100 p-2 rounded-full mr-3">
<i class="fas fa-star text-yellow-500"></i>
<i class="fas fa-star text-yellow-500"></i>
<i class="fas fa-star text-yellow-500"></i>
<i class="fas fa-star text-yellow-500"></i>
<i class="fas fa-star text-yellow-500"></i>
</div>
<h3 class="text-xl font-bold">Hôtel Hermitage</h3>
</div>
<p class="text-gray-600 mb-4">Belle Époque palace with panoramic views and Michelin-starred dining.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500"><i class="fas fa-map-marker-alt mr-1"></i> Square Beaumarchais</span>
<span class="text-sm font-semibold">€700-2500/night</span>
</div>
</div>
</div>
<!-- Monte-Carlo Bay -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1540541338287-41700207de49?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Monte-Carlo Bay" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center mb-3">
<div class="bg-yellow-100 p-2 rounded-full mr-3">
<i class="fas fa-star text-yellow-500"></i>
<i class="fas fa-star text-yellow-500"></i>
<i class="fas fa-star text-yellow-500"></i>
<i class="fas fa-star text-yellow-500"></i>
<i class="fas fa-star text-yellow-500"></i>
</div>
<h3 class="text-xl font-bold">Monte-Carlo Bay</h3>
</div>
<p class="text-gray-600 mb-4">Resort-style hotel with lagoon, spa and private beach club.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500"><i class="fas fa-map-marker-alt mr-1"></i> 40 Avenue Princesse Grace</span>
<span class="text-sm font-semibold">€500-2000/night</span>
</div>
</div>
</div>
</div>
<div class="mt-12 bg-white rounded-xl p-8 shadow-lg">
<h3 class="text-2xl font-bold mb-6 text-center">More Accommodation Options</h3>
<div class="grid md:grid-cols-2 gap-6">
<div>
<h4 class="font-semibold mb-3 flex items-center">
<i class="fas fa-hotel text-blue-500 mr-2"></i> Other Luxury Hotels
</h4>
<ul class="space-y-2">
<li>Fairmont Monte Carlo - €400-1500/night</li>
<li>Columbus Monte-Carlo - €300-1000/night</li>
<li>Port Palace - €350-1200/night</li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-3 flex items-center">
<i class="fas fa-home text-green-500 mr-2"></i> Alternative Options
</h4>
<ul class="space-y-2">
<li>Airbnb apartments - €150-500/night</li>
<li>Nice hotels (nearby France) - €100-300/night</li>
<li>Hostels in Menton (30min away) - €30-80/night</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Travel Tips -->
<section id="tips" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Essential Travel Tips</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="bg-blue-50 p-6 rounded-lg">
<div class="text-3xl text-blue-500 mb-3">
<i class="fas fa-passport"></i>
</div>
<h3 class="font-bold text-lg mb-2">Visa Requirements</h3>
<p class="text-gray-600">Monaco isn't in the EU but has open borders with France. Schengen visa rules apply.</p>
</div>
<div class="bg-green-50 p-6 rounded-lg">
<div class="text-3xl text-green-500 mb-3">
<i class="fas fa-language"></i>
</div>
<h3 class="font-bold text-lg mb-2">Language</h3>
<p class="text-gray-600">French is official, but English and Italian are widely spoken in tourist areas.</p>
</div>
<div class="bg-yellow-50 p-6 rounded-lg">
<div class="text-3xl text-yellow-500 mb-3">
<i class="fas fa-money-bill-wave"></i>
</div>
<h3 class="font-bold text-lg mb-2">Money</h3>
<p class="text-gray-600">Euro (€) is the currency. Credit cards accepted everywhere. ATMs widely available.</p>
</div>
<div class="bg-red-50 p-6 rounded-lg">
<div class="text-3xl text-red-500 mb-3">
<i class="fas fa-tshirt"></i>
</div>
<h3 class="font-bold text-lg mb-2">Dress Code</h3>
<p class="text-gray-600">Smart casual for most places. Jacket required at Casino in evening.</p>
</div>
</div>
<div class="mt-12 grid md:grid-cols-2 gap-8">
<div class="bg-white p-6 rounded-xl shadow-lg border border-gray-200">
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-subway text-purple-500 mr-3"></i> Getting Around
</h3>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Walk - Most attractions are within walking distance</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Public elevators - Free lifts connect different levels of the city</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Buses - €2 per ride with 7 lines covering all areas</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Taxis - Expensive but available 24/7 (€15-50 per ride)</span>
</li>
</ul>
</div>
<div class="bg-white p-6 rounded-xl shadow-lg border border-gray-200">
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-exclamation-triangle text-red-500 mr-3"></i> Things to Know
</h3>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-info-circle text-blue-500 mt-1 mr-2"></i>
<span>No photography inside the Casino</span>
</li>
<li class="flex items-start">
<i class="fas fa-info-circle text-blue-500 mt-1 mr-2"></i>
<span>No public beaches - Larvotto is private but free to access</span>
</li>
<li class="flex items-start">
<i class="fas fa-info-circle text-blue-500 mt-1 mr-2"></i>
<span>Drinking age is 18, but clubs/bars often enforce 21+</span>
</li>
<li class="flex items-start">
<i class="fas fa-info-circle text-blue-500 mt-1 mr-2"></i>
<span>Smoking banned in public places except designated areas</span>
</li>
</ul>
</div>
</div>
<div class="mt-12 bg-yellow-50 p-8 rounded-xl border border-yellow-200">
<h3 class="text-2xl font-bold mb-4 text-center flex justify-center items-center">
<i class="fas fa-lightbulb text-yellow-500 mr-3"></i> Money-Saving Tips
</h3>
<div class="grid md:grid-cols-3 gap-6">
<div>
<h4 class="font-semibold mb-2">Transport</h4>
<ul class="space-y-2 text-gray-700">
<li>Walk - Monaco is tiny</li>
<li>Use public elevators</li>
<li>Buy bus day pass (€5.50)</li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-2">Dining</h4>
<ul class="space-y-2 text-gray-700">
<li>Eat lunch specials</li>
<li>Picnic at parks</li>
<li>Drink at happy hours</li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-2">Sightseeing</h4>
<ul class="space-y-2 text-gray-700">
<li>Free walking tours</li>
<li>Visit free attractions</li>
<li>Student discounts</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Call to Action -->
<section class="py-16 bg-gradient-to-r from-blue-800 to-purple-700 text-white">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Experience Monaco?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto">Plan your perfect trip to the jewel of the French Riviera</p>
<div class="flex flex-wrap justify-center gap-4">
<a href="#" class="bg-white hover:bg-gray-100 text-blue-800 font-bold py-3 px-6 rounded-full transition duration-300">
Book Your Hotel
</a>
<a href="#" class="bg-transparent hover:bg-white hover:bg-opacity-20 border-2 border-white text-white font-bold py-3 px-6 rounded-full transition duration-300">
Download Guide PDF
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-crown text-red-500 mr-2"></i> Monaco Guide
</h3>
<p class="text-gray-400">Your complete resource for visiting Monaco Monte Carlo - attractions, hotels, dining and travel tips.</p>
</div>
<div>
<h4 class="font-bold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#attractions" class="text-gray-400 hover:text-white">Attractions</a></li>
<li><a href="#dining" class="text-gray-400 hover:text-white">Dining</a></li>
<li><a href="#events" class="text-gray-400 hover:text-white">Events</a></li>
<li><a href="#hotels" class="text-gray-400 hover:text-white">Hotels</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Official Tourism Site</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Transport Info</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Event Calendar</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Maps</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Connect</h4>
<div class="flex space-x-4 mb-4">
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-facebook"></i></a>
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-pinterest"></i></a>
</div>
<p class="text-gray-400">Subscribe for updates:</p>
<div class="mt-2 flex">
<input type="email" placeholder="Your email" class="px-3 py-2 bg-gray-800 text-white rounded-l focus:outline-none w-full">
<button class="bg-red-500 hover:bg-red-600 text-white px-4 rounded-r">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-500">
<p>&copy; 2023 Monaco Guide. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.querySelector('.mobile-menu-button').addEventListener('click', function() {
document.querySelector('.mobile-menu').classList.toggle('hidden');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
document.querySelector('.mobile-menu').classList.add('hidden');
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Dbdani71/monaco-guide" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>