:root {
    --acc-color: rgb(200, 169, 106);
    --background-color: rgb(43, 43, 43);
    --text-color: white;
    --line-height-titleBar: 120px;
}

body {
    background-color: var(--background-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

h1 {
    color: var(--acc-color);
    font-size: 3em;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);

}

h2 {
    color: var(--acc-color);
    font-size: 2.2em;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

h3 {
    color: var(--text-color);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

button {
    background-color: var(--background-color);
    color: var(--acc-color);
    border: 1px solid var(--acc-color);
    border-radius: 100px;
    padding: 12px 20px;
}

button:hover {
    background-color: var(--acc-color);
    color: var(--background-color);
    border: 1px solid var(--background-color);
    cursor: pointer;
}

.categoryDiv {
    position: relative;
    color: #c8a96a;
    background-color: #2b2b2b;
    text-align: center;
    padding: 0 20px;
    width: 300px;
    height: fit-content;
    min-height: 220px;
    border-radius: 25px;
    border: 2px solid #c8a96a;
    margin: 10px 10px;
    transition: 0.1s;
}

.categoryDiv button {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    margin-bottom: 12px;
}

#Hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-bottom: 2px solid var(--acc-color);
    text-align: center;
}

#introDiv{
    margin: 140px 0; 
    padding: 0 20px;
}

#backgroundImg1{
    position: absolute; 
    width: 100%; 
    left: 50%; 
    top: 50%; 
    transform: translate(-50%, -50%); 
    z-index: -1; 
    filter: brightness(0.4);
}

@media (max-width: 650px) {
    #backgroundImg1{
        width: auto;
        height: 100%;
    }
}

#MainDiv2 {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    border-bottom: 2px solid var(--acc-color);
    text-align: center;
    padding: 40px 0;
    flex-wrap: wrap;
}

#MainDiv3 {
    position: relative;
    width: 100%;
    border-bottom: 2px solid var(--acc-color);
    box-sizing: border-box;
    padding: 40px 15%;
}

@media (max-width: 650px) {
    #MainDiv3{
        padding: 40px 5%;
    }
}

ul{
    display: inline-block;
    text-align: left;
}

li{
    color: var(--text-color);
}


/* MENU */
#headerBar {
    position: sticky;
    top: 0;
    background-color: var(--background-color);
    border-bottom: 2px solid var(--acc-color);
    width: 100%;
    height: var(--line-height-titleBar);
    z-index: 2;
}

#title {
    float: left;
    position: absolute;
    font-size: 5em;
    padding: 0 6%;
    color: var(--acc-color);
    line-height: var(--line-height-titleBar);
    text-decoration: none;
}

.titleBar {
    overflow: hidden;
    background-color: var(--background-color);
    float: right;
    line-height: var(--line-height-titleBar);
    padding-right: 14px;
}

.titleBar a {
    float: left;
    font-size: 16px;
    color: var(--acc-color);
    text-align: center;
    padding: 0 8px;
    text-decoration: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropdownBtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: var(--acc-color);
    padding: 0 8px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.titleBar a:hover,
.dropdown:hover .dropdownBtn {
    text-decoration: underline;
}

.dropdownContent {
    display: none;
    position: absolute;
    background-color: var(--background-color);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: 0;
    top: calc(var(--line-height-titleBar)/2 + 16px + 8px);
    left: auto;
    padding-right: 8px;
}

.dropdownContent a {
    float: none;
    color: var(--acc-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    line-height: 10px;
}

.dropdownContent a:hover {
    background-color: var(--acc-color);
    color: var(--background-color);
}

.dropdown:hover .dropdownContent {
    display: block;
}

/* FOOTER */

footer{
    padding: 20px 20px;
    color: var(--acc-color);
    text-align: center;
}

footer a{
    color: var(--acc-color);
}