/*
Theme Name: Mashud Telecom
Theme URI: https://example.com/mashud-telecom
Author: magraphice
Author URI: https://example.com/author
Description: A modern responsive WordPress theme tailored for digital banking, mobile financial services, and telecom operators.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mashud-telecom
*/

/* Custom variables and baseline typography settings */
:root {
  --telecom-blue: #0284c7;
  --telecom-blue-hover: #0369a1;
  --telecom-green: #22c55e;
  --telecom-green-hover: #16a34a;
  --telecom-dark: #0f172a;
  --telecom-light: #f8fafc;
  --telecom-slate: #64748b;
  --font-family: 'Inter', system-ui, sans-serif;
}

body {
  font-family: var(--font-family);
  background-color: var(--telecom-light);
  color: var(--telecom-dark);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* Base style resets and helper utilities */
a {
  text-decoration: none;
  color: inherit;
}

.theme-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 2px 8px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.banking-gradient {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

.gradient-green {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.grid-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 640px) {
  .grid-menu {
    grid-template-columns: 1fr;
  }
}
