Spaces:
Running
Running
File size: 18,182 Bytes
d1efa38 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us | The Fox & Hounds Acton Turville</title>
<meta name="description" content="Learn about the history and values of The Fox & Hounds, a traditional countryside pub in Acton Turville.">
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#283618',
secondary: '#606C38',
accent: '#DDA15E',
light: '#FEFAE0',
dark: '#BC6C25'
},
fontFamily: {
sans: ['Montserrat', 'sans-serif'],
serif: ['Playfair Display', 'serif'],
},
}
}
}
</script>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- AOS Animation -->
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<!-- Feather Icons -->
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
.about-hero {
background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('http://static.photos/indoor/1200x630/3');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.timeline-item:not(:last-child)::after {
content: '';
position: absolute;
left: 50%;
bottom: -20px;
transform: translateX(-50%);
width: 2px;
height: 20px;
background-color: #DDA15E;
}
.team-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body class="bg-light font-sans text-primary">
<!-- Navigation -->
<nav class="bg-primary text-light 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 space-x-2">
<i data-feather="home" class="text-accent"></i>
<a href="index.html" class="text-xl font-serif font-bold">The Fox & Hounds</a>
</div>
<!-- Mobile menu button -->
<div class="md:hidden">
<button id="mobile-menu-button" class="text-light focus:outline-none">
<i data-feather="menu"></i>
</button>
</div>
<!-- Desktop Menu -->
<div class="hidden md:flex space-x-8">
<a href="index.html" class="hover:text-accent transition">Home</a>
<a href="about.html" class="hover:text-accent transition">About</a>
<a href="menu.html" class="hover:text-accent transition">Menu</a>
<a href="events.html" class="hover:text-accent transition">Events</a>
<a href="gallery.html" class="hover:text-accent transition">Gallery</a>
<a href="contact.html" class="hover:text-accent transition">Contact</a>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden mt-4 pb-4">
<a href="index.html" class="block py-2 hover:text-accent transition">Home</a>
<a href="about.html" class="block py-2 hover:text-accent transition">About</a>
<a href="menu.html" class="block py-2 hover:text-accent transition">Menu</a>
<a href="events.html" class="block py-2 hover:text-accent transition">Events</a>
<a href="gallery.html" class="block py-2 hover:text-accent transition">Gallery</a>
<a href="contact.html" class="block py-2 hover:text-accent transition">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="about-hero h-96 flex items-center justify-center text-center text-light">
<div class="container mx-auto px-4" data-aos="fade-up">
<h1 class="text-4xl md:text-5xl font-serif font-bold mb-4">Our Story</h1>
<p class="text-xl md:text-2xl">Two centuries of hospitality in the heart of Acton Turville</p>
</div>
</section>
<!-- History Section -->
<section class="py-16 bg-light">
<div class="container mx-auto px-4">
<div class="text-center mb-12" data-aos="fade-up">
<h2 class="text-3xl font-serif font-bold mb-4">A Rich History</h2>
<p class="text-lg max-w-3xl mx-auto">Since 1823, The Fox & Hounds has been at the heart of Acton Turville, serving generations of locals and visitors alike.</p>
</div>
<div class="max-w-4xl mx-auto">
<!-- Timeline -->
<div class="relative">
<!-- Timeline item 1 -->
<div class="flex flex-col md:flex-row mb-12" data-aos="fade-up">
<div class="md:w-1/2 md:pr-8 mb-4 md:mb-0 text-right">
<h3 class="text-xl font-serif font-bold">1823</h3>
<p class="text-gray-600">The Fox & Hounds first opens its doors as a coaching inn</p>
</div>
<div class="hidden md:block md:w-1/2"></div>
</div>
<!-- Timeline item 2 -->
<div class="flex flex-col md:flex-row mb-12" data-aos="fade-up" data-aos-delay="100">
<div class="hidden md:block md:w-1/2 md:pr-8"></div>
<div class="md:w-1/2 md:pl-8">
<h3 class="text-xl font-serif font-bold">1920s</h3>
<p class="text-gray-600">Survives prohibition era by focusing on food and accommodation</p>
</div>
</div>
<!-- Timeline item 3 -->
<div class="flex flex-col md:flex-row mb-12" data-aos="fade-up" data-aos-delay="200">
<div class="md:w-1/2 md:pr-8 mb-4 md:mb-0 text-right">
<h3 class="text-xl font-serif font-bold">1954</h3>
<p class="text-gray-600">Major renovation expands the dining area and adds modern amenities</p>
</div>
<div class="hidden md:block md:w-1/2"></div>
</div>
<!-- Timeline item 4 -->
<div class="flex flex-col md:flex-row mb-12" data-aos="fade-up" data-aos-delay="300">
<div class="hidden md:block md:w-1/2 md:pr-8"></div>
<div class="md:w-1/2 md:pl-8">
<h3 class="text-xl font-serif font-bold">2003</h3>
<p class="text-gray-600">Current owners take over, preserving tradition while modernizing the kitchen</p>
</div>
</div>
<!-- Timeline item 5 -->
<div class="flex flex-col md:flex-row" data-aos="fade-up" data-aos-delay="400">
<div class="md:w-1/2 md:pr-8 mb-4 md:mb-0 text-right">
<h3 class="text-xl font-serif font-bold">Present Day</h3>
<p class="text-gray-600">Continues to thrive as a beloved local institution with award-winning food</p>
</div>
<div class="hidden md:block md:w-1/2"></div>
</div>
</div>
</div>
</div>
</section>
<!-- Values Section -->
<section class="py-16 bg-secondary text-light">
<div class="container mx-auto px-4">
<div class="text-center mb-12" data-aos="fade-up">
<h2 class="text-3xl font-serif font-bold mb-4">Our Values</h2>
<p class="text-lg max-w-3xl mx-auto">What makes The Fox & Hounds special</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Value 1 -->
<div class="bg-primary p-6 rounded-lg" data-aos="fade-up" data-aos-delay="100">
<div class="flex justify-center mb-4">
<div class="w-16 h-16 rounded-full bg-accent flex items-center justify-center text-primary">
<i data-feather="heart" class="w-8 h-8"></i>
</div>
</div>
<h3 class="text-xl font-serif font-bold text-center mb-3">Community</h3>
<p class="text-center">We're proud to be at the heart of Acton Turville, supporting local events and charities, and providing a welcoming space for all.</p>
</div>
<!-- Value 2 -->
<div class="bg-primary p-6 rounded-lg" data-aos="fade-up" data-aos-delay="200">
<div class="flex justify-center mb-4">
<div class="w-16 h-16 rounded-full bg-accent flex items-center justify-center text-primary">
<i data-feather="leaf" class="w-8 h-8"></i>
</div>
</div>
<h3 class="text-xl font-serif font-bold text-center mb-3">Sustainability</h3>
<p class="text-center">We source ingredients locally where possible, reduce waste, and maintain eco-friendly practices throughout our operations.</p>
</div>
<!-- Value 3 -->
<div class="bg-primary p-6 rounded-lg" data-aos="fade-up" data-aos-delay="300">
<div class="flex justify-center mb-4">
<div class="w-16 h-16 rounded-full bg-accent flex items-center justify-center text-primary">
<i data-feather="award" class="w-8 h-8"></i>
</div>
</div>
<h3 class="text-xl font-serif font-bold text-center mb-3">Quality</h3>
<p class="text-center">From our carefully selected drinks to our homemade dishes, we never compromise on quality or flavor.</p>
</div>
</div>
</div>
</section>
<!-- Team Section -->
<section class="py-16 bg-light">
<div class="container mx-auto px-4">
<div class="text-center mb-12" data-aos="fade-up">
<h2 class="text-3xl font-serif font-bold mb-4">Meet Our Team</h2>
<p class="text-lg max-w-3xl mx-auto">The friendly faces behind The Fox & Hounds</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Team Member 1 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden team-card transition duration-300" data-aos="fade-up" data-aos-delay="100">
<img src="http://static.photos/people/640x360/1" alt="James Wilson" class="w-full h-64 object-cover">
<div class="p-6">
<h3 class="text-xl font-serif font-bold">James Wilson</h3>
<p class="text-accent font-semibold mb-3">Owner & Head Chef</p>
<p class="text-gray-600">With over 20 years of culinary experience, James brings passion and creativity to our kitchen.</p>
</div>
</div>
<!-- Team Member 2 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden team-card transition duration-300" data-aos="fade-up" data-aos-delay="200">
<img src="http://static.photos/people/640x360/2" alt="Sarah Thompson" class="w-full h-64 object-cover">
<div class="p-6">
<h3 class="text-xl font-serif font-bold">Sarah Thompson</h3>
<p class="text-accent font-semibold mb-3">Manager</p>
<p class="text-gray-600">Sarah ensures everything runs smoothly and that every guest feels welcome and valued.</p>
</div>
</div>
<!-- Team Member 3 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden team-card transition duration-300" data-aos="fade-up" data-aos-delay="300">
<img src="http://static.photos/people/640x360/3" alt="Michael Brown" class="w-full h-64 object-cover">
<div class="p-6">
<h3 class="text-xl font-serif font-bold">Michael Brown</h3>
<p class="text-accent font-semibold mb-3">Head Bartender</p>
<p class="text-gray-600">Michael's extensive knowledge of beers, wines and spirits helps guests find their perfect drink.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Local Suppliers Section -->
<section class="py-16 bg-primary text-light">
<div class="container mx-auto px-4">
<div class="text-center mb-12" data-aos="fade-up">
<h2 class="text-3xl font-serif font-bold mb-4">Our Local Suppliers</h2>
<p class="text-lg max-w-3xl mx-auto">We're proud to support these excellent local producers</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<div class="flex flex-col items-center" data-aos="fade-up" data-aos-delay="100">
<div class="w-24 h-24 rounded-full bg-light flex items-center justify-center mb-4">
<i data-feather="coffee" class="text-primary w-10 h-10"></i>
</div>
<h3 class="font-bold">Acton Farm</h3>
<p class="text-sm text-center">Fresh vegetables</p>
</div>
<div class="flex flex-col items-center" data-aos="fade-up" data-aos-delay="150">
<div class="w-24 h-24 rounded-full bg-light flex items-center justify-center mb-4">
<i data-feather="droplet" class="text-primary w-10 h-10"></i>
</div>
<h3 class="font-bold">Turville Dairy</h3>
<p class="text-sm text-center">Dairy products</p>
</div>
<div class="flex flex-col items-center" data-aos="fade-up" data-aos-delay="200">
<div class="w-24 h-24 rounded-full bg-light flex items-center justify-center mb-4">
<i data-feather="package" class="text-primary w-10 h-10"></i>
</div>
<h3 class="font-bold">Cotswold Butchers</h3>
<p class="text-sm text-center">Quality meats</p>
</div>
<div class="flex flex-col items-center" data-aos="fade-up" data-aos-delay="250">
<div class="w-24 h-24 rounded-full bg-light flex items-center justify-center mb-4">
<i data-feather="wine" class="text-primary w-10 h-10"></i>
</div>
<h3 class="font-bold">Gloucester Vineyard</h3>
<p class="text-sm text-center">Local wines</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-primary text-light py-8">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<div class="flex items-center space-x-2">
<i data-feather="home" class="text-accent"></i>
<a href="index.html" class="text-xl font-serif font-bold">The Fox & Hounds</a>
</div>
<p class="text-sm mt-2">© 2023 The Fox & Hounds Acton Turville. All rights reserved.</p>
</div>
<div class="flex flex-col md:flex-row md:space-x-8 space-y-2 md:space-y-0 text-sm">
<a href="privacy.html" class="hover:text-accent transition">Privacy Policy</a>
<a href="terms.html" class="hover:text-accent transition">Terms of Service</a>
<a href="sitemap.html" class="hover:text-accent transition">Sitemap</a>
</div>
</div>
</div>
</footer>
<!-- Scripts -->
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Initialize animations
AOS.init({
duration: 800,
easing: 'ease-in-out',
once: true
});
// Initialize feather icons
feather.replace();
</script>
</body>
</html>
|