/* ========================================
   anowhub extra frontend overrides
   NOTE: Existing CSS files are not modified.
   This file only adds small layout fixes.
   Developer: anow hosting
======================================== */

/* Category page: move content below fixed header */
body.category-page .category-header {
    margin-top: 70px; /* header height */
}

/* Single listing page: move cover below fixed header */
body.single-page .cover-section {
    margin-top: 70px; /* header height */
}



/* ============================================
   TAMIL FONT - ANEK TAMIL
   ============================================ */

/* Global Tamil Font */
body,
html {
    font-family: 'Anek Tamil', 'Noto Sans Tamil', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.listing-title,
.category-info h1,
.hero-content h1,
.section-header h2 {
    font-family: 'Anek Tamil', 'Noto Sans Tamil', sans-serif;
    font-weight: 600;
}

/* Body Text - Listings, About, Description */
p,
.listing-content,
.about-text,
.listing-description,
.hero-content p,
.section-header p,
textarea,
input {
    font-family: 'Anek Tamil', 'Noto Sans Tamil', sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

/* Better Tamil Text Rendering */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Tamil Text Specific Line Height */
[lang="ta"],
.tamil-text {
    line-height: 1.8;
    letter-spacing: 0.02em;
}