/*
Theme Name: BlankSlate Child
Theme URI: https://adrianbeal.com
Description: Child theme for the Archers Fans website.
Author: Adrian Beal
Template: blankslate
Version: 1.0
Text Domain: blankslate-child
*/

/* Put your own CSS below this line */


/* CONTAINERS */

.body {
	max-width: 1200px !important;
	margin: auto;
	
}


.PageContainer {
	padding:1em;
}



/* TEXT FORMATTING */

.CenterHeading{
	text-align: center;
	font-weight: bold;
	line-height:2em;
	font-size: 1.2em;
}

.SectionHeading{
	text-align: left;
	font-weight: bold;
	margin-bottom:0.2em;
	font-size: 1.2em;
}



.BoldText {
	font-weight: bold;
}

.CenterText {
	text-align: center;
}

.JustifyText {
	text-align: justify;
}

.RightText {
	text-align: right;
}







/* Main Archers header */

.site-header {
    background: #2f492f;
    color: #ffffff;
    width: 100%;
}

.site-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
}

.site-title {
    display: block;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
    text-decoration: none;
}

.archers-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.archers-menu li {
    margin: 0;
    padding: 0;
}

.archers-menu a {
    display: block;
    padding: 10px 14px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
}

.archers-menu a:hover,
.archers-menu a:focus {
    background: rgba(255, 255, 255, 0.18);
}

/* Highlight access buttons */

.archers-menu li:nth-last-child(2) a {
    background: #d5a72e;
    color: #1f1f1f;
    font-weight: bold;
}

.archers-menu li:last-child a {
    border: 1px solid rgba(255, 255, 255, 0.8);
    font-weight: bold;
}

/* Current page */

.archers-menu .current-menu-item > a,
.archers-menu .current-menu-ancestor > a {
    background: rgba(255, 255, 255, 0.25);
}

/* Mobile layout */

@media screen and (max-width: 750px) {

    .site-title {
        font-size: 24px;
    }

    .archers-menu {
        display: block;
    }

    .archers-menu a {
        padding: 10px 0;
    }

    .archers-menu li:nth-last-child(2) a,
    .archers-menu li:last-child a {
        margin-top: 6px;
        padding: 10px 12px;
    }
}