/* assets/css/style.css - PREMIUM THEME ENGINE */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Merriweather:wght@400;700&display=swap');

body {
    background-color: #f9fafb;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #1f2937;
}

/* 🟢 GRADIENTS & OVERLAYS */
.bg-gradient-dark {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}
.text-shadow-sm { text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.text-shadow-lg { text-shadow: 0 4px 12px rgba(0,0,0,0.6); }

/* 🟢 HOVER ANIMATIONS */
.hover-zoom img { transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.hover-zoom:hover img { transform: scale(1.05); }

.feed-card { transition: all 0.2s ease-in-out; border: 1px solid transparent; }
.feed-card:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important; 
    border-color: #e5e7eb;
}

/* 🟢 PREMIUM TYPOGRAPHY FOR READING */
.premium-typography {
    font-family: 'Merriweather', Georgia, serif; /* Serif font for long reading */
    font-size: 1.15rem;
    line-height: 2.1;
    color: #374151;
}

/* Magazine Dropcap Effect for first paragraph */
.premium-typography p:first-of-type::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 800;
    margin-right: 0.15em;
    margin-top: -0.1em;
    color: #0d6efd; /* Primary color */
    font-family: 'Inter', sans-serif;
}

.premium-typography h2, .premium-typography h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.premium-typography img {
    border-radius: 16px;
    margin: 2.5rem 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.premium-typography blockquote {
    border-left: 5px solid #0d6efd;
    padding-left: 1.5rem;
    font-style: italic;
    color: #4b5563;
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
}

/* Utilities */
.object-fit-cover { object-fit: cover; }
.letter-spacing { letter-spacing: 1.5px; }