/* Import Attractive English & Telugu Fonts */
@import url('https://fonts.googleapis.com/css2?family=Mallanna&family=Poppins:wght@300;400;500;600;700&family=Ramabhadra&family=Sree+Krushnadevaraya&display=swap');

/* =========================================
   KALASUTRA GLOBAL THEME VARIABLES
========================================= */
:root, html[data-ks-theme="dark"] {
    --ks-bg: #23262a; 
    --ks-panel-bg: #1a1c20;
    --ks-text: #f0f0f0;
    --ks-border: #d4af37; 
    --ks-input-border: rgba(212, 175, 55, 0.4); 
    --ks-input-bg: #1a1c20;
    --ks-accent-orange: #ea580c; 
    --ks-accent-pink: #c2185b; 
    --ks-shadow: 0 4px 15px rgba(0,0,0,0.3);
    /* Theme specific title colors */
    --ks-title-middle: #f0f0f0; /* Default */
}

html[data-ks-theme="light"] {
    --ks-bg: #ffffff;
    --ks-panel-bg: #f8f9fa;
    --ks-text: #111111;
    --ks-border: #d4af37;
    --ks-input-border: #d4af37;
    --ks-input-bg: #fdfdfd;
    --ks-accent-orange: #ea580c;
    --ks-accent-pink: #be185d;
    --ks-shadow: 0 4px 15px rgba(0,0,0,0.05);
    --ks-title-middle: #111111;
}

/* Black & Gold Style Title */
html[data-ks-theme="combo"] {
    --ks-title-middle: #d4af37; /* Gold Title */
}

/* Galaxy Style Title */
html[data-ks-theme="galaxy"] {
    --ks-title-middle: #facc15; /* Yellow Title */
}

/* Base Styles */
.kalasutra-module {
    font-family: 'Poppins', 'Ramabhadra', 'Mallanna', 'Sree Krushnadevaraya', sans-serif;
    width: 100% !important;
    display: block;
    box-sizing: border-box;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.kalasutra-module * { box-sizing: border-box; }