Spaces:
Running
Running
File size: 23,013 Bytes
d4b99cf 5c80351 d4b99cf |
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 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OOOral | Brutalist Architecture</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>
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Archivo+Black&display=swap');
body {
font-family: 'Space Mono', monospace;
background-color: #000;
color: #fff;
overflow-x: hidden;
}
.title-font {
font-family: 'Archivo Black', sans-serif;
}
.brutal-border {
border: 6px solid #fff;
box-shadow: 12px 12px 0 #fff;
}
.brutal-border-thin {
border: 3px solid #fff;
box-shadow: 6px 6px 0 #fff;
}
.brutal-btn {
transition: all 0.3s ease;
}
.brutal-btn:hover {
transform: translate(3px, 3px);
box-shadow: none;
}
.project-card {
transition: all 0.5s ease;
}
.project-card:hover {
transform: scale(1.03);
z-index: 10;
}
.menu-open {
transform: translateX(0);
}
.menu-closed {
transform: translateX(100%);
}
.text-stroke {
-webkit-text-stroke: 2px white;
color: transparent;
}
/* Glitch effect styles */
.glitch {
position: relative;
}
.glitch::before,
.glitch::after {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.glitch::before {
left: 2px;
text-shadow: -2px 0 #ff00c1;
clip: rect(44px, 450px, 56px, 0);
animation: glitch-anim 5s infinite linear alternate-reverse;
}
.glitch::after {
left: -2px;
text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
clip: rect(44px, 450px, 56px, 0);
animation: glitch-anim2 5s infinite linear alternate-reverse;
}
@keyframes glitch-anim {
0% { clip: rect(31px, 9999px, 94px, 0); }
10% { clip: rect(112px, 9999px, 76px, 0); }
20% { clip: rect(85px, 9999px, 77px, 0); }
30% { clip: rect(27px, 9999px, 97px, 0); }
40% { clip: rect(64px, 9999px, 98px, 0); }
50% { clip: rect(61px, 9999px, 85px, 0); }
60% { clip: rect(99px, 9999px, 114px, 0); }
70% { clip: rect(34px, 9999px, 115px, 0); }
80% { clip: rect(98px, 9999px, 129px, 0); }
90% { clip: rect(43px, 9999px, 96px, 0); }
100% { clip: rect(82px, 9999px, 64px, 0); }
}
@keyframes glitch-anim2 {
0% { clip: rect(65px, 9999px, 119px, 0); }
10% { clip: rect(66px, 9999px, 151px, 0); }
20% { clip: rect(33px, 9999px, 149px, 0); }
30% { clip: rect(147px, 9999px, 132px, 0); }
40% { clip: rect(55px, 9999px, 75px, 0); }
50% { clip: rect(122px, 9999px, 66px, 0); }
60% { clip: rect(149px, 9999px, 144px, 0); }
70% { clip: rect(99px, 9999px, 136px, 0); }
80% { clip: rect(118px, 9999px, 103px, 0); }
90% { clip: rect(15px, 9999px, 75px, 0); }
100% { clip: rect(58px, 9999px, 149px, 0); }
}
.marquee {
animation: marquee 20s linear infinite;
}
@keyframes marquee {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
</style>
</head>
<body class="min-h-screen">
<!-- Navigation -->
<nav class="fixed w-full z-50 bg-black p-4 flex justify-between items-center border-b-4 border-white">
<div class="title-font text-3xl">OOOral</div>
<div class="hidden md:flex space-x-8">
<a href="#work" class="hover:text-yellow-400 transition">Work</a>
<a href="#about" class="hover:text-yellow-400 transition">About</a>
<a href="#services" class="hover:text-yellow-400 transition">Services</a>
<a href="#contact" class="hover:text-yellow-400 transition">Contact</a>
</div>
<button id="menuBtn" class="md:hidden text-2xl">
<i class="fas fa-bars"></i>
</button>
</nav>
<!-- Mobile Menu -->
<div id="mobileMenu" class="fixed top-0 right-0 h-full w-3/4 bg-black border-l-4 border-white z-50 p-8 transition-transform duration-300 ease-in-out menu-closed">
<div class="flex justify-between items-center mb-12">
<div class="title-font text-3xl">OOOral</div>
<button id="closeMenuBtn" class="text-2xl">
<i class="fas fa-times"></i>
</button>
</div>
<div class="flex flex-col space-y-8 text-2xl">
<a href="#work" class="hover:text-yellow-400 transition">Work</a>
<a href="#about" class="hover:text-yellow-400 transition">About</a>
<a href="#services" class="hover:text-yellow-400 transition">Services</a>
<a href="#contact" class="hover:text-yellow-400 transition">Contact</a>
</div>
</div>
<!-- Hero Section -->
<section class="min-h-screen flex items-center justify-center relative overflow-hidden pt-16">
<div class="absolute inset-0 bg-black opacity-70"></div>
<video autoplay muted loop class="absolute w-full h-full object-cover">
<source src="https://assets.mixkit.co/videos/preview/mixkit-concrete-building-under-construction-31200-large.mp4" type="video/mp4">
</video>
<div class="max-w-6xl mx-auto px-6 relative z-10 text-center">
<h1 class="title-font text-6xl md:text-9xl mb-6 text-white">
<span class="glitch text-stroke" data-text="BRUTAL">BRUTAL</span> <span class="text-yellow-400">DESIGN</span>
</h1>
<p class="text-xl md:text-2xl mb-12 max-w-3xl mx-auto">We create uncompromising architectural statements that challenge conventional aesthetics.</p>
<a href="#work" class="brutal-border-thin bg-yellow-400 text-black px-8 py-4 text-xl font-bold inline-block brutal-btn">VIEW OUR WORK</a>
</div>
</section>
<!-- Marquee -->
<div class="bg-yellow-400 text-black py-4 overflow-hidden">
<div class="marquee whitespace-nowrap">
<span class="text-2xl font-bold mx-8">RAW MATERIALS β’ UNFILTERED DESIGN β’ CONCRETE POETRY β’ FUNCTIONAL BRUTALITY β’ RAW MATERIALS β’ UNFILTERED DESIGN β’ CONCRETE POETRY β’ FUNCTIONAL BRUTALITY β’</span>
</div>
</div>
<!-- Work Section -->
<section id="work" class="py-20 bg-black">
<div class="container mx-auto px-6">
<h2 class="title-font text-4xl md:text-6xl mb-16 text-center">SELECTED PROJECTS</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="project-card brutal-border bg-black p-6">
<div class="h-64 bg-gray-800 mb-6 flex items-center justify-center">
<span class="text-4xl">ποΈ</span>
</div>
<h3 class="text-2xl font-bold mb-2">THE BUNKER</h3>
<p class="text-gray-400 mb-4">Berlin, Germany</p>
<p class="mb-4">A reinforced concrete residential complex designed for the post-apocalyptic urban dweller.</p>
<a href="#" class="text-yellow-400 font-bold">EXPLORE β</a>
</div>
<!-- Project 2 -->
<div class="project-card brutal-border bg-black p-6">
<div class="h-64 bg-gray-800 mb-6 flex items-center justify-center">
<span class="text-4xl">π’</span>
</div>
<h3 class="text-2xl font-bold mb-2">MONOLITH TOWER</h3>
<p class="text-gray-400 mb-4">Moscow, Russia</p>
<p class="mb-4">A 40-story office building with exposed concrete surfaces and minimal fenestration.</p>
<a href="#" class="text-yellow-400 font-bold">EXPLORE β</a>
</div>
<!-- Project 3 -->
<div class="project-card brutal-border bg-black p-6">
<div class="h-64 bg-gray-800 mb-6 flex items-center justify-center">
<span class="text-4xl">ποΈ</span>
</div>
<h3 class="text-2xl font-bold mb-2">THE FORTRESS</h3>
<p class="text-gray-400 mb-4">London, UK</p>
<p class="mb-4">A cultural center with massive concrete forms and fortress-like appearance.</p>
<a href="#" class="text-yellow-400 font-bold">EXPLORE β</a>
</div>
</div>
<div class="text-center mt-16">
<a href="#" class="brutal-border-thin bg-white text-black px-8 py-4 text-xl font-bold inline-block brutal-btn">VIEW ALL PROJECTS</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-white text-black">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0 md:pr-12">
<h2 class="title-font text-4xl md:text-6xl mb-8">WE ARE OOOral</h2>
<p class="text-lg mb-6">Founded in 2010, OOOral is an architecture practice dedicated to the brutalist tradition. We believe in raw, honest materials and forms that serve their purpose without decorative pretense.</p>
<p class="text-lg mb-6">Our work is characterized by massive forms, geometric shapes, and a monochrome palette of concrete, steel, and glass.</p>
<p class="text-lg">We operate globally with offices in Berlin, Moscow, and Tokyo.</p>
</div>
<div class="md:w-1/2 brutal-border bg-black text-white p-8">
<h3 class="title-font text-3xl mb-6 text-yellow-400">OUR PHILOSOPHY</h3>
<ul class="space-y-4">
<li class="flex items-start">
<span class="text-yellow-400 mr-4">β </span>
<span>Form follows function, stripped to its essence</span>
</li>
<li class="flex items-start">
<span class="text-yellow-400 mr-4">β </span>
<span>Materials should be honest and unadorned</span>
</li>
<li class="flex items-start">
<span class="text-yellow-400 mr-4">β </span>
<span>Architecture as a social statement</span>
</li>
<li class="flex items-start">
<span class="text-yellow-400 mr-4">β </span>
<span>Brutality as beauty</span>
</li>
<li class="flex items-start">
<span class="text-yellow-400 mr-4">β </span>
<span>Design that withstands time and trends</span>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-black text-white">
<div class="container mx-auto px-6">
<h2 class="title-font text-4xl md:text-6xl mb-16 text-center">OUR SERVICES</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="brutal-border-thin p-8">
<div class="text-4xl mb-6 text-yellow-400">01</div>
<h3 class="text-2xl font-bold mb-4">ARCHITECTURAL DESIGN</h3>
<p>From concept to completion, we design buildings that make bold statements while serving their intended purpose with uncompromising functionality.</p>
</div>
<!-- Service 2 -->
<div class="brutal-border-thin p-8">
<div class="text-4xl mb-6 text-yellow-400">02</div>
<h3 class="text-2xl font-bold mb-4">URBAN PLANNING</h3>
<p>We approach urban spaces with the same brutalist philosophy, creating cityscapes that are efficient, honest, and visually striking.</p>
</div>
<!-- Service 3 -->
<div class="brutal-border-thin p-8">
<div class="text-4xl mb-6 text-yellow-400">03</div>
<h3 class="text-2xl font-bold mb-4">INTERVENTION DESIGN</h3>
<p>Transforming existing structures with brutalist interventions that create dialogue between old and new, soft and hard.</p>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="py-20 bg-yellow-400 text-black">
<div class="container mx-auto px-6">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
<div class="brutal-border-thin p-6">
<div class="title-font text-4xl md:text-6xl mb-2">42</div>
<p class="text-lg">PROJECTS COMPLETED</p>
</div>
<div class="brutal-border-thin p-6">
<div class="title-font text-4xl md:text-6xl mb-2">16</div>
<p class="text-lg">COUNTRIES</p>
</div>
<div class="brutal-border-thin p-6">
<div class="title-font text-4xl md:text-6xl mb-2">3</div>
<p class="text-lg">CONTINENTS</p>
</div>
<div class="brutal-border-thin p-6">
<div class="title-font text-4xl md:text-6xl mb-2">β</div>
<p class="text-lg">TONS OF CONCRETE</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-black text-white">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-12 md:mb-0 md:pr-12">
<h2 class="title-font text-4xl md:text-6xl mb-8">CONTACT US</h2>
<p class="text-lg mb-8">Ready to discuss your brutalist vision? We're currently accepting new projects for 2024.</p>
<div class="space-y-6">
<div class="flex items-start">
<span class="text-yellow-400 mr-4 mt-1"><i class="fas fa-map-marker-alt"></i></span>
<div>
<h4 class="font-bold">OFFICES</h4>
<p>Berlin β’ Moscow β’ Tokyo</p>
</div>
</div>
<div class="flex items-start">
<span class="text-yellow-400 mr-4 mt-1"><i class="fas fa-envelope"></i></span>
<div>
<h4 class="font-bold">EMAIL</h4>
<p>[email protected]</p>
</div>
</div>
<div class="flex items-start">
<span class="text-yellow-400 mr-4 mt-1"><i class="fas fa-phone"></i></span>
<div>
<h4 class="font-bold">PHONE</h4>
<p>+49 30 1234567 (Berlin)</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<form class="brutal-border p-8">
<div class="mb-6">
<label for="name" class="block mb-2 font-bold">NAME</label>
<input type="text" id="name" class="w-full bg-black border-b-2 border-white py-2 px-1 focus:outline-none focus:border-yellow-400">
</div>
<div class="mb-6">
<label for="email" class="block mb-2 font-bold">EMAIL</label>
<input type="email" id="email" class="w-full bg-black border-b-2 border-white py-2 px-1 focus:outline-none focus:border-yellow-400">
</div>
<div class="mb-6">
<label for="project" class="block mb-2 font-bold">PROJECT TYPE</label>
<select id="project" class="w-full bg-black border-b-2 border-white py-2 px-1 focus:outline-none focus:border-yellow-400">
<option value="">Select...</option>
<option value="residential">Residential</option>
<option value="commercial">Commercial</option>
<option value="cultural">Cultural</option>
<option value="urban">Urban Planning</option>
<option value="other">Other</option>
</select>
</div>
<div class="mb-6">
<label for="message" class="block mb-2 font-bold">MESSAGE</label>
<textarea id="message" rows="4" class="w-full bg-black border-b-2 border-white py-2 px-1 focus:outline-none focus:border-yellow-400"></textarea>
</div>
<button type="submit" class="brutal-border-thin bg-yellow-400 text-black px-8 py-4 text-xl font-bold brutal-btn w-full">SUBMIT</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-black text-white border-t-4 border-white py-12">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="title-font text-3xl mb-6 md:mb-0">OOOral</div>
<div class="flex space-x-6 mb-6 md:mb-0">
<a href="#" class="text-2xl hover:text-yellow-400"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-2xl hover:text-yellow-400"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-2xl hover:text-yellow-400"><i class="fab fa-linkedin"></i></a>
</div>
<div class="text-center md:text-right">
<p>Β© 2023 OOOral Architecture</p>
<p class="text-gray-500 text-sm">All rights reserved</p>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
const menuBtn = document.getElementById('menuBtn');
const closeMenuBtn = document.getElementById('closeMenuBtn');
const mobileMenu = document.getElementById('mobileMenu');
menuBtn.addEventListener('click', () => {
mobileMenu.classList.remove('menu-closed');
mobileMenu.classList.add('menu-open');
});
closeMenuBtn.addEventListener('click', () => {
mobileMenu.classList.remove('menu-open');
mobileMenu.classList.add('menu-closed');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
// Close mobile menu if open
mobileMenu.classList.remove('menu-open');
mobileMenu.classList.add('menu-closed');
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Form submission
const contactForm = document.querySelector('form');
if (contactForm) {
contactForm.addEventListener('submit', (e) => {
e.preventDefault();
alert('Thank you for your message. We will contact you soon.');
contactForm.reset();
});
}
// Animation on scroll
const animateOnScroll = () => {
const elements = document.querySelectorAll('.project-card, .brutal-border-thin');
elements.forEach(element => {
const elementPosition = element.getBoundingClientRect().top;
const screenPosition = window.innerHeight / 1.3;
if (elementPosition < screenPosition) {
element.style.opacity = '1';
element.style.transform = 'translateY(0)';
}
});
};
// Set initial state
document.querySelectorAll('.project-card, .brutal-border-thin').forEach(el => {
el.style.opacity = '0';
el.style.transform = 'translateY(20px)';
el.style.transition = 'opacity 0.5s ease, transform 0.5s ease';
});
window.addEventListener('scroll', animateOnScroll);
window.addEventListener('load', animateOnScroll);
</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=victor/brutal-design" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |