/* LaLaBar Venue Showcase Styles */
/* Styles have been migrated to Tailwind CSS in app/views/venues/index.html.erb */

/* Animation states - kept for JS toggle compatibility if needed, though opacity/visibility are now handled by GSAP directly */
.venue-card.animating {
    visibility: visible;
}

/* Bottle Shape Clip Paths for Venue Images */
/* Wine Bottle - Classic curved shape */
.bottle-wine {
    clip-path: polygon(40% 0%, 60% 0%,
            60% 5%, 65% 8%, 65% 12%, 60% 15%,
            75% 20%, 80% 30%, 80% 90%,
            75% 98%, 25% 98%,
            20% 90%, 20% 30%, 25% 20%,
            40% 15%, 35% 12%, 35% 8%, 40% 5%);
}

/* Cocktail Shaker - Modern sleek shape */
.bottle-shaker {
    clip-path: polygon(42% 0%, 58% 0%,
            58% 3%, 52% 5%, 52% 8%, 58% 10%,
            62% 12%, 70% 18%, 75% 28%,
            72% 85%, 65% 95%, 35% 95%,
            28% 85%, 25% 28%, 30% 18%,
            38% 12%, 42% 10%, 48% 8%, 48% 5%, 42% 3%);
}

/* Champagne Bottle - Elegant tall shape */
.bottle-champagne {
    clip-path: polygon(43% 0%, 57% 0%,
            57% 8%, 60% 10%, 60% 15%, 57% 18%,
            65% 22%, 70% 28%, 72% 40%, 70% 85%,
            65% 95%, 35% 95%,
            30% 85%, 28% 40%, 30% 28%, 35% 22%,
            43% 18%, 40% 15%, 40% 10%, 43% 8%);
}