/* Custom design system for Gabox Pets Grooming */

:root {
    --primary: #720099;
    --accent: #000000;
}

body {
    overflow-x: hidden;
}

/* Custom background pattern for a clean, premium feel */
.bg-paw-pattern {
    background-color: var(--primary);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
    border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: #720099;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Glassmorphism utility classes */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-white {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Micro-interactions */
button {
    cursor: pointer;
}

img {
    user-select: none;
    pointer-events: none;
}

/* Zone Lightbox Styles */
.zone-clickable {
    cursor: pointer !important;
    transition: all 0.3s ease;
}

.zone-clickable:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

#zone-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

#zone-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #111;
    border-radius: 2.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.active .lightbox-content {
    transform: scale(1);
}

.lightbox-map-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    background: white;
    color: black;
    transform: rotate(90deg);
}

.lightbox-info {
    padding: 2rem;
    text-align: center;
}

.lightbox-zone-name {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: white;
}

.lightbox-zone-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    font-weight: 500;
}



