/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

html {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f8fafc; /* Tailwind slate-50 */
    color: #0f172a; /* Tailwind slate-900 */
}

/* Custom Primary Color overrides if needed */
.text-primary {
    color: #2563eb;
}
.bg-primary {
    background-color: #2563eb;
}
.hover\:bg-primary-dark:hover {
    background-color: #1d4ed8;
}

/* Ad Containers */
.ad-container {
    text-align: center;
    margin: 1.5rem auto;
    width: 100%;
    overflow: hidden;
}

/* Markdown prose styling for blogs and reviews */
.prose h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.prose h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.prose p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
}
.prose ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.prose a {
    color: #2563eb;
    text-decoration: underline;
}

/* Mobile Nav Toggle */
.mobile-nav-hidden {
    display: none;
}
