/* Custom Tailwind CSS utilities for zodiac signs */

/* Font family for zodiac headings */
.font-philosopher {
    font-family: 'Philosopher', serif;
}

/* Custom transition for zodiac symbols */
.zodiac-symbol-transition {
    transition: all 0.3s ease;
}

/* Custom animation for zodiac cards */
@keyframes zodiac-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 112, 16, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 112, 16, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 112, 16, 0);
    }
}

.zodiac-pulse {
    animation: zodiac-pulse 2s infinite;
}

/* Custom gradient for zodiac backgrounds */
.zodiac-gradient {
    background: linear-gradient(135deg, #031d2e 0%, #17384e 100%);
}

/* Custom border for zodiac cards */
.zodiac-border {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom hover effect for zodiac cards */
.zodiac-hover-effect {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.zodiac-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Custom text shadow for zodiac headings */
.zodiac-text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.zodiac-sign {
    animation: float 6s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .zodiac-sign {
        margin-bottom: 1rem;
    }
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
    .zodiac-sign {
        background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    }
    
    .zodiac-hover-effect:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }
}

/* Custom styles for zodiac signs */
.zodiac-text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.zodiac-border {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.zodiac-hover-effect {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.zodiac-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.zodiac-symbol-transition {
    transition: all 0.3s ease;
}

.zodiac-symbol-transition:hover {
    transform: scale(1.1) rotate(5deg);
}

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

.zodiac-sign {
    animation: float 6s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .zodiac-sign {
        margin-bottom: 1rem;
    }
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
    .zodiac-sign {
        background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    }
    
    .zodiac-hover-effect:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }
} 