/**
 * New Dawn Pro – Rise Edition
 * Theme Stylesheet (theme.css)
 * --------------------------------------------------------------
 * Version: 3.1.1
 * Author: The Rev. Dr. Rick G. Williams
 * Website: https://rickgwilliams.life
 * Description: Core visual styling for layout, spacing, headers, footers, navigation, and global UI elements.
 * --------------------------------------------------------------
 * © 2025 The Rev. Dr. Rick G. Williams
 * All Rights Reserved
 */

/* --------------------------------------------------------------
   Global Layout
   -------------------------------------------------------------- */

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Container */
.container, .site {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* --------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------- */

.site-header {
    padding: 20px 0;
    text-align: center;
}

.site-title a {
    font-family: "Lora", serif;
    font-weight: 700;
    color: #111;
    text-decoration: none;
}

.site-description {
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    color: #555;
}

/* Navigation */
.main-navigation {
    text-align: center;
    margin-top: 20px;
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-navigation ul li {
    display: inline-block;
    margin: 0 15px;
}

.main-navigation ul li a {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: #222;
    text-decoration: none;
}

.main-navigation ul li a:hover {
    color: #0059a8;
}

/* --------------------------------------------------------------
   Content Area
   -------------------------------------------------------------- */

.site-content {
    padding: 40px 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: "Lora", serif;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

/* Paragraphs */
p {
    line-height: 1.7;
    margin-bottom: 1.4em;
    color: #222;
}

/* Lists */
ul, ol {
    margin-left: 1.5em;
}

/* Blockquotes */
blockquote {
    margin: 1.8em 0;
    padding-left: 1.2em;
    border-left: 4px solid #ddd;
    font-family: "Lora", serif;
    font-style: italic;
    color: #444;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------
   Buttons & Forms
   -------------------------------------------------------------- */

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.wp-block-button__link {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    background: #0059a8;
    color: #fff;
    cursor: pointer;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover {
    background: #003f78;
}

/* Forms */
input,
textarea,
select {
    font-family: "Lato", sans-serif;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* --------------------------------------------------------------
   Footer
   -------------------------------------------------------------- */

.site-footer {
    background: #111;
    color: #eee;
    padding: 30px 0;
    text-align: center;
    font-family: "Lato", sans-serif;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------
 * END OF FILE: theme.css
 * New Dawn Pro – Rise Edition v3.1.1
 * --------------------------------------------------------------
 * © 2025 The Rev. Dr. Rick G. Williams
 * EOF
 */
