/*
Theme Name: BravoTheme
Theme URI: http://example.com/
Author: Your Name
Author URI: http://example.com/
Description: A custom theme designed to work seamlessly with Elementor.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bravo-theme
*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header.site-header {
    color: #fff;
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
}

header.site-header ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

header.site-header ul li {
    display: inline;
    margin-right: 20px;
    padding:3px;
}

header.site-header ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
}

header.site-header ul li a:hover {
    color: #ddd;
}

.header-bg{
    background-color: #000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 25px;
    transition: all 0.3s ease;
    color: #fff;
}

img.custom-logo { /* Replace '.site-logo img' with your logo's actual selector */
    width: auto; /* Adjust to your desired width */
    height: 35px; /* Maintain aspect ratio */
}

.menu-icon {
    cursor: pointer;
    border: solid 1px #fff;
    padding: 3px 5px;
    border-radius: 5px;
    display: none;
}

.menu-icon svg {
    width: 25px;
    height: 25px;
    fill: #fff;
}

main#content {
    min-height: 800px;
}

footer.site-footer {
    background-color: #fff;
    border-top: 1px solid #eee;
    padding: 20px;
}

@media (max-width: 768px) {
    header.site-header {
       background-color: #000;
      
    }
    .menu{
        border-top: solid 1px #fff;
        display: none;
        width: 100%;
        position: fixed;
        top: 70px;
        left: 0;
        padding-top:30px;
        text-align: center;
        background-color: #000;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    header.site-header ul li {
        display: block;
    }

    .menu-icon {
        display: block;
    }

}