/*
Theme Name: BlankSlate Child
Template: blankslate
*/

/* =========================
GLOBAL (Fonts, Box-Sizing)
========================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #e5e5e5;
    font-family: Arial, Helvetica, sans-serif;  /* Default font */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Jost', sans-serif;
}


h1 {
    position: relative; 
    font-weight: bold; 
    font-size: 36px; 
    margin-bottom: 20px; 
}

h1::before {
content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 60px;
    height: 7px;
    background-color: #d8a200;
}

h2 {
Text-transform: uppercase;
Font-size: 20px;
}


/* Lists */

.lcp_catlist {
Padding:0px;
}

.lcp_excerpt p, .post-light-text {
font-family: 'Jost', serif;
    font-size: 18px;
    letter-spacing: 0.5px;
    margin: 15px 0;
}

.lcp_excerpt p a {
Color:#ebb415;
}

.lcp_catlist a {
    display: none;
}

.lcp_catlist li {
    display: block; /* Keep list items visible */
}

.lcp_catlist .lcp_excerpt a {
    display: block; /* Ensure .lcp_excerpt is visible */
}


/* Target submit input buttons */
div.wpforms-container-full input[type=submit]:not(:hover):not(:active),
div.wpforms-container-full button[type=submit]:not(:hover):not(:active),
div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active) {
    background-color: #d8a200; /* Set the background color to your yellow */
    color: white; /* Set the text color to white for contrast */
    border: 1px solid #d8a200; /* Set the border color to match the background */
    padding: 10px 20px; /* Padding for button */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Pointer cursor */
}

/* Target submit input buttons inside wp-core-ui */
.wp-core-ui div.wpforms-container-full input[type=submit]:not(:hover):not(:active),
.wp-core-ui div.wpforms-container-full button[type=submit]:not(:hover):not(:active),
.wp-core-ui div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active) {
    background-color: #d8a200; /* Set the background color to your yellow */
    color: white; /* Set the text color to white for contrast */
    border: 1px solid #d8a200; /* Set the border color to match the background */
    padding: 10px 20px; /* Padding for button */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Pointer cursor */
}



/* =========================
TWO COLUMN LAYOUT (Desktop and Larger Screens)
========================= */

.two-column-layout {
    display: flex; /* Use flexbox for the layout */
    justify-content: space-between; /* Space out the columns */
    gap: 20px; /* Space between columns */
}

.two-column-layout .column {
    flex: 1; /* Ensure each column takes up equal space */
    padding: 20px; /* Padding for columns */
    color: #303133; /* Set text color to #303133 */
}

/* =========================
MOBILE RESPONSIVENESS (Below 700px)
========================= */

@media (max-width: 700px) {
    .two-column-layout {
        flex-direction: column; /* Stack columns vertically on mobile */
    }

    .two-column-layout .column {
        margin-bottom: 20px; /* Space between stacked columns */
        color: #303133; /* Ensure text color is #303133 on mobile */
    }
}

/* =========================
TABLET RESPONSIVENESS (Between 701px and 900px)
========================= */

@media (max-width: 900px) and (min-width: 701px) {
    .two-column-layout {
        flex-direction: column; /* Stack columns vertically on smaller tablets */
    }

    .two-column-layout .column {
        margin-bottom: 20px; /* Space between stacked columns */
        color: #303133; /* Ensure text color is #303133 on tablet */
    }
}

/* Contact Form */
#wpforms-206-field_4-container, #wpforms-206-field_2-container {
Padding:0px!important;
}


/* =========================
HEADER (Non-Sticky)
========================= */

.site-header {
    background: #e5e5e5;  /* Same background as page */
    text-align: center;
    padding-top: 40px;
    width: 100%;
    z-index: 1000;
}

/* HEADER LOGO */
.logo-link {
    display: inline-block;  /* Makes the logo clickable */
}

.logo {
    width: 440px;  /* Set width to 440px */
    height: 68px;  /* Set height to 68px */
    margin: 0 auto 35px auto;
    background-image: url("images/rmc-logo.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: opacity 0.3s ease; /* Smooth transition for hover */
}

/* Logo hover effect */
.logo:hover {
    opacity: 0.50; /* 50% opacity on hover */
}

/* =========================
NAVIGATION
========================= */

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.main-nav li {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}

.main-nav li + li {
    margin-left: 28px;
}

/* separator */
.main-nav li + li:before {
    content: "|";
    margin-right: 28px;
    color: #999;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-family: 'Jost', serif;
    text-transform: uppercase;
    transition: color 0.3s ease; /* Smooth transition for hover */
}

/* Hover effect - Gold color on hover */
.main-nav a:hover {
    color: #d8a200; /* Gold color */
}

.current-menu-item a {
    color: #d8a200; /* Keep the gold color for active item */
}

/* =========================
CONTENT (Paragraph, Photos, etc.)
========================= */

.site-content {
    flex: 1;
    padding-top: 160px;  /* Space for header */
}

/* HERO IMAGE */
.hero-image {
    width: 700px;
    height: 900px;
    margin: 60px auto 10px auto;
    background: red;  /* Placeholder, replace later */
}

/* PHOTO CREDIT */
.photo-credit {
    width: 700px;
    margin: 0 auto;
    text-align: right;
    font-size: 14px;
    color: #444;
}

.credit-text {
   font-family: 'Lora', sans-serif;
    line-height: 24px;
}

/* P paragraph font settings */
p {
    font-family: 'Lora', sans-serif;
    color: #303133;
    font-size: 16px; /* Best practice font size for readability */
    line-height: 1.6; /* Improved line height for readability */
    margin-bottom: 1.5em; /* Space between paragraphs */
}

.entry-content {
    max-width: 940px;
    margin: auto;
    padding: 20px 20px 40px 20px;
}



/* Mobile Menu */
.mob-menu-logo-holder a img {
max-height: 20px;
    margin-top: 15px;
}

#mobmenuleft li a {
font-family: 'Jost', sans-serif!important;
Font-weight: 700!important;
}



/* =========================
FOOTER
========================= */

.site-footer {
    background: #ffffff;  /* Updated footer background to white */
    padding: 40px 0;
    width: 100%; /* Ensure full-width */
    position: relative;
    bottom: 0; /* Keep it at the bottom if content is short */
}



/* footer layout */
.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* FOOTER LOGO */
.footer-logo-link {
    display: block;
}

.footer-logo-link img {
    width: 230px;
    height: auto;
    display: block;
}

/* Optional hover effect */
.footer-logo-link:hover img {
    opacity: .8;
}

/* COPYRIGHT */
.copyright {
    font-size: 14px;
    color: #555;
    font-family: 'Jost', sans-serif;
}

/* =========================
REMOVE PAGE TITLE FROM ALL PAGES
========================= */

/* Hide page title on all pages */
.page-title {
    display: none;
}

/* Hide entry-title on all pages */
.entry-title {
    display: none;
}

/* =========================
RESPONSIVE FOOTER
========================= */

@media (max-width: 700px) {
    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 900px) {
    .hero-image {
        width: 90%;
        height: 70vh;
    }

    .photo-credit {
        width: 90%;
    }

    .footer-inner {
        width: 90%;
    }
}

@media (max-width: 700px) {
    .main-nav ul {
        flex-wrap: wrap;
        gap: 10px;
    }

    .main-nav li + li:before {
        display: none;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}