/*
Theme Name: PMA Custom Theme
Theme URI: https://yourwebsite.com
Author: FBC
Author URI: https://www.fbc.com.fj
Description: This theme was built from scratch by the Web Dev team of FBC, for PMA 
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: learning-institute
Tags: custom-menu, bootstrap, education, learning
*/

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(45deg, #e9f5fb, #fbfeff);
    
}

body.admin-bar .navbar {
    margin-top: 32px; /* This adds space only when admin bar is visible */
}

.hero-section {
    padding-top: 80px;
    position: relative; /* <<< Add this */
    overflow: hidden;
}


.hero-section::before {
    content: "";
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.5);
    
}

.hero-section .container {
    position: relative;
    
}

.hero-section h1,
.hero-section p {
    text-shadow: 0px 2px 4px rgba(0,0,0,0.2);
}

section.bg-light {
    background-color: #f1f3f5 !important;
}


.navbar {
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

/* Show dropdowns on hover */
@media (min-width: 992px) {
    .navbar .menu-item-has-children:hover > .dropdown-menu,
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 1;
    }
}


  
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}


.card {
    border-radius: 15px;
}

img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

.comment-list {
    list-style: none;
    padding-left: 0;
}

.comment-body {
    background: #f1f3f5;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.comment-author img {
    border-radius: 50%;
}

.comment-reply-link {
    font-weight: bold;
}

#menu-pma-navbar-menu{
	margin-bottom: 0px;	
}