/* Fallback styles for local testing */
.tab-btn.active {
    background-color: #DC2626;
    color: white;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.hero-section {
    background-image: url('https://media.magicmenu.ro/website/img/bkg/bkg13.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.qr-demo {
    flex: 1;
}

.hero-text {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.slideshow-container {
    position: relative;
    max-width: 500px;
    margin: auto;
}

.slide {
    display: none;
    animation: fade 1.5s ease-in-out;
}

.slide.active {
    display: block;
}

.qr-phone-image {
    width: 100%;
    height: auto;
}

.dots {
    text-align: center;
    margin-top: 1rem;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #EF4444; /* Tailwind's red-500 */
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #FF4B4B;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #E63E3E;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .qr-demo {
        max-width: 300px;
        margin: 0 auto;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.hidden {
    display: none;
}

/* Optional: Make the contact info clickable */
.phone-part, .email-part {
    cursor: pointer;
}