/*
 * Myo Taw News — Custom Styles
 * (Cloned from WordPress style.css)
 * Non-Tailwind styles that require custom CSS
 */

/* =========================================
   Font Families
   ========================================= */
body {
    font-family: 'Padauk', sans-serif;
}

.font-serif {
    font-family: 'Merriweather', serif;
}

/* =========================================
   Custom Scrollbar (for video carousel)
   ========================================= */
.hide-scroll::-webkit-scrollbar {
    display: none;
}

.hide-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* =========================================
   Breaking News Ticker Animation
   ========================================= */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
    90% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.ticker-text {
    animation: slideUpFade 4s infinite;
}

/* =========================================
   Prose (Article body text improvements)
   ========================================= */
.prose p {
    margin-bottom: 1.25rem;
    line-height: 2;
}

.prose img {
    border-radius: 0.75rem;
    margin: 1.5rem 0;
}

.prose h2,
.prose h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.prose a {
    color: #dc2626;
    text-decoration: underline;
}

.prose a:hover {
    color: #b91c1c;
}

.prose blockquote {
    border-left: 4px solid #dc2626;
    padding-left: 1rem;
    font-style: italic;
    color: #6b7280;
    margin: 1.5rem 0;
}

/* =========================================
   Line Clamp (for truncating text)
   ========================================= */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================================
   Responsive Video Embeds
   ========================================= */
.responsive-object iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16/9 !important;
    border-radius: 0.5rem;
}

/* =========================================
   Animations
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-down {
    animation: fadeInDown 0.4s ease-out;
}

/* =========================================
   Wagtail Admin Overrides (for Myanmar font)
   ========================================= */
.richtext-editor,
.w-field__input textarea,
.w-field__input input {
    font-family: 'Padauk', sans-serif !important;
}
