:root {
    --primary: #121515;
    --secondary: #D9995B;
    --tertiary: #808F90;
    --accent: #D28A44;
    --secondary-accent: #0D1D20;
    --white: #fff;
}

.ag-primary-container {
    background-color: var(--primary);
}

.ag-secondary-container {
    background-color: var(--secondary);
}

.ag-tertiary-container {
    background-color: var(--tertiary);
}

.ag-text-primary {
    color: var(--primary);
}

.ag-text-secondary {
    color: var(--secondary);
}

.ag-text-tertiary {
    color: var(--tertiary);
}

.ag-text-white {
    color: #fff;
}

.ag-logo {
    #background-image: url("../images/logo.jpg");
    background-repeat: no-repeat;
    background-size: contain;
}

.ag-menu-text {
    color: var(--white);
    font-family: "Poppins", "serif";
    font-size: 1.15em;
    font-weight: 500;
}

.navbar-nav .nav-link {
    margin-left: 20px;
    padding: 10px;
    background-color: var(--secondary-accent);
    border-radius: 10px;
}

body {
    font-family: "Poppins", serif;
}

.hero {
    background-image: url("../images/wgbg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
}

.hero-text {
    font-size: 8em;
    font-weight: bolder;
    text-transform: uppercase;
    font-family: "Oswald", serif;
    line-height: 1em;
    color: var(--secondary-accent);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white);
}

.hero-subtitle {
    line-height: 1em;
    font-size: 1.75em;
    font-weight: bolder;
    text-transform: uppercase;
    font-family: "Oswald", serif;
    color: var(--white);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--secondary-accent);
}

.frosted {
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 5px;
}

.ag-button {
    background-color: var(--secondary);
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--primary);
    font-weight: 400;
    font-family: "Oswald", serif;
    text-transform: uppercase;
}

.ag-button:hover {
    background-color: var(--accent);
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--secondary);
}

.section-text {
    font-family: "Poppins", serif;
    font-size: 1.25em;
}

.section-header {
    font-family: "Oswald", serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 3em;
}

.section-subheader {
    font-family: "Oswald", serif;
    font-size: 0.8em;
    color: var(--secondary-accent);
}

.ag-tertiary-container .section-header {
    color: var(--secondary-accent);
}

.ag-tertiary-container .section-text {
    color: var(--secondary-accent);
}

img {
    max-width: 100%;
    height: auto;
    width: auto\9; /* ie8 */
}

.section-text a {
    color: var(--primary);
}

.footer-text {
    font-size: 0.9em;
    font-weight: normal;
    display: inline-block;
    margin-right: 20px;
}

.footer-list {
    list-style-type: none;
    padding: 0;
}

.footer {
    font-family: "Oswald", serif;
}

.footer a {
    color: var(--primary);
}

@media (max-width: 991.98px) {

    .burger-menu {
        display: inline-block;
    }

    .main-menu {
        display: none;
    }

    .logo {
        width: 50px;
        height: 50px;
    }

    .navbar-nav .nav-link {
        padding-left: 20px;
        margin-bottom: 10px;
    }

    .hero-text {
        font-size: 3em;
        color: #fff;
        font-family: "Oswald", serif;
        line-height: 1.1em;
        text-transform: uppercase;
    }

    .hero-subtext {
        font-size: 1.25em;
        font-family: "Oswald", serif;
        line-height: 1em;
    }

    .section-header {
        font-family: "Oswald", serif;
        font-size: 3em;
        line-height: 1em;
        text-transform: uppercase;
    }
    .section-text {
        font-size: 1em;
    }

}