/* Modern Cocktail-Inspired Design System */

/* Base Styles */
html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

body {
    background-color: #f8f9fa;
    color: #1a1a2e;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Typography Enhancements */
.font-display {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

/* Glass Morphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.dark-glass {
    background: rgba(30, 37, 54, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Gradients */
.cocktail-gradient {
    background: linear-gradient(135deg, #ff8400 0%, #e05e00 100%);
}

.midnight-gradient {
    background: linear-gradient(135deg, #1e2536 0%, #141825 100%);
}

.elegant-gradient {
    background: linear-gradient(to right, #ffe8cc, #fff9eb);
}

/* Custom Animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 15px rgba(255, 132, 0, 0.4);
}

/* Hide scrollbar but allow scrolling */
.hide-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Opera */
}

/* Bar card enhancements */
.bar-card {
    transition: all 0.3s ease;
    border-radius: 1rem;
    overflow: hidden;
}

.bar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.bar-card:hover img {
    transform: scale(1.05);
}

.bar-card img {
    transition: transform 0.5s ease;
}

/* Decorative elements */
.cocktail-icon {
    position: relative;
    display: inline-block;
}

.cocktail-icon::before {
    content: '🍸';
    position: absolute;
    opacity: 0.2;
    font-size: 2rem;
    top: -10px;
    left: -15px;
    transform: rotate(-15deg);
}

/* Rating badge animation */
.rating-badge {
    transition: transform 0.2s ease;
}

.bar-card:hover .rating-badge {
    transform: scale(1.1);
}

/* Fancy dividers */
.fancy-divider {
    height: 3px;
    background: linear-gradient(to right, transparent, #ff8400, transparent);
}

/* Custom scrollbar for browsers that support it */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 132, 0, 0.5) rgba(255, 255, 255, 0.1);
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

*::-webkit-scrollbar-thumb {
    background-color: rgba(255, 132, 0, 0.5);
    border-radius: 20px;
} 