/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f7fa;
}

h1.entry-title {
    margin-bottom: 0px;
    font-size: 22px;
    font-weight: bold;
}


p {
    margin: 0 0 1rem;
    color: var(--medium-gray); /* Medium Gray for secondary text */
}

a {
    color: #088264; /* Emerald Green for links */
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: var(--deep-blue); /* Golden Yellow on hover */
}

/* Style for "Related:" text */
p span {
    color: #008000; /* Muted rose shade */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.red {
    color: red; /* Muted rose shade */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.green {
    color: #008000; /* Muted rose shade */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}


/* Style for the link text */
a span {
    font-weight: 600;
    color: #1a73e8; /* Google blue */
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

/* Hover effect */
a span:hover {
    color: #0f5bbd; /* Darker blue */
    text-decoration: underline;
}

/* Button Styling */
button, .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #000; /* White text */
    background-color: var(--golden-yellow); /* Golden Yellow */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

button:hover, .btn:hover {
    background-color: #0056b3; /* Emerald Green on hover */
    color: #fff;
}

/* Section Styling */
section {
    padding: 60px 20px;
    margin: 0 auto;
    background-color: var(--white); /* Default section background */
}

/* Blockquote Styling */
blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--deep-blue);
    border-left: 4px solid var(--soft-golden-amber);
    padding: 10px 20px;
    margin: 20px 0;
    background-color: var(--warm-off-white);
    font-weight: 500;
}

/* Form Elements */
input[type="text"], input[type="email"], textarea, select {
    padding: 10px;
    margin: 10px 0;
    font-size: 1rem;
    border: 1px solid #CCCCCC; /* Subtle border for form fields */
    border-radius: 5px;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--emerald-green); /* Emerald Green focus color */
    outline: none;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: bold; /* Use bold for headings */
    margin-top: 20px; /* Add spacing above the headings */
    margin-bottom: 10px; /* Add spacing below the headings */
    color: var(--deep-blue); /* Deep Blue for headings */
}

/* Apply specific font weights for different headings */
h1 {
    font-weight: 800; /* ExtraBold */
    font-size: 2.25em; /* Larger font size for main headings */
}

h2 {
    font-weight: 600; /* SemiBold */
    font-size: 1.25em; /* Slightly smaller than h1 */
}

h3 {
    font-weight: 500; /* Medium */
    font-size: 1em;
}

h4 {
    font-weight: 400; /* Regular */
    font-size: 1em;
}

h5 {
    font-weight: 400; /* Regular */
    font-size: 1.25em;
}

h6 {
    font-weight: 300; /* Light */
    font-size: 1em;
}

/* Paragraphs */
p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 24px;
    padding: 0px;
    text-indent: 0px;
    text-rendering: auto;
    text-transform: none;
    word-break: normal;
    margin-bottom: 15px; /* Spacing between paragraphs */
}

/* Apply Merriweather Sans to lists */
ul, ol {
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: normal; /* Regular */
    font-size: 1em;
    margin-bottom: 15px; /* Spacing below the list */
    line-height: 1.8; /* Better spacing between list items */
}

/* Style for list items */
ul li, ol li {
    margin-bottom: 10px; /* Space between list items */
}

/* Links */
a {
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: bold; /* Links in bold for visibility */
    color: #0056b3; /* Link color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease; /* Smooth transition on hover */
}

a:hover {
    color: #e53e3e; /* Change color on hover */
}

/* Optional: Style italic text */
em, i {
    font-family: 'Merriweather Sans', sans-serif;
    font-style: italic; /* Italic text */
}

.btn{
    background-color: #007bff;
    color: #fff;
}
/* Buttons */
button, input[type="button"], input[type="submit"] {
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: 600; /* SemiBold */
    font-size: 1em;
    background-color: #1a73e8; /* Button background color */
    color: #fff; /* Button text color */
    border: none;
    padding: 10px 20px; /* Button padding */
    cursor: pointer;
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease;
}

button:hover, input[type="button"]:hover, input[type="submit"]:hover {
    background-color: #e53e3e; /* Button hover color */
}

/* Blockquotes */
blockquote {
    font-family: 'Merriweather Sans', sans-serif;
    font-style: italic; /* Italic for quotes */
    font-weight: 400; /* Regular */
    font-size: 1.2em;
    border-left: 5px solid #1a73e8; /* Decorative border */
    padding-left: 15px; /* Space for quote */
    margin: 20px 0; /* Margin around the quote */
    color: #555; /* Lighter text color */
}

/* Improve readability for small screen sizes */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.625rem;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.3rem;
    }
    blockquote {
        font-size: 1.2rem;
    }

    h3, h4, h5, h6 {
        font-size: 18px; /* Adjust heading size */
    }

    ul, ol{
        margin-left: 20px;
    }
}
