/*
	Theme Name:   Jannah Child
	Theme URI:    http://jannah.tielabs.com/
	Description:  Jannh Child Theme
	Author:       TieLabs
	Author URI:   https://tielabs.com
	Template:     jannah
	Version:      1.0.2
	License:      license purchased
	License URI:  http://themeforest.net/licenses/regular_extended
	Tags:         Tags: two-columns, buddypress, left-sidebar, right-sidebar, custom-menu, editor-style, featured-images, full-width-template, microformats, rtl-language-support, sticky-post, threaded-comments, translation-ready
	Text Domain:  jannah-child
*/


/* write custom css after this line */
/* Sticky Bottom Navigation Container */
.freefm-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background-color: #FF6600; /* Free FM Brand Orange */
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999; /* Ensures it stays on top of other content */
    border-top: 3px solid #FFB400; /* Accent Yellow from logo */
}

/* Individual Tab Styling */
.nav-item {
    text-decoration: none !important;
    color: white !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    transition: background 0.3s ease;
}

/* Hover/Active State */
.nav-item:active, .nav-item:hover {
    background-color: #e65c00; /* Slightly darker orange */
}

/* Icon Styling */
.nav-icon {
    font-size: 20px;
    margin-bottom: 2px;
}

/* Text Styling */
.nav-text {
    font-size: 12px;
    font-weight: bold;
    font-family: sans-serif;
    text-transform: uppercase;
}

/* Mobile Responsive: Hide on very large screens if desired */
/* (Optional) Un-comment below to hide on Desktop */
/* @media (min-width: 768px) {
    .freefm-bottom-nav { display: none; }
} 
*/

/* Padding for body so content isn't hidden behind the bar */
body {
    padding-bottom: 65px;
}