
/* ############################## */
/*             BASIC              */
/* ############################## */

/* BLUE
    [buttons, icons, links]
    - light: #3498db
    - darker: #2980b9
*/

/* GREY
    [text emphasis]
    - light: #ddd
    - darker: #a1a9b3
*/

/* DARK GREY
    [background]
    #313131
*/

/* champagne color: rgba(247, 231, 206, 0.1) */

@import url('https://fonts.googleapis.com/css2?family=Blinker:wght@100;300;400&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #fff;
    color: #555;
    font-family: 'Blinker', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
}

#navbar-menu,
#footer-menu {
    max-width: 1140px;
    margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
    #navbar-menu { padding: 0 4%; }
}


/* ############################## */
/*            COMMON              */
/* ############################## */


/* ----- HEADINGS ----- */

h1,
h2,
h3 {
    font-weight: 300;
    text-transform: uppercase;
}

h1 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 240%;
    word-spacing: 4px;
    letter-spacing: 1px;
}

h2 {
    font-size: 180%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h2:after {
    display: block;
    height: 2px;
    background-color: #d0a134;
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-top: 30px;
}

h3 {
    font-size: 150%;
    margin-top: 20px;
    margin-bottom: 10px;
}

h3:after {
    display: block;
    height: 2px;
    background-color: #d0a134;
    content: " ";
    width: 70px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* ----- BUTTONS ----- */

.btn:link,
.btn:visited {
    display: inline-block;
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.btn-full:link,
.btn-full:visited {
    background-color: #3498db;
    border: 1px solid #3498db;
    color: #fff;
    margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 1px solid #3498db;
    color: #3498db;
}

.btn:hover,
.btn:active {
    background-color: #2980b9;
}

.btn-full:hover,
.btn-full:active {
    border: 1px solid #2980b9;
}

.btn-ghost:hover,
.btn-ghost:active {
    border: 1px solid #2980b9;
    color: #fff;
}


/* ############################## */
/*             NAVBAR             */
/* ############################## */

#logo {
    float: left;
    width: auto;
}

.sticky-navbar #logo {
    height: 70px;
    margin: 5px 0;
}

#navigation {
    float: right;
    list-style: none;
}

.sticky-navbar #navigation { margin-top: 25px; }

#navigation li {
    display: inline-block;
    margin-left: 40px;
}

#navigation li a:link,
#navigation li a:visited {
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s;
}

#navigation li a:hover,
#navigation li a:active {
    border-bottom: 2px solid #d0a134;
}

.mobile-nav-icon {
    float: right;
    cursor: pointer;
    display: none;
}

.mobile-nav-icon i {
    font-size: 200%;
    color: #fff;
}

.sticky-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #313131;
    box-shadow: 0 2px 2px #a1a9b3;
    z-index: 9999;
}

.sticky-navbar #navigation li a:link,
.sticky-navbar #navigation li a:visited {
    color: #ddd;
}

@media only screen and (max-width: 767px) {
    #navigation { display: none; }

    .mobile-nav-icon {
        display: inline-block;
        position:relative;
        z-index:2;
    }

    .sticky-navbar .mobile-nav-icon { margin-top: 20px; }

    #navigation {
        float: left;
        position:relative;
        z-index:2;

    }

    #navigation li {
        display: block;
    }

    .sticky-navbar #navigation { margin-top: 10px; }

    #navigation li a:link,
    #navigation li a:visited {
        display: block;
        border: none;
        padding: 10px 0;
        font-size: 100%;
    }
}


/* ############################## */
/*             FOOTER             */
/* ############################## */

footer {
    padding: 50px;
    font-size: 80%;
    background-color: #313131;
}

#footer-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#footer-nav,
#footer-social {
    list-style: none;
}

#footer-nav li,
#footer-social li {
    display: inline-block;
    margin-right: 20px;
}

#footer-nav li:last-child,
#footer-social li:last-child {
    margin-right: 0;
}

#footer-nav li a:link,
#footer-nav li a:visited,
#footer-social li a:link,
#footer-social li a:visited {
    color: #a1a9b3;
    border: 0;
    text-decoration: none;
    transition: color 0.2s;
}

#footer-nav li a:hover,
#footer-nav li a:active {
    color: #ddd;
}

#footer-social li a:link,
#footer-social li a:visited {
    font-size: 200%;
}

#footer-social i {
    transition: color 0.2s;
}

.fa-facebook:hover {
    color: #3b5998;
}

.fa-instagram:hover {
    color: #c32aa3;
}

footer p {
    color: #a1a9b3;
    text-align: center;
    margin-top: 20px;
}

@media only screen and (max-width: 767px) {
    #footer-menu { flex-direction: column; }

    #footer-nav,
    #footer-social { margin-bottom: 25px; }

    footer p { margin: 0; }
}
figcaption{
  color: #d0a134;
}
