/* BigBoobs.live - Custom CSS */
/* Minimal custom styles - Tailwind handles most styling */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Prose overrides */
.prose p {
    margin-bottom: 1rem;
}

.prose h3 {
    margin-top: 2rem;
}

/* Mobile menu animation */
#mobileMenu {
    transition: all 0.3s ease;
}

/* Image hover effects */
.group:hover img {
    filter: brightness(1.05);
}

/* Focus states for accessibility */
a:focus, button:focus {
    outline: 2px solid rgba(244, 81, 30, 0.5);
    outline-offset: 2px;
}

/* Card transitions */
.shadow-sm {
    transition: box-shadow 0.2s ease;
}

.shadow-sm:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Gradient text effect (unused but available) */
.gradient-text {
    background: linear-gradient(135deg, #f4511e, #ff7043);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
