|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Mad House Ballet Committee | WI Posha Allegro Carnival</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=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600;700&display=swap'); |
|
|
|
:root { |
|
--primary: #8a2be2; |
|
--secondary: #ff1493; |
|
--accent: #00ffff; |
|
--dark: #1a1a2e; |
|
--light: #f8f9fa; |
|
} |
|
|
|
body { |
|
font-family: 'Poppins', sans-serif; |
|
background-color: var(--dark); |
|
color: var(--light); |
|
} |
|
|
|
.title-font { |
|
font-family: 'Playfair Display', serif; |
|
} |
|
|
|
.gradient-text { |
|
background: linear-gradient(45deg, var(--secondary), var(--accent)); |
|
-webkit-background-clip: text; |
|
background-clip: text; |
|
color: transparent; |
|
} |
|
|
|
.gradient-bg { |
|
background: linear-gradient(135deg, var(--primary), var(--secondary)); |
|
} |
|
|
|
.card-hover { |
|
transition: all 0.3s ease; |
|
} |
|
|
|
.card-hover:hover { |
|
transform: translateY(-10px); |
|
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
|
} |
|
|
|
.nav-link { |
|
position: relative; |
|
} |
|
|
|
.nav-link::after { |
|
content: ''; |
|
position: absolute; |
|
width: 0; |
|
height: 2px; |
|
bottom: -2px; |
|
left: 0; |
|
background: var(--accent); |
|
transition: width 0.3s ease; |
|
} |
|
|
|
.nav-link:hover::after { |
|
width: 100%; |
|
} |
|
|
|
.dance-animation { |
|
animation: dance 4s infinite alternate; |
|
} |
|
|
|
@keyframes dance { |
|
0%, 100% { |
|
transform: translateY(0) rotate(0deg); |
|
} |
|
25% { |
|
transform: translateY(-10px) rotate(5deg); |
|
} |
|
50% { |
|
transform: translateY(0) rotate(-5deg); |
|
} |
|
75% { |
|
transform: translateY(-5px) rotate(2deg); |
|
} |
|
} |
|
|
|
|
|
.geometric-shape { |
|
width: 100%; |
|
height: 100%; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
position: relative; |
|
overflow: hidden; |
|
} |
|
|
|
.diamond { |
|
width: 120px; |
|
height: 120px; |
|
background: linear-gradient(45deg, var(--primary), var(--secondary)); |
|
transform: rotate(45deg); |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
} |
|
|
|
.diamond-inner { |
|
transform: rotate(-45deg); |
|
color: white; |
|
font-size: 2rem; |
|
} |
|
|
|
.hexagon { |
|
width: 120px; |
|
height: 104px; |
|
background: linear-gradient(45deg, var(--primary), var(--secondary)); |
|
position: relative; |
|
clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
} |
|
|
|
.circle { |
|
width: 120px; |
|
height: 120px; |
|
border-radius: 50%; |
|
background: linear-gradient(45deg, var(--primary), var(--secondary)); |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
} |
|
|
|
.triangle { |
|
width: 0; |
|
height: 0; |
|
border-left: 60px solid transparent; |
|
border-right: 60px solid transparent; |
|
border-bottom: 104px solid var(--primary); |
|
position: relative; |
|
} |
|
|
|
.triangle-inner { |
|
position: absolute; |
|
top: 35px; |
|
left: -30px; |
|
color: white; |
|
font-size: 2rem; |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
|
|
<nav class="bg-black bg-opacity-90 fixed w-full z-50 shadow-lg"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="flex justify-between h-20 items-center"> |
|
<div class="flex-shrink-0 flex items-center"> |
|
<div class="flex items-center"> |
|
<i class="fas fa-hat-wizard text-3xl mr-2 gradient-text"></i> |
|
<span class="text-xl font-bold text-white"> |
|
<span class="gradient-text">Mad House</span> Ballet Committee |
|
</span> |
|
</div> |
|
</div> |
|
<div class="hidden md:block"> |
|
<div class="ml-10 flex items-baseline space-x-8"> |
|
<a href="#home" class="nav-link text-white px-3 py-2 rounded-md text-sm font-medium">Home</a> |
|
<a href="#about" class="nav-link text-white px-3 py-2 rounded-md text-sm font-medium">About</a> |
|
<a href="#company" class="nav-link text-white px-3 py-2 rounded-md text-sm font-medium">Company</a> |
|
<a href="#performances" class="nav-link text-white px-3 py-2 rounded-md text-sm font-medium">Performances</a> |
|
<a href="#gallery" class="nav-link text-white px-3 py-2 rounded-md text-sm font-medium">Gallery</a> |
|
<a href="#contact" class="nav-link text-white px-3 py-2 rounded-md text-sm font-medium">Contact</a> |
|
</div> |
|
</div> |
|
<div class="md:hidden"> |
|
<button id="mobile-menu-button" class="text-white focus:outline-none"> |
|
<i class="fas fa-bars text-2xl"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div id="mobile-menu" class="hidden md:hidden bg-black bg-opacity-95 pb-3"> |
|
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> |
|
<a href="#home" class="block px-3 py-2 rounded-md text-base font-medium text-white">Home</a> |
|
<a href="#about" class="block px-3 py-2 rounded-md text-base font-medium text-white">About</a> |
|
<a href="#company" class="block px-3 py-2 rounded-md text-base font-medium text-white">Company</a> |
|
<a href="#performances" class="block px-3 py-2 rounded-md text-base font-medium text-white">Performances</a> |
|
<a href="#gallery" class="block px-3 py-2 rounded-md text-base font-medium text-white">Gallery</a> |
|
<a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-white">Contact</a> |
|
</div> |
|
</div> |
|
</nav> |
|
|
|
|
|
<section id="home" class="pt-20 min-h-screen flex items-center justify-center relative overflow-hidden"> |
|
<div class="absolute inset-0 bg-black opacity-60"></div> |
|
<video autoplay muted loop class="absolute inset-0 w-full h-full object-cover"> |
|
<source src="https://assets.mixkit.co/videos/preview/mixkit-ballet-dancer-in-a-dark-room-3974-large.mp4" type="video/mp4"> |
|
</video> |
|
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10 text-center py-32"> |
|
<h1 class="text-5xl md:text-7xl font-bold mb-6 title-font"> |
|
<span class="gradient-text">Mad House</span> Ballet Committee |
|
</h1> |
|
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto"> |
|
The classical ballet committee of WI Posha Allegro Carnival, pushing boundaries of movement and expression. |
|
</p> |
|
<div class="flex justify-center space-x-4"> |
|
<a href="#company" class="gradient-bg text-white px-8 py-3 rounded-full font-medium hover:opacity-90 transition duration-300 shadow-lg"> |
|
Our Company |
|
</a> |
|
<a href="#performances" class="bg-transparent border-2 border-white text-white px-8 py-3 rounded-full font-medium hover:bg-white hover:text-black transition duration-300"> |
|
Upcoming Shows |
|
</a> |
|
</div> |
|
</div> |
|
|
|
<div class="absolute bottom-10 left-0 right-0 flex justify-center"> |
|
<a href="#about" class="text-white animate-bounce"> |
|
<i class="fas fa-chevron-down text-3xl"></i> |
|
</a> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="about" class="py-20 bg-gradient-to-b from-black to-gray-900"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl md:text-4xl font-bold title-font mb-4"> |
|
About <span class="gradient-text">XIV Pointe Rhelm Ballet™</span> |
|
</h2> |
|
<div class="w-24 h-1 gradient-bg mx-auto mb-6"></div> |
|
<p class="text-lg max-w-3xl mx-auto"> |
|
The revolutionary dance troupe of WI Posha Allegro Carnival, highlights classical ballet styles. |
|
</p> |
|
</div> |
|
|
|
<div class="grid md:grid-cols-2 gap-12 items-center"> |
|
<div class="relative"> |
|
<div class="relative z-10 rounded-xl overflow-hidden shadow-2xl"> |
|
<img src="https://images.unsplash.com/photo-1547153760-18fc86324498?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" |
|
alt="Ballet dancers" class="w-full h-auto"> |
|
</div> |
|
<div class="absolute -bottom-6 -right-6 w-32 h-32 border-4 border-purple-500 rounded-full z-0"></div> |
|
</div> |
|
|
|
<div> |
|
<h3 class="text-2xl font-bold mb-6 title-font">Our <span class="gradient-text">Vision</span></h3> |
|
<p class="mb-6"> |
|
Founded in 2025, Mad House Ballet Committee emerged as a conventional ballet committed within the WI Posha Allegro Carnival ecosystem. In the experiential realm We may challenge traditional norms by infusing classical ballet techniques with avant-garde movements, carnival energy, and theatrical madness. |
|
</p> |
|
<div class="space-y-4"> |
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 mt-1"> |
|
<div class="gradient-bg w-8 h-8 rounded-full flex items-center justify-center"> |
|
<i class="fas fa-check text-white text-sm"></i> |
|
</div> |
|
</div> |
|
<div class="ml-4"> |
|
<p class="font-medium">Innovative choreography that pushes boundaries</p> |
|
</div> |
|
</div> |
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 mt-1"> |
|
<div class="gradient-bg w-8 h-8 rounded-full flex items-center justify-center"> |
|
<i class="fas fa-check text-white text-sm"></i> |
|
</div> |
|
</div> |
|
<div class="ml-4"> |
|
<p class="font-medium">World-class dancers with diverse backgrounds</p> |
|
</div> |
|
</div> |
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 mt-1"> |
|
<div class="gradient-bg w-8 h-8 rounded-full flex items-center justify-center"> |
|
<i class="fas fa-check text-white text-sm"></i> |
|
</div> |
|
</div> |
|
<div class="ml-4"> |
|
<p class="font-medium">Collaborations with select and renowned carnival designers</p> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-8 flex flex-wrap gap-4"> |
|
<div class="flex items-center"> |
|
<div class="gradient-bg p-3 rounded-full"> |
|
<i class="fas fa-trophy text-white"></i> |
|
</div> |
|
<div class="ml-3"> |
|
<p class="font-bold">+</p> |
|
<p class="text-sm text-gray-400">Awards</p> |
|
</div> |
|
</div> |
|
<div class="flex items-center"> |
|
<div class="gradient-bg p-3 rounded-full"> |
|
<i class="fas fa-calendar-alt text-white"></i> |
|
</div> |
|
<div class="ml-3"> |
|
<p class="font-bold">+</p> |
|
<p class="text-sm text-gray-400">Performances</p> |
|
</div> |
|
</div> |
|
<div class="flex items-center"> |
|
<div class="gradient-bg p-3 rounded-full"> |
|
<i class="fas fa-users text-white"></i> |
|
</div> |
|
<div class="ml-3"> |
|
<p class="font-bold">+</p> |
|
<p class="text-sm text-gray-400">Dancers</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="company" class="py-20 bg-gray-900"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl md:text-4xl font-bold title-font mb-4"> |
|
Our <span class="gradient-text">Ballet Company</span> |
|
</h2> |
|
<div class="w-24 h-1 gradient-bg mx-auto mb-6"></div> |
|
<p class="text-lg max-w-3xl mx-auto"> |
|
Developing extraordinary artists who bring the Mad House vision to life through their dedication and artistry. |
|
</p> |
|
</div> |
|
|
|
|
|
<div class="mb-20"> |
|
<h3 class="text-2xl font-bold mb-8 title-gradient text-center"> |
|
<span class="gradient-text">Company Structure</span> |
|
</h3> |
|
|
|
<div class="grid md:grid-cols-3 gap-8"> |
|
|
|
<div class="bg-gray-800 rounded-xl p-6 card-hover"> |
|
<div class="gradient-bg w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4"> |
|
<i class="fas fa-paint-brush text-white text-2xl"></i> |
|
</div> |
|
<h4 class="text-xl font-bold text-center mb-3">Artistic Director</h4> |
|
<p class="text-center mb-4"> |
|
<span class="font-bold gradient-text">TBA</span> |
|
</p> |
|
<p class="text-gray-300 text-center"> |
|
Visionary leader who shapes the artistic direction and choreographic style of our Ballet. |
|
</p> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-800 rounded-xl p-6 card-hover"> |
|
<div class="gradient-bg w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4"> |
|
<i class="fas fa-star text-white text-2xl"></i> |
|
</div> |
|
<h4 class="text-xl font-bold text-center mb-3">Principal Dancers</h4> |
|
<p class="text-center mb-4"> |
|
<span class="font-bold gradient-text">4 Exceptional Artists</span> |
|
</p> |
|
<p class="text-gray-300 text-center"> |
|
Our lead performers who bring principal roles to life with technical mastery and dramatic intensity. |
|
</p> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-800 rounded-xl p-6 card-hover"> |
|
<div class="gradient-bg w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4"> |
|
<i class="fas fa-users text-white text-2xl"></i> |
|
</div> |
|
<h4 class="text-xl font-bold text-center mb-3">Corps de Ballet</h4> |
|
<p class="text-center mb-4"> |
|
<span class="font-bold gradient-text">Group of Dedicated Dancers</span> |
|
</p> |
|
<p class="text-gray-300 text-center"> |
|
The foundation of our company, creating stunning visual patterns and supporting the narrative. |
|
</p> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div> |
|
<h3 class="text-2xl font-bold mb-8 title-gradient text-center"> |
|
<span class="gradient-text">Featured Dancers</span> |
|
</h3> |
|
|
|
<div class="grid sm:grid-cols-2 lg:grid-cols-4 gap-6"> |
|
|
|
<div class="bg-gray-800 rounded-xl overflow-hidden card-hover"> |
|
<div class="relative overflow-hidden h-64 flex items-center justify-center"> |
|
<div class="geometric-shape"> |
|
<div class="diamond"> |
|
<div class="diamond-inner"> |
|
<i class="fas fa-star"></i> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-80"></div> |
|
<div class="absolute bottom-4 left-4"> |
|
<h4 class="text-xl font-bold">TBA</h4> |
|
<p class="text-sm gradient-text">Principal Dancer</p> |
|
</div> |
|
</div> |
|
<div class="p-4"> |
|
<p class="text-gray-300 text-sm"> |
|
Former soloist with National Ballet. Specializes in dramatic roles with explosive technique. |
|
</p> |
|
<div class="mt-4 flex space-x-3"> |
|
<a href="#" class="text-pink-500 hover:text-pink-400"> |
|
<i class="fab fa-instagram"></i> |
|
</a> |
|
<a href="#" class="text-blue-400 hover:text-blue-300"> |
|
<i class="fab fa-twitter"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-800 rounded-xl overflow-hidden card-hover"> |
|
<div class="relative overflow-hidden h-64 flex items-center justify-center"> |
|
<div class="geometric-shape"> |
|
<div class="hexagon"> |
|
<i class="fas fa-music text-white text-3xl"></i> |
|
</div> |
|
</div> |
|
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-80"></div> |
|
<div class="absolute bottom-4 left-4"> |
|
<h4 class="text-xl font-bold">TBA</h4> |
|
<p class="text-sm gradient-text">Principal Dancer</p> |
|
</div> |
|
</div> |
|
<div class="p-4"> |
|
<p class="text-gray-300 text-sm"> |
|
Trained at Academy. Known for soaring jumps and impeccable partnering skills. |
|
</p> |
|
<div class="mt-4 flex space-x-3"> |
|
<a href="#" class="text-pink-500 hover:text-pink-400"> |
|
<i class="fab fa-instagram"></i> |
|
</a> |
|
<a href="#" class="text-blue-400 hover:text-blue-300"> |
|
<i class="fab fa-twitter"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-800 rounded-xl overflow-hidden card-hover"> |
|
<div class="relative overflow-hidden h-64 flex items-center justify-center"> |
|
<div class="geometric-shape"> |
|
<div class="circle"> |
|
<i class="fas fa-heart text-white text-3xl"></i> |
|
</div> |
|
</div> |
|
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-80"></div> |
|
<div class="absolute bottom-4 left-4"> |
|
<h4 class="text-xl font-bold">TBA</h4> |
|
<p class="text-sm gradient-text">Soloist</p> |
|
</div> |
|
</div> |
|
<div class="p-4"> |
|
<p class="text-gray-300 text-sm"> |
|
Opera Ballet graduate. Brings exquisite French style and musicality to performances. |
|
</p> |
|
<div class="mt-4 flex space-x-3"> |
|
<a href="#" class="text-pink-500 hover:text-pink-400"> |
|
<i class="fab fa-instagram"></i> |
|
</a> |
|
<a href="#" class="text-blue-400 hover:text-blue-300"> |
|
<i class="fab fa-twitter"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-800 rounded-xl overflow-hidden card-hover"> |
|
<div class="relative overflow-hidden h-64 flex items-center justify-center"> |
|
<div class="geometric-shape"> |
|
<div class="triangle"> |
|
<div class="triangle-inner"> |
|
<i class="fas fa-feather"></i> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-80"></div> |
|
<div class="absolute bottom-4 left-4"> |
|
<h4 class="text-xl font-bold">TBA</h4> |
|
<p class="text-sm gradient-text">Corps de Ballet</p> |
|
</div> |
|
</div> |
|
<div class="p-4"> |
|
<p class="text-gray-300 text-sm"> |
|
Rising star. Combines ballet with dance influences for a unique style. |
|
</p> |
|
<div class="mt-4 flex space-x-3"> |
|
<a href="#" class="text-pink-500 hover:text-pink-400"> |
|
<i class="fab fa-instagram"></i> |
|
</a> |
|
<a href="#" class="text-blue-400 hover:text-blue-300"> |
|
<i class="fab fa-twitter"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-12 text-center"> |
|
<a href="#" class="inline-flex items-center gradient-bg text-white px-6 py-3 rounded-full font-medium hover:opacity-90 transition duration-300"> |
|
View Full Company Roster |
|
<i class="fas fa-arrow-right ml-2"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="performances" class="py-20 bg-black"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl md:text-4xl font-bold title-font mb-4"> |
|
Our <span class="gradient-text">Performances</span> |
|
</h2> |
|
<div class="w-24 h-1 gradient-bg mx-auto mb-6"></div> |
|
<p class="text-lg max-w-3xl mx-auto"> |
|
Experience the magic of Ballet through our groundbreaking productions. |
|
</p> |
|
</div> |
|
|
|
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> |
|
|
|
<div class="bg-gray-900 rounded-xl overflow-hidden card-hover"> |
|
<div class="relative overflow-hidden h-64"> |
|
<img src="https://images.unsplash.com/photo-1547153760-18fc86324498?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" |
|
alt="Performance" class="w-full h-full object-cover transition duration-500 hover:scale-110"> |
|
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-70"></div> |
|
<div class="absolute top-4 right-4"> |
|
<span class="bg-pink-600 text-white text-xs font-bold px-2 py-1 rounded-full">NEW</span> |
|
</div> |
|
</div> |
|
<div class="p-6"> |
|
<h3 class="text-xl font-bold mb-2">Carnival of Shadows</h3> |
|
<p class="text-gray-400 text-sm mb-4"> |
|
A haunting exploration of duality through movement, set to an original score by new composer. |
|
</p> |
|
<div class="flex justify-between items-center"> |
|
<div> |
|
<p class="text-sm font-bold gradient-text">June 15-30, 2026</p> |
|
<p class="text-xs text-gray-400">Posha Grand Theater</p> |
|
</div> |
|
<a href="#" class="text-white hover:text-pink-400 transition duration-300"> |
|
<i class="fas fa-arrow-right"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-900 rounded-xl overflow-hidden card-hover"> |
|
<div class="relative overflow-hidden h-64"> |
|
<img src="https://images.unsplash.com/photo-1543942864-f08ef5a6dd54?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" |
|
alt="Performance" class="w-full h-full object-cover transition duration-500 hover:scale-110"> |
|
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-70"></div> |
|
</div> |
|
<div class="p-6"> |
|
<h3 class="text-xl font-bold mb-2">The Mad Hatter's Ball</h3> |
|
<p class="text-gray-400 text-sm mb-4"> |
|
Our signature production returns with new choreography and breathtaking carnival costumes. |
|
</p> |
|
<div class="flex justify-between items-center"> |
|
<div> |
|
<p class="text-sm font-bold gradient-text">August 5-20, 2026</p> |
|
<p class="text-xs text-gray-400">Allegro Arts Center (Module)</p> |
|
</div> |
|
<a href="#" class="text-white hover:text-pink-400 transition duration-300"> |
|
<i class="fas fa-arrow-right"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-900 rounded-xl overflow-hidden card-hover"> |
|
<div class="relative overflow-hidden h-64"> |
|
<img src="https://images.unsplash.com/photo-1508700929627-872a1e0c3fe1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" |
|
alt="Performance" class="w-full h-full object-cover transition duration-500 hover:scale-110"> |
|
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-70"></div> |
|
</div> |
|
<div class="p-6"> |
|
<h3 class="text-xl font-bold mb-2">Neon Dreams</h3> |
|
<p class="text-gray-400 text-sm mb-4"> |
|
A futuristic ballet blending classical technique with electronic music and LED-enhanced costumes. |
|
</p> |
|
<div class="flex justify-between items-center"> |
|
<div> |
|
<p class="text-sm font-bold gradient-text">October 12-27, 2026</p> |
|
<p class="text-xs text-gray-400">Carnival Pavilion</p> |
|
</div> |
|
<a href="#" class="text-white hover:text-pink-400 transition duration-300"> |
|
<i class="fas fa-arrow-right"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-12 text-center"> |
|
<a href="#" class="inline-flex items-center border-2 border-white text-white px-6 py-3 rounded-full font-medium hover:bg-white hover:text-black transition duration-300"> |
|
View All Performances |
|
<i class="fas fa-arrow-right ml-2"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="gallery" class="py-20 bg-gray-900"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl md:text-4xl font-bold title-font mb-4"> |
|
<span class="gradient-text">Gallery</span> |
|
</h2> |
|
<div class="w-24 h-1 gradient-bg mx-auto mb-6"></div> |
|
<p class="text-lg max-w-3xl mx-auto"> |
|
Visual moments from our performances, rehearsals, and behind-the-scenes. |
|
</p> |
|
</div> |
|
|
|
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4"> |
|
|
|
<div class="relative group overflow-hidden rounded-lg"> |
|
<img src="https://images.unsplash.com/photo-1547153760-18fc86324498?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" |
|
alt="Gallery" class="w-full h-64 object-cover transition duration-500 group-hover:scale-110"> |
|
<div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300"> |
|
<i class="fas fa-search-plus text-white text-3xl"></i> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="relative group overflow-hidden rounded-lg"> |
|
<img src="https://images.unsplash.com/photo-1543942864-f08ef5a6dd54?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" |
|
alt="Gallery" class="w-full h-64 object-cover transition duration-500 group-hover:scale-110"> |
|
<div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300"> |
|
<i class="fas fa-search-plus text-white text-3xl"></i> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="relative group overflow-hidden rounded-lg"> |
|
<img src="https://images.unsplash.com/photo-1508700929627-872a1e0c3fe1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" |
|
alt="Gallery" class="w-full h-64 object-cover transition duration-500 group-hover:scale-110"> |
|
<div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300"> |
|
<i class="fas fa-search-plus text-white text-3xl"></i> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="relative group overflow-hidden rounded-lg"> |
|
<img src="https://images.unsplash.com/photo-1508700115892-45ecd05ae2ad?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" |
|
alt="Gallery" class="w-full h-64 object-cover transition duration-500 group-hover:scale-110"> |
|
<div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300"> |
|
<i class="fas fa-search-plus text-white text-3xl"></i> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="relative group overflow-hidden rounded-lg"> |
|
<img src="https://images.unsplash.com/photo-1529626455594-4ff0802cfb7e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" |
|
alt="Gallery" class="w-full h-64 object-cover transition duration-500 group-hover:scale-110"> |
|
<div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300"> |
|
<i class="fas fa-search-plus text-white text-3xl"></i> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="relative group overflow-hidden rounded-lg"> |
|
<img src="https://images.unsplash.com/photo-1551232864-3f0890e580d9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" |
|
alt="Gallery" class="w-full h-64 object-cover transition duration-500 group-hover:scale-110"> |
|
<div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300"> |
|
<i class="fas fa-search-plus text-white text-3xl"></i> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="relative group overflow-hidden rounded-lg"> |
|
<img src="https://images.unsplash.com/photo-1549060279-7e168fcee0c2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" |
|
alt="Gallery" class="w-full h-64 object-cover transition duration-500 group-hover:scale-110"> |
|
<div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300"> |
|
<i class="fas fa-search-plus text-white text-3xl"></i> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="relative group overflow-hidden rounded-lg"> |
|
<img src="https://images.unsplash.com/photo-1508700929627-872a1e0c3fe1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" |
|
alt="Gallery" class="w-full h-64 object-cover transition duration-500 group-hover:scale-110"> |
|
<div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300"> |
|
<i class="fas fa-search-plus text-white text-3xl"></i> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-12 text-center"> |
|
<a href="#" class="inline-flex items-center gradient-bg text-white px-6 py-3 rounded-full font-medium hover:opacity-90 transition duration-300"> |
|
View Full Gallery |
|
<i class="fas fa-arrow-right ml-2"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="contact" class="py-20 bg-black"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl md:text-4xl font-bold title-font mb-4"> |
|
<span class="gradient-text">Contact Us</span> |
|
</h2> |
|
<div class="w-24 h-1 gradient-bg mx-auto mb-6"></div> |
|
<p class="text-lg max-w-3xl mx-auto"> |
|
Interested in collaborations, performances, or joining our company? Reach out to us. |
|
</p> |
|
</div> |
|
|
|
<div class="grid md:grid-cols-2 gap-12"> |
|
<div> |
|
<h3 class="text-2xl font-bold mb-6 title-font">Get in <span class="gradient-text">Touch</span></h3> |
|
|
|
<form class="space-y-6"> |
|
<div> |
|
<label for="name" class="block text-sm font-medium mb-1">Full Name</label> |
|
<input type="text" id="name" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500"> |
|
</div> |
|
|
|
<div> |
|
<label for="email" class="block text-sm font-medium mb-1">Email Address</label> |
|
<input type="email" id="email" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500"> |
|
</div> |
|
|
|
<div> |
|
<label for="subject" class="block text-sm font-medium mb-1">Subject</label> |
|
<input type="text" id="subject" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500"> |
|
</div> |
|
|
|
<div> |
|
<label for="message" class="block text-sm font-medium mb-1">Message</label> |
|
<textarea id="message" rows="5" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500"></textarea> |
|
</div> |
|
|
|
<button type="submit" class="gradient-bg text-white px-6 py-3 rounded-full font-medium hover:opacity-90 transition duration-300 w-full"> |
|
Send Message |
|
</button> |
|
</form> |
|
</div> |
|
|
|
<div> |
|
<h3 class="text-2xl font-bold mb-6 title-font">Our <span class="gradient-text">Information</span></h3> |
|
|
|
<div class="space-y-6"> |
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 mt-1"> |
|
<div class="gradient-bg w-10 h-10 rounded-full flex items-center justify-center"> |
|
<i class="fas fa-map-marker-alt text-white"></i> |
|
</div> |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="font-bold">Address</h4> |
|
<p class="text-gray-400">123 Carnival Way<br>Posha Allegro, WI 54321</p> |
|
</div> |
|
</div> |
|
|
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 mt-1"> |
|
<div class="gradient-bg w-10 h-10 rounded-full flex items-center justify-center"> |
|
<i class="fas fa-phone-alt text-white"></i> |
|
</div> |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="font-bold">Phone</h4> |
|
<p class="text-gray-400">(555) 123-4567</p> |
|
</div> |
|
</div> |
|
|
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 mt-1"> |
|
<div class="gradient-bg w-10 h-10 rounded-full flex items-center justify-center"> |
|
<i class="fas fa-envelope text-white"></i> |
|
</div> |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="font-bold">Email</h4> |
|
<p class="text-gray-400">[email protected]</p> |
|
</div> |
|
</div> |
|
|
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 mt-1"> |
|
<div class="gradient-bg w-10 h-10 rounded-full flex items-center justify-center"> |
|
<i class="fas fa-clock text-white"></i> |
|
</div> |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="font-bold">Office Hours</h4> |
|
<p class="text-gray-400">Monday - Friday: 9am - 5pm<br>Saturday: 10am - 2pm</p> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-8"> |
|
<h4 class="font-bold mb-4">Follow Us</h4> |
|
<div class="flex space-x-4"> |
|
<a href="#" class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white hover:opacity-90"> |
|
<i class="fab fa-facebook-f"></i> |
|
</a> |
|
<a href="#" class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white hover:opacity-90"> |
|
<i class="fab fa-twitter"></i> |
|
</a> |
|
<a href="#" class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white hover:opacity-90"> |
|
<i class="fab fa-instagram"></i> |
|
</a> |
|
<a href="#" class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white hover:opacity-90"> |
|
<i class="fab fa-youtube"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<div class="bg-gray-900 py-12"> |
|
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> |
|
<h3 class="text-2xl font-bold mb-4 title-font">Join Our <span class="gradient-text">Mailing List</span></h3> |
|
<p class="text-gray-400 mb-6 max-w-2xl mx-auto"> |
|
Stay updated with our latest performances, workshops, and company news. |
|
</p> |
|
|
|
<form class="flex flex-col sm:flex-row gap-4 max-w-md mx-auto"> |
|
<input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500"> |
|
<button type="submit" class="gradient-bg text-white px-6 py-3 rounded-full font-medium hover:opacity-90 transition duration-300 whitespace-nowrap"> |
|
Subscribe |
|
</button> |
|
</form> |
|
</div> |
|
</div> |
|
|
|
|
|
<footer class="bg-black py-12"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="grid md:grid-cols-4 gap-8"> |
|
<div> |
|
<div class="flex items-center mb-4"> |
|
<i class="fas fa-hat-wizard text-3xl mr-2 gradient-text"></i> |
|
<span class="text-xl font-bold text-white"> |
|
<span class="gradient-text">Mad House</span> Ballet Committee |
|
</span> |
|
</div> |
|
<p class="text-gray-400 text-sm"> |
|
The avant-garde ballet company of WI Posha Allegro Carnival, pushing boundaries of movement and expression since 2015. |
|
</p> |
|
</div> |
|
|
|
<div> |
|
<h4 class="text-white font-bold mb-4">Quick Links</h4> |
|
<ul class="space-y-2"> |
|
<li><a href="#home" class="text-gray-400 hover:text-white transition duration-300">Home</a></li> |
|
<li><a href="#about" class="text-gray-400 hover:text-white transition duration-300">About Us</a></li> |
|
<li><a href="#company" class="text-gray-400 hover:text-white transition duration-300">Our Company</a></li> |
|
<li><a href="#performances" class="text-gray-400 hover:text-white transition duration-300">Performances</a></li> |
|
<li><a href="#gallery" class="text-gray-400 hover:text-white transition duration-300">Gallery</a></li> |
|
</ul> |
|
</div> |
|
|
|
<div> |
|
<h4 class="text-white font-bold mb-4">Performances</h4> |
|
<ul class="space-y-2"> |
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Carnival of Shadows</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">The Mad Hatter's Ball</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Neon Dreams</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Past Productions</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Season Calendar</a></li> |
|
</ul> |
|
</div> |
|
|
|
<div> |
|
<h4 class="text-white font-bold mb-4">Support Us</h4> |
|
<ul class="space-y-2"> |
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Donate</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Volunteer</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Sponsorships</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Corporate Partnerships</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Friends of Mad House</a></li> |
|
</ul> |
|
</div> |
|
</div> |
|
|
|
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> |
|
<p class="text-gray-400 text-sm mb-4 md:mb-0"> |
|
© 2023 Mad House Ballet. All rights reserved. |
|
</p> |
|
<div class="flex space-x-6"> |
|
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
|
<i class="fab fa-facebook-f"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
|
<i class="fab fa-twitter"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
|
<i class="fab fa-instagram"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
|
<i class="fab fa-youtube"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</footer> |
|
|
|
<script> |
|
|
|
document.getElementById('mobile-menu-button').addEventListener('click', function() { |
|
const menu = document.getElementById('mobile-menu'); |
|
menu.classList.toggle('hidden'); |
|
}); |
|
|
|
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
|
anchor.addEventListener('click', function (e) { |
|
e.preventDefault(); |
|
|
|
const targetId = this.getAttribute('href'); |
|
const targetElement = document.querySelector(targetId); |
|
|
|
if (targetElement) { |
|
|
|
const mobileMenu = document.getElementById('mobile-menu'); |
|
if (!mobileMenu.classList.contains('hidden')) { |
|
mobileMenu.classList.add('hidden'); |
|
} |
|
|
|
|
|
window.scrollTo({ |
|
top: targetElement.offsetTop - 80, |
|
behavior: 'smooth' |
|
}); |
|
} |
|
}); |
|
}); |
|
|
|
|
|
window.addEventListener('scroll', function() { |
|
const nav = document.querySelector('nav'); |
|
if (window.scrollY > 10) { |
|
nav.classList.add('shadow-lg'); |
|
} else { |
|
nav.classList.remove('shadow-lg'); |
|
} |
|
}); |
|
</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=privateuserh/privcarnival-committee-dancetroupe-vbeta-1-01" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |