/* Halloween Custom Styles */
:root {
    --halloween-orange: #FF6B35;
    --halloween-purple: #6B46C1;
    --halloween-dark: #0F0F0F;
    --halloween-gray: #1F1F1F;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Custom gradient backgrounds */
.bg-gradient-halloween {
    background: linear-gradient(135deg, var(--halloween-dark) 0%, var(--halloween-gray) 50%, var(--halloween-purple) 100%);
}

/* Glass morphism effect */
.glass {
    background: rgba(31, 31, 31, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

/* Text shadow for better readability */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

#countdown {
    color: var(--halloween-orange);
    font-family: 'Creepster', cursive;
    text-shadow: 0 0 10px var(--halloween-purple);
    border: 2px solid var(--halloween-purple);
    background: rgba(107, 70, 193, 0.2);
    padding: 0.5rem 1rem;
    display: inline-block;
    border-radius: 0.5rem;
}

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

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

/* Custom hover effects */
.hover-glow:hover {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    transition: box-shadow 0.3s ease;
}

/* Loading spinner */
.spinner {
    border: 3px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    border-top: 3px solid var(--halloween-orange);
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form styling */
input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--halloween-orange);
    border-color: var(--halloween-orange);
}

/* Mobile responsiveness improvements */
@media (max-width: 768px) {
    .glass {
        margin: 1rem;
    }
    
    .text-5xl {
        font-size: 2.5rem;
    }
    
    .text-7xl {
        font-size: 3.5rem;
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
}


/* Map marker label styling */
.house-label {
    text-align: center;
    text-shadow: none;
    font-weight: bold;
    color: #000;
}

.house-label img.pumpkin-icon {
    width: 24px;
    height: 24px;
    display: block;
    margin: 0 auto;
}

.house-label span {
    display: block;
    margin-top: 2px;
    padding: 2px 4px;
    border-radius: 4px;
}
