/*
Theme Name: Minimal Theme
Theme URI: https://yourwebsite.com/
Author: Your Name
Author URI: https://yourwebsite.com/
Description: A minimal WordPress theme with no unnecessary overhead.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: minimal-theme
*/


/*
/* CSS HEX
--prussian-blue: #052438ff;
--indigo-dye: #1D405Eff;
--asparagus: #649A4Cff;
--yellow-green: #BBCF52ff;
--blue-ncs: #1692C8ff;

/* CSS HSL 
--prussian-blue: hsla(204, 84%, 12%, 1);
--indigo-dye: hsla(208, 53%, 24%, 1);
--asparagus: hsla(102, 34%, 45%, 1);
--yellow-green: hsla(70, 57%, 57%, 1);
--blue-ncs: hsla(198, 80%, 44%, 1);

/* SCSS HEX 
$prussian-blue: #052438ff;
$indigo-dye: #1D405Eff;
$asparagus: #649A4Cff;
$yellow-green: #BBCF52ff;
$blue-ncs: #1692C8ff;

/* SCSS HSL 
$prussian-blue: hsla(204, 84%, 12%, 1);
$indigo-dye: hsla(208, 53%, 24%, 1);
$asparagus: hsla(102, 34%, 45%, 1);
$yellow-green: hsla(70, 57%, 57%, 1);
$blue-ncs: hsla(198, 80%, 44%, 1);

/* SCSS RGB 
$prussian-blue: rgba(5, 36, 56, 1);
$indigo-dye: rgba(29, 64, 94, 1);
$asparagus: rgba(100, 154, 76, 1);
$yellow-green: rgba(187, 207, 82, 1);
$blue-ncs: rgba(22, 146, 200, 1);

/* SCSS Gradient 
$gradient-top: linear-gradient(0deg, #052438ff, #1D405Eff, #649A4Cff, #BBCF52ff, #1692C8ff);
$gradient-right: linear-gradient(90deg, #052438ff, #1D405Eff, #649A4Cff, #BBCF52ff, #1692C8ff);
$gradient-bottom: linear-gradient(180deg, #052438ff, #1D405Eff, #649A4Cff, #BBCF52ff, #1692C8ff);
$gradient-left: linear-gradient(270deg, #052438ff, #1D405Eff, #649A4Cff, #BBCF52ff, #1692C8ff);
$gradient-top-right: linear-gradient(45deg, #052438ff, #1D405Eff, #649A4Cff, #BBCF52ff, #1692C8ff);
$gradient-bottom-right: linear-gradient(135deg, #052438ff, #1D405Eff, #649A4Cff, #BBCF52ff, #1692C8ff);
$gradient-top-left: linear-gradient(225deg, #052438ff, #1D405Eff, #649A4Cff, #BBCF52ff, #1692C8ff);
$gradient-bottom-left: linear-gradient(315deg, #052438ff, #1D405Eff, #649A4Cff, #BBCF52ff, #1692C8ff);
$gradient-radial: radial-gradient(#052438ff, #1D405Eff, #649A4Cff, #BBCF52ff, #1692C8ff);

*/

/* Root variables for color scheme 
:root {
    --primary-color: #yourPrimaryColor; /* Replace with your logo's primary color 
    --secondary-color: #yourSecondaryColor; /* Replace with your logo's secondary color 
    --accent-color: #yourAccentColor; /* Replace with your logo's accent color 
    --text-color: #333333;
    --background-color: #ffffff;
}

 Global reset and typography */
 
 :root {
    --prussian-blue: #052438;
    --indigo-dye: #1D405E;
    --asparagus: #649A4C;
    --yellow-green: #BBCF52;
    --blue-ncs: #1692C8;
    --white:#ffffff;
}

/* GENERAL STYLES */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--white);
    color: #333;
}

/* HEADER */
header {
    background: var(--blue-ncs);;
    padding: 20px;
    text-align: center;
}

.site-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-logo {
    max-width: 180px;
    height: auto;
}

/* NAVIGATION */
nav {
    text-align: center;
    margin-top: 10px;
}

.menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    text-decoration: none;
}

.menu li {
    margin: 0 15px;
    text-decoration: none;
    list-style: none;
}

.menu a {
    text-decoration: none;
    color: var(--white);;
    font-weight: bold;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.menu a:hover {
    color: var(--yellow-green);
}

/* HERO SECTION */
h2:first-of-type {
    text-align: center;
    font-size: 32px;
    color: var(--prussian-blue);
    margin-top: 40px;
}

/* CONTENT SECTION */
article {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.wp-block-heading {
    font-size: 24px;
    color: var(--prussian-blue);
    margin-top: 30px;
}

p {
    font-size: 16px;
    line-height: 1.6;
}

/* PRICING TABLE */
.wp-block-heading h3 {
    background: #007bff;
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 20px;
}

.wp-block-heading h3 + p {
    padding: 10px;
    background: white;
    border-left: 5px solid #007bff;
    margin-bottom: 20px;
}

.pricing-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}
.pricing-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.price {
    font-size: 1.5em;
    color: #052438;
    font-weight: bold;
}
.cta-button {
    display: inline-block;
    background: #1692C8;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.cta-button:hover {
    background: #1D405E;
}


/* FOOTER */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
    }

    .menu li {
        margin-bottom: 10px;
    }

    article {
        padding: 10px;
    }

    h2 {
        font-size: 28px;
    }
}
