/* HeckVentures Custom Styles */

/* Animations */
@keyframes purpleGlow {
    0% {
        opacity: 0.8;
        filter: brightness(1);
    }
    100% {
        opacity: 1;
        filter: brightness(1.1);
    }
}

/* Hero Section */
.hero-bg {
    background-image: url('images/hero_image.jpg');
    background-position: center;
    background-repeat: no-repeat;
}

.hero-gradient {
    background: linear-gradient(to top, #844aa1 0%, #844aa1 12.5%, transparent 100%);
    animation: purpleGlow 4s ease-in-out infinite alternate;
}

/* Mobile: show at least 50% width of image */
@media (max-width: 639px) {
    .hero-bg {
        background-size: auto 100%;
        min-width: 50vw;
    }
}

/* Desktop: cover as before */
@media (min-width: 640px) {
    .hero-bg {
        background-size: cover;
    }
}

/* Logo Shadow */
.logo-shadow {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35)) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

/* Status Badge Styles */
.status-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.05em;
}

.status-closed {
    background-color: #d03234;
    opacity: 0.9;
}

.status-opening-soon {
    background-color: #d97706;
    color: white;
    opacity: 0.9;
}

.status-open {
    background-color: #059669;
    opacity: 0.9;
}

/* Mobile Menu Animation */
.mobile-menu-line {
    width: 1.5rem;
    height: 0.125rem;
    background-color: #462f64;
    transition: all 0.3s ease;
}

/* Gallery Card Hover Effects */
.gallery-card {
    transition: transform 0.3s ease;
}

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

.gallery-card img {
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

/* Social Links */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #d03234;
}

/* Performance optimizations */
.gpu-accelerated {
    transform: translateZ(0);
    will-change: transform;
}