/* Custom Styles for Ghibli Guide */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap');

body {
    font-family: 'Nunito', sans-serif;
}

/* Animation effects */
.animate-fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Custom hover effects */
.hover-glow:hover {
    box-shadow: 0 0 15px rgba(72, 187, 120, 0.5);
}

/* Custom Ghibli-inspired colors */
.bg-ghibli-blue {
    background-color: #9ED8DB;
}

.bg-ghibli-green {
    background-color: #94C973;
}

.bg-ghibli-ochre {
    background-color: #E9B872;
}

.text-ghibli-blue {
    color: #9ED8DB;
}

.text-ghibli-green {
    color: #94C973;
}

.text-ghibli-ochre {
    color: #E9B872;
}

/* Custom card styling */
.card-hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* Hero section enhancements */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

/* Custom separator */
.custom-separator {
    height: 2px;
    background: linear-gradient(to right, transparent, #94C973, transparent);
    margin: 2rem auto;
    width: 60%;
}

/* Improved blockquote for film quotes */
blockquote.film-quote {
    border-left: 4px solid #94C973;
    padding-left: 1rem;
    font-style: italic;
    color: #4A5568;
    margin: 1.5rem 0;
}

blockquote.film-quote cite {
    display: block;
    font-style: normal;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #718096;
}

/* Enhanced image captions */
.image-caption {
    text-align: center;
    font-size: 0.875rem;
    color: #718096;
    margin-top: 0.5rem;
}

/* Custom list style for film facts */
.film-facts-list {
    list-style: none;
    padding-left: 1.5rem;
}

.film-facts-list li {
    position: relative;
    margin-bottom: 0.75rem;
}

.film-facts-list li::before {
    content: '•';
    color: #94C973;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
    font-size: 1.25rem;
}

/* Custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #94C973;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7baf5f;
}

/* Mobile optimizations */
@media (max-width: 640px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1.125rem;
    }
} 