/* color variables */
:root {
    --color-primary: #D36A4A;
    --color-secondary: #F2E8D6;
    --color-background: #FFF5DE;
    --color-tertiary: #360707;
}

/* Global styles */
html {
    height: 100vh;
    font-family: Noto Sans, sans-serif;
}

body {
    /* header main footer structure */
    display: flex;
    flex-direction: column;
    min-height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: var(--color-background);
}

header {
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: bold;
    color: #D36A4A;

    letter-spacing: .5em;
    text-indent: .5em;
}

.header-nav {
    height: 48px;
    background-color: #360707;
}

.header-nav ul {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

a {
    color: var(--color-primary);
    padding: 0;
}

.header-nav a {
    color: var(--color-secondary);
    text-decoration: none;
    display: inline-block;
    width: 120px;
    height: 48px;
    text-align: center;
    line-height: 52px;
}

.header-logo {
    margin: 1rem;
}

.header-logo img {
    width: 100px;
    height: auto;
}

main {
    margin: 0 auto;
    max-width: 800px;
    flex: 1;
}

.section-header {
    color: var(--color-primary);
    padding: 1rem;
    text-align: center;
}

#hero video {
    width: 100%;
    height: auto;
}


footer {
    background-color: var(--color-tertiary);
    color: var(--color-secondary);
    padding: 1rem;
}

#site-navigation {
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
}

#copy-right {
    text-align: center;
}

button.nav-button {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: var(--color-secondary);
    cursor: pointer;

    width: 120px;
    height: 48px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: var(--color-primary);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.show {
    display: block;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.product-container img {
    width: 120px;
    height: auto;
}
