header ul {
    margin-block: 0;
}

#header-business-info {
    padding-block: 1rem;
    border-top: 1px solid #e6decc;
    border-bottom: 1px solid #e6decc;
}

#header-business-info ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:0;
}

#header-business-info li {
  color: white;
  font-weight: bold;
  text-align: center;
  flex: 1;
  margin-inline: 1rem;
}

#header-business-info p {  
    color: white;
    font-weight: bold;
    margin: 0;
}

#header-business-info a {  
    color: white;
    text-decoration: none;
}

#header-business-info a:hover {  
    color: #ffc300;
}


#viana-logo img{
    width: 100%;
    max-width: 100vw; 
    height: auto;
}

@media only screen and (max-width:768px) {
    #header-business-info ul {
        display: none;
    }
    #viana-logo {
        height: 250px;
    }
    #viana-logo a {
        display: flex;
        align-items: center;
    }
    #viana-logo img{
        scale:0.6;
    }
}

/* Root Navigation Banner Styling */
#header-navigation {
    background-color: #710000;
    border-top: 1px solid #e6decc;
    border-bottom: 1px solid #e6decc;
}

.header-navigation-mobile {
    display: none;
}

#header-navigation-toplist {
    display: grid;
	grid-template-rows: 1fr;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
	width: 100%;
	height: 100%;    
    padding: 0;
    list-style: none;
}

.nav-toplist-item {
    display: flex;
    border-left: 1px solid #e6decc;
}

.nav-toplist-item:hover,
.nav-toplist-item.nav-dropdown-root.active {
    background-color: #5a0000;
}

.nav-toplist-item > a {
    width:100%;
    text-align: center;
    padding-block: 1rem;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.nav-toplist-item:hover > a {
    color: #ffc300;
}

.nav-toplist-item:last-child {
    border-right: 1px solid #e6decc;
}

.nav-toplist-item.nav-dropdown-root .button-container button p {
    font-weight: bold;
    color: white;
    text-align: center;
    margin: 0;
}

.nav-toplist-item.nav-dropdown-root:hover .button-container button p,
.nav-toplist-item.nav-dropdown-root.active .button-container button p {
    color: #ffc300;
}

.nav-toplist-item.nav-dropdown-root .button-container button p::after {
    /* Menu Pointer Chevron */
    transform:rotate(45deg); 
    transition: transform .25s ease;
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0.25rem;
    vertical-align: middle;
    background-color: white;
    -webkit-mask: url("../images/svgs/chevron.svg") no-repeat center / contain;
            mask: url("../images/svgs/chevron.svg") no-repeat center / contain;
} 

.nav-toplist-item.nav-dropdown-root:hover .button-container button p::after {
    background-color: #ffc300;
} 

.nav-toplist-item.nav-dropdown-root.active .button-container button p::after {
    background-color: #ffc300;
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
} 

.nav-dropdown-root .button-container {
    width: 100%;
}

.nav-dropdown-root .button-container button {
    padding-block: 1rem;
    width: 100%;
} 

/* Nav Dropdown Styling */
.nav-dropdown-list-container {
    /* Size & Position*/
    display: none;    
    position: absolute;
    top:455px;
    width: 25%;
    /* Style */
    box-shadow: 4px 2px 4px 1px rgba(0, 0, 0, 0.3);
}

.nav-toplist-item.nav-dropdown-root.active.active .nav-dropdown-list-container{
    display: block;
}

.nav-dropdown-list {
    list-style: none;
    padding: 0;
}

.nav-dropdown-list-item {
    display: flex;
    border-bottom: 1px solid lightgrey;
    background-color: #f5f5f5;
    padding-left: 1rem;
}

.nav-dropdown-list-item:hover {
    background-color: #b3b3b3;
    cursor: pointer;
}

.nav-dropdown-list-item:last-child {
    border: none;
}

.nav-dropdown-list-item > a {
    width:100%;
    text-align: left;
    padding: 0.75rem;
    text-decoration: none;
    color: #424242;
}

.nav-dropdown-list-item:hover > a {
    color: black;
}


@media only screen and (max-width:768px) {
    /* Mobile Nav Config */
    .header-navigation-mobile.button-container {
        /* Mobile Nav Button Position */
        display: block;
        position: fixed;        
        top: 40px;
        right: 20px;
        /* Max Dimensions */
        width:48px;
        height:48px
    }
    .header-navigation-mobile.button-container button {
        border: none;
        border-radius: 4px;
        background-color: #e6decc;
        box-shadow: 4px 2px 4px 1px rgba(0, 0, 0, 0.3);
        width: 100%;
        height: 100%;
    }
    .header-navigation-mobile.button-container button:hover {
        cursor: pointer;
        background-color: #c4bcac;
    }
    .header-navigation-mobile.button-container img {
        width: 24px;
        height: 24px;
    }

    .header-navigation-mobile.banner {
        display: block;
        background-color: #710000;
        padding-block: 1rem;
        border-block: 1px solid #e6decc;
    }

    /* Standard Config Mobile Restyling*/
    #header-navigation {
        /* Default Positioning */
        position: fixed;
        top: 0;
        right:-260px;
        /* Active Transform */
        -webkit-transition: -webkit-transform 1s ease;
        -moz-transition: -moz-transform 1s ease;
        -o-transition: -o-transform 1s ease;
        transition: transform 1s ease;
        /* Default Size */
        margin:0;
        padding:.25rem;
        width:250px;
        height: 100%;
        overflow-y: auto;
        /* Style */
        /* Changed background colour from desktop; removed borders */
        background-color: #e6decc;
        box-shadow: -3px 2px 4px 1px rgba(0, 0, 0, 0.3);
        border: none;
    }

    #header-navigation .container {
        margin:0;
    }

    #header-navigation.active {
        transform: translate(-260px, 0px);
        -webkit-transform: translate(-260px, 0px);
        -ms-transform: translate(-260px, 0px);
        -o-transform: translate(-260px, 0px);
        -moz-transform: translate(-260px, 0px);
    }

    #header-navigation-toplist {
        /* Grid --> Flex; All other styling remains the same. */
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        align-content: stretch;
    }

    .nav-toplist-item:first-child {
        border-top: 1px solid #acacac;
    }

    .nav-toplist-item {
        /* Removed border */
        border-left: none;
        border-bottom:1px solid #acacac;
    }

    .nav-toplist-item:last-child {
        /* Removed border */
        border-right: none;
    }

    .nav-toplist-item:hover,
    .nav-toplist-item.nav-dropdown-root.active {
        background-color: #c4bcac;
    }

    .nav-toplist-item > a {
        /* Changed font to black, align to left, padding 1rem */
        text-align: left;
        color: black;
        padding: 1rem;
    }

    .nav-toplist-item:hover > a {
        /* Removed colour change on cell hover */
        color: black;
    }

    .nav-toplist-item.nav-dropdown-root .button-container button {
        /* NEW */
        padding: 1rem;
    }

    .nav-toplist-item.nav-dropdown-root .button-container button p {
        /* Text align --> left; colour --> black */
        color: black;
        text-align: left;
        
    }

    .nav-toplist-item.nav-dropdown-root:hover .button-container button p,
    .nav-toplist-item.nav-dropdown-root.active .button-container button p {
        /* Colour --> black */
        color: black;
        
    }

    .nav-toplist-item.nav-dropdown-root .button-container button p::after {
        /* Colour --> black */
        background-color: black;
    } 

    .nav-toplist-item.nav-dropdown-root:hover .button-container button p::after {
        /* Colour --> black */
        background-color: black;
    } 

    .nav-toplist-item.nav-dropdown-root.active .button-container button p::after {
        /* Colour --> black */
        background-color: black;
    } 
    .nav-dropdown-root .button-container button p {
        text-align: left;
    } 

    .nav-dropdown-root .button-container button p::after {
        background-color: black;
    }

    /* Nav Dropdown Mobile Restyling */
    .nav-dropdown-root {
        display: flex;
        flex-direction: column;
    }

    .nav-dropdown-list-container {
        /* Size & Position*/
        width: auto;
        top:0;  
        position: relative;
        /* Style */
        box-shadow: none;
        border: 1px solid lightgrey;
    }

    .nav-dropdown-list-container.active {
        display: block;
    }

    .nav-dropdown-list {
        list-style: none;
        padding: 0;
    }

    .nav-dropdown-list-item {
        display: flex;
        border-bottom: 1px solid lightgrey;
        background-color: #f5f5f5;
    }

    .nav-dropdown-list-item:hover {
        background-color: #b3b3b3;
        cursor: pointer;
    }

    .nav-dropdown-list-item:last-child {
        border: none;
    }

    .nav-dropdown-list-item > a {
        width:100%;
        text-align: left;
        padding: 0.75rem;
        text-decoration: none;
        color: #424242;
    }

    .nav-dropdown-list-item:hover > a {
        color: black;
    }

}









/* footer */
footer {
    padding-block: 1rem;
    border-top: 1px solid #e6decc;
    border-bottom: 1px solid #e6decc;
    background-color: #710000; /* Lonestar */
}

footer h1 {
    color: white;
    font-size: 1rem;
}

footer p,
footer li,
footer a {
    color: white;
    font-size: .9rem;
    font-weight: 500;
    margin-block: 0;
}

footer a:hover {
    color: #ffc300;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer div.container:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer div.container:first-child div {
    flex: 1;
}

footer div.container:first-child div:first-child {
    text-align: left;
}

footer div.container:first-child div:last-child {
    text-align: right;
    margin-block: 1rem;
}

@media only screen and (max-width: 560px) {
    footer div.container:first-child {
        flex-direction: column;
    }

    footer div.container:first-child div {
        margin-block: 1rem;
    }

    footer div.container:first-child div:first-child,
    footer div.container:first-child div:last-child {
        text-align: center;
    }
}