/*
Theme Name: NectarPress Custom
Theme URI: http://example.com
Author: Your Name
Author URI: http://example.com
Description: Custom theme for my project
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nectarpress
*/


/* ----------------------------
   Custom Theme Styles
---------------------------- */
:root {
  --primary-color:  #188994;
  --secondary-color: #18374F;
  --text-color: #525252;
  --background-color: #2f465828;
}
:root {
  --font-main: "Poppins";
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0 auto;    /* center the website horizontally */
    padding: 0px;   /* optional padding for small screens */

    font-family: "Poppins" !important;

}
button {
  background-color: var(--primary-color);
  color: white;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Bootstrap 5 Global color setup */
:root {
  --bs-primary: #ff6600; /* your custom primary color */
  --bs-secondary: #00ccff; /* optional: secondary color */
}