/***** CSS for use on RockMedia template files *******/

.fi-section {padding: 20px; background-color: #f1f1f1; text-align: center;}
.site-main a {color: #8cc63f !important;}
.site-main a:hover {color: #333 !important;}
.navbar .navbar-brand {width: 125px; max-width: 125px;}
.navbar-nav li a {padding: 5px 15px;}
.navbar-nav li a {text-decoration: none;}

/* Header Container Styling */
.joy-inside-header {
    min-height: 400px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* MENU BUTTON STYLING 
   Transforms standard WP menu links into the buttons from your screenshot 
*/
.joy-button-menu ul li {
    display: inline-block;
}

.joy-button-menu ul li a {
    /* Base Button Shape (Pill) */
    display: inline-block;
    padding: 0.6rem 1.8rem;
    border-radius: 50rem; /* Pill shape */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 1. STANDARD ITEMS: The "Sign In" style (Glass/Light) */
.joy-button-menu ul li a {
    background-color: rgba(255, 255, 255, 0.25); /* Semi-transparent white */
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    backdrop-filter: blur(5px); /* Optional: Frosted glass effect */
}

.joy-button-menu ul li a:hover {
    background-color: #fff;
    color: #333; /* Dark text on hover */
}

/* 2. SPECIAL ITEM: The Green Button */
/* Add class 'nav-btn-green' to the menu item in WP Admin */
.joy-button-menu ul li.nav-btn-green a {
    background-color: #8CC63F; /* Adjust to match your screenshot exact hex */
    border: 1px solid #8CC63F;
    color: #fff;
    font-weight: 600;
}

.joy-button-menu ul li.nav-btn-green a:hover {
    background-color: #7ab332; /* Slightly darker green on hover */
    border-color: #7ab332;
    transform: translateY(-1px); /* Subtle lift */
}

.text-left {text-align: left !important;}
.hero-image_content p {font-weight: 600; font-size: 1.2em; width: 60%;}
.site-footer-rm a {color: #eee; text-decoration: none;}
.site-footer-rm a:hover {color:#8CC63F; border-bottom: 1px solid;}
.site-footer-rm .footer-brand img {max-width: 150px;}
ul.list-inline li {display: inline; margin-right: 5px;}
ul.list-inline li:last-child {margin-right: 0;}
.joy-divider {border-top: 1px solid #8CC63F;}
.rm-template .site-page {padding: 50px 0;}
.joy-inside-header.simple-header {background-color: #3c6ba4; min-height: 150px;}
.joy-inside-header .navbar-brand img {max-width: 150px;}
.site-page a {color:#8CC63F;}
.fi-report a, .fi-report .frm_button_submit {font-weight: 700 !important;}

/* Base Button Style */
.joy-btn {
    border-radius: 50px; /* Pill shape */
    padding: 10px 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid transparent; /* Prevent layout shift on hover */
    font-size: 14px; /* Adjust based on preference */
    letter-spacing: 0.5px;
}

/* Sign In Button (Transparent with White Border) */
.joy-btn-signin {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
    border: 1px solid #82bc2f; /* The green border from the image */
}

.joy-btn-signin:hover {
    background-color: #82bc2f;
    color: #ffffff;
}

/* Sign Up Button (Solid Green) */
.joy-btn-signup {
    background-color: #82bc2f; /* Match the green from the screenshot */
    color: #ffffff;
}

.joy-btn-signup:hover {
    background-color: #6ea025; /* Slightly darker green on hover */
    color: #ffffff;
}

/* Ensure the container is the reference point for positioning */
.alert-coming_soon .elementor-icon-box-wrapper {
    position: relative;
}

/* Create the "Coming Soon" pill */
.alert-coming_soon .elementor-icon-box-title::after {
    /* Injecting the button text */
    content: 'COMING SOON';
    border-radius: 50px; /* Pill shape */
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid transparent; /* Prevent layout shift on hover */
    font-size: 14px; /* Adjust based on preference */
    letter-spacing: 0.5px;
    background-color: #82bc2f;
    color: #ffffff;
    
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    margin-left: 10px;
    vertical-align: middle;
    line-height: 1;
    /* Optional: subtle glass effect if your stylesheet doesn't have it */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Mobile tweak: Ensure it doesn't wrap weirdly on small screens */
@media (max-width: 767px) {
    .alert-coming_soon .elementor-icon-box-title::after {
        display: block;
        width: fit-content;
        margin-left: 0;
        margin-top: 5px;
    }
}