/*
 Theme Name: Amber
 Theme URI: https://quoticode.co.uk/amber-theme/
 Author: Robert A Ambicki
 Author URI: https://quotigo.live
 Description: FlexiTheme.
 Version: 1.5
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: amber-theme
 Tags: custom-background, custom-logo, custom-menu, page-builder
*/

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #000000;
    color: #ffffff;
}

#site-header {
    border-bottom: 1px solid #ff7600;
}

#site-header .site-branding {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 50%;
}

#site-header .site-title {
    margin: 0;
    font-size: 2.5em;
    color: #ffffff;
}

#site-header .description {
    font-size: 1.2em;
    color: #cccccc;
}

#site-header.logo-left {
    justify-content: flex-start;
}

#site-header.logo-right {
    justify-content: flex-end;
}

#site-header.logo-center {
    justify-content: center;
}

#primary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

#primary-nav ul li {
    display: inline;
    margin: 0 15px;
}

#primary-nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

#primary-nav ul li a:hover {
    color: #ff6200;
    text-decoration: underline;
}

.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 10px;
}

footer {
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

.footer-widgets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-widgets .widget {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-widgets .widget a {
    color: #ff6200;
}

.footer-widgets .widget a:hover {
    color: #ff8c00;
}

a {
    color: #ff6200;
}

a:hover {
    color: #ff8c00;
}

/* SiteOrigin Page Builder compatibility */
.so-panel {
    margin-bottom: 20px;
}

/* Responsive Menu Styles */
@media screen and (max-width: 1023px) {
    .hamburger {
        display: block;
    }

    #primary-nav ul {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 20px 0;
    }

    #primary-nav ul.active {
        display: flex;
    }

    #primary-nav ul li {
        display: block;
        margin: 10px 0;
        text-align: center;
    }
}

@media screen and (min-width: 1024px) {
    #primary-nav ul {
        display: flex !important;
        justify-content: center;
    }

    .hamburger {
        display: none;
    }
}

.separator {
    width: 160px;
		height:1px;
  	background-color: #ffffff;
		display: flex;
    justify-content: flex-start;
}