/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent layout shifts from animations */
* {
    will-change: auto;
}

/* Force hardware acceleration for animated elements */
[class*="bubble"], [class*="hammer"], [class*="wrench"], [class*="event"] {
    transform: translateZ(0);
    backface-visibility: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

/* Construction Page Styles */
.construction-container {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    overflow: hidden;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
    z-index: 10;
}

.logo {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-shadow: 
        3px 3px 0px #ff6b9d,
        6px 6px 0px #4ecdc4,
        9px 9px 0px #45b7d1;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #f8f9fa;
    font-size: 1.2rem;
    font-weight: 300;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.alcohol-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.construction-content {
    text-align: center;
    max-width: 600px;
    z-index: 10;
}

.construction-icon {
    font-size: 3rem;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hammer, .wrench {
    animation: bounce 2s infinite;
    will-change: transform;
    backface-visibility: hidden;
}

.hammer {
    animation-delay: 0s;
}

.wrench {
    animation-delay: 0.5s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateZ(0);
    }
    40% {
        transform: translateY(-20px) translateZ(0);
    }
    60% {
        transform: translateY(-10px) translateZ(0);
    }
}

.construction-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.construction-content p {
    color: #f8f9fa;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.features-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.feature span:last-child {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.menu-preview {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.menu-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    justify-content: center;
}

.menu-link.alcohol-link {
    background: linear-gradient(45deg, #8e44ad, #e74c3c);
}

.menu-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.arrow {
    transition: transform 0.3s ease;
}

.menu-link:hover .arrow {
    transform: translateX(5px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-link {
    display: inline-block;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

/* Events Section */
.events-section {
    margin: 40px 0;
    text-align: center;
}

.events-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.event-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 4s infinite;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) translateZ(0);
    }
    100% {
        transform: translateX(100%) translateY(100%) translateZ(0);
    }
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.event-content h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.event-content p {
    color: #f8f9fa;
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.event-price {
    font-size: 2rem;
    font-weight: 800;
    color: #4ecdc4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) translateZ(0);
    }
    50% {
        transform: scale(1.05) translateZ(0);
    }
}

.event-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.feature-tag:hover {
    transform: translateY(-3px);
}

/* Alcohol Type Buttons */
.alcohol-buttons {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.alcohol-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.alcohol-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.alcohol-btn:hover::before {
    left: 100%;
}

.sin-alcohol-btn {
    background: linear-gradient(135deg, rgba(100, 149, 237, 0.3) 0%, rgba(70, 130, 180, 0.2) 100%);
    border-color: rgba(100, 149, 237, 0.4);
}

.sin-alcohol-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(100, 149, 237, 0.3);
    border-color: rgba(100, 149, 237, 0.6);
}

.con-alcohol-btn {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-color: rgba(138, 43, 226, 0.4);
}

.con-alcohol-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
    border-color: rgba(138, 43, 226, 0.6);
}

.btn-icon {
    font-size: 2rem;
    animation: iconPulse 2s ease-in-out infinite;
}

.btn-text {
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.alcohol-btn:hover .btn-arrow {
    transform: translateX(5px);
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
    will-change: transform;
    backface-visibility: hidden;
}

.bubble-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.bubble-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.bubble-4 {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1) translateZ(0);
    }
    25% {
        transform: translateY(-10px) rotate(90deg) scale(1.05) translateZ(0);
    }
    50% {
        transform: translateY(-20px) rotate(180deg) scale(1.1) translateZ(0);
    }
    75% {
        transform: translateY(-10px) rotate(270deg) scale(1.05) translateZ(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }
    
    .construction-content h2 {
        font-size: 2rem;
    }
    
    .features-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature {
        padding: 15px;
    }
    
    .menu-link {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .alcohol-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .alcohol-btn {
        min-width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .btn-icon {
        font-size: 1.5rem;
    }
    
    .btn-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .construction-content h2 {
        font-size: 1.8rem;
    }
    
    .features-preview {
        grid-template-columns: 1fr;
    }
    
    .construction-icon {
        font-size: 2rem;
    }
}
