:root {
    --droidcore-orange: #fca73f;
    --droidcore-light-grey: #BDC3C5;
    --droidcore-body-font: 'Open Sans', sans-serif;
}

[data-theme="light"] {
    --droidcore-text-main: #0a0a0a;
    --droidcore-logo: url("/images/logo/droidcore-beta_light.svg");
    --droidcore-banner: url("/images/banners/banner-white.jpg");
    --droidcore-main-bg-col: #ffffff;
    --droidcore-sub-bg-col: #e9e9e9; 
    --droidcore-hero-title-col: #1e292e;
    --droidcore-shadow-col: rgba(0,0,0,0.2);
}

[data-theme="dark"] {
    --droidcore-text-main: #f5f5f5;
    --droidcore-logo: url("/images/logo/droidcore-beta_dark.svg");
    --droidcore-banner: url("/images/banners/banner-black.jpg");
    --droidcore-main-bg-col: #0a0a0a;
    --droidcore-sub-bg-col: #000000;
    --droidcore-hero-title-col: #e9e9e9;
    --droidcore-shadow-col: rrgba(255, 255, 255, 0.2)
}

body {
    background: var(--droidcore-sub-bg-col);
    font-family: var(--droidcore-body-font);
    transition: background-color 0.3s ease, color 0.3s ease, background-image 0.3s ease;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    color: var(--droidcore-text-main);
}

a {
    color: var(--droidcore-orange);
}

.pull-left {
    margin-left: 0;
    margin-right: auto;
}

.pull-right {
    margin-left: auto;
    margin-right: 0;
}

header {
    width: 100%;
    height: 50px;
    display: flex;
    position: absolute;
    background-color: var(--droidcore-main-bg-col);
    align-items: center;
    justify-content: space-between;
    color: var(--droidcore-orange);
    z-index: 100;
}

header .header-wrapper {
    max-width: 1280px;
    width: 90%;
    margin: 0 auto;
    display: flex;
}

.header-underline {
    content: "";
    position: relative;
    left: 0;
    top: 50px;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--droidcore-orange), transparent);
    z-index: 11;
}

header .header-logo-container {
    display: flex;
    align-items: center;
    position: relative;
}

.header-logo-img {
    height: 35px;
    margin-right: 10px;
}

.header-menu-section {
    height: 40px;
    display: flex;
    align-items: center;
}

.header-menu-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-menu-button {
    color: var(--droidcore-orange);
    border-bottom: 0px solid transparent;
    padding: 5px 12px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.2s, border-bottom 0.1s;
}

.header-submenu-button {
    color: var(--droidcore-orange);
    border-bottom: 0px solid transparent;
    padding: 5px 12px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.header-menu-button:hover {
    color: var(--droidcore-hero-title-col);
    border-bottom: 2px solid var(--droidcore-light-grey);
}

.header-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.header-menu-dropdown::after {
    content: "▾";
    margin-left: 2px;
    color: var(--droidcore-orange);
}

.header-menu-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: var(--droidcore-main-bg-col);
    min-width: 250px;
    margin-top: 5px;
    box-shadow: 0px 8px 16px var(--droidcore-shadow-col);
    z-index: 50;
    border-radius: 4px;
    overflow: hidden;
}

.header-dropdown-wrapper:hover .header-menu-dropdown-content {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-item-left {
    display: flex;
}


.dropdown-item-right {
    display: flex;
    position: relative;
    margin-right: 20px;
    margin-left: auto;
}

.hero-banner {
    width: 100%;
    height: 300px;
    background: var(--droidcore-banner) no-repeat center center;
    background-size: cover;
    position: relative;   
    padding-top: 120px;
    border-bottom: 1px solid var(--droidcore-light-grey);
}

.hero-container {
    display: flex;
    align-items: center;
}

.hero-logo {
    background-image: var(--droidcore-logo);
    width: 520px;
    height: 60px;
    margin: auto;
    background-size: contain;
    background-repeat: no-repeat;
}

.hero-title {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--droidcore-hero-title-col);
}

.hero-title h1 {
    font-size: 36px;
    font-weight: 600;
}


.hero-title::before {
    content: ">";
    color: var(--droidcore-orange);
    margin-right: 0.5em;
}

.hero-title::after {
    content: "<";
    color: var(--droidcore-orange);
    margin-left: 0.5em;
}

footer#footer-main {
    width: 100%;
    height: 56px;
    padding: 16px;
    box-sizing: border-box;
    text-align: center;
    background: var(--droidcore-main-bg-col);
}

footer#footer-main .footer-copyright{
    font-size: 13px;
    line-height: 21px;
}