/*
Theme Name: ManaWP
Description: A minimal, high-performance, component-based WordPress theme for showcasing plugins
Version: 1.0.0
Author: ManaWP
Text Domain: manawp
Domain Path: /languages
*/

/* Import Poppins Font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Reset default styles */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Basic container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


body {
    background: #fafbff;
}
