/*
Theme Name: AAABins
Theme URI: https://harmonicdesign.ca
Author: Harmonic Design
Author URI: https://harmonicdesign.ca
Description: This theme is for use on *** <strong>only</strong>
*/


:root {
	--yellow: #fbc925;
	--dark: #231f1f;
	--border: rgba(255, 255, 255, 0.2);
}

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html,
body {
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 1.4;
	color: #fefefe;
	font-family: sans-serif;
	background: var(--dark);
}

img {
	max-width: 100%;
	height: auto;
}

.wrap {
	max-width: 1200px;
	margin: 0 auto;
}

.button {
	color: var(--dark);
	background-color: var(--yellow);
	text-transform: uppercase;
	display: inline-block;
	text-decoration: none;
	padding: 1rem 2rem;
	font-weight: bold;
	font-size: 1rem;
	transition: all ease-in-out 350ms;
}

.button:hover {
	opacity: 0.8;
}

.cols {
	display: grid;
	grid-gap: 4rem;
}

.col-1-1 {
	grid-template-columns: minmax(10px, 1fr) minmax(10px, 1fr);
}

.col-1-2 {
	grid-template-columns: minmax(10px, 1fr) minmax(10px, 2fr);
}

.col-2-1 {
	grid-template-columns: minmax(10px, 2fr) minmax(10px, 1fr);
}

.col-1-1-1 {
	grid-template-columns: minmax(10px, 1fr) minmax(10px, 1fr) minmax(10px, 1fr);
}

.valign {
	align-items: center;
}


.hd-accordion {
	margin-bottom: 1rem;
}

.hd-accordion-title {
	padding: 12px 22px;
	font-weight: 300;
	display: block;
	background: #fefefe;
	color: var(--dark) !important;
	text-align: left;
	border: none;
	font-size: 1.3em !important;
	cursor: pointer;
	margin: 0;
	text-transform: uppercase;
	font-weight: bold
}

.hd-accordion-title::before {
	content: "+";
	margin-right: 10px;
	position: relative;
	top: 1px;
}

.hd-accordion-title:hover {
	color:#000 !important;
	background: var(--yellow);
}

.hd-accordion-title.hd-accordion-active {
	color:#000 !important;
	background: var(--yellow);
}

.hd-accordion-content {
	pointer-events: none;
	opacity: 0;
	position: relative;
	height: 0;
	transition: 0.2s all ease-in-out;
	visibility: hidden;
}

.hd-accordion-title.hd-accordion-active + .hd-accordion-content {
	opacity: 1;
	pointer-events: initial;
	height: initial;
	-webkit-transition: 1s all ease-in-out;
	transition: 1s all ease-in-out;
	visibility: visible;
}

.hd-accordion-title.hd-accordion-active::before {
	content: "-";
	top: -1px;
}

.hd-accordion-content .wp-block-columns img {
	padding: 2rem;
}


#top_bar {
	display: flex;
	justify-content: center;
	text-transform: uppercase;
	color: var(--yellow);
	line-height: 1;
	align-items: center;
	border-bottom: solid var(--border) 1px;
	font-size: 0.8rem;
}

#top_bar_social {
	margin-left: 2rem;
	display: flex;
}

.top_bar_social_icon {
	display: grid;
	width: 35px;
	height: 35px;
	place-items: center;
	padding: 8px;
	border-left: solid var(--border) 1px;
}

#top_bar_social svg {
	fill: #fefefe;
}

.top_bar_social_icon:last-child {
	border-right: solid var(--border) 1px;
}

.top_bar_social_icon:hover {
	background-color: var(--border);
}

#top_bar_social .top_bar_social_icon:hover svg {
	fill: var(--yellow);
}

#navigation {
	display: grid;
	grid-template-columns: 150px 1fr;
	grid-gap: 2rem;
	padding: 4rem 0;
	align-items: center;
	line-height: 1;
}

#navigation > nav {
	display: flex;
}

#navigation > nav > a {
	display: inline-block;
	padding: 1.57rem;
	background-color: rgba(0, 0, 0, 0.5);
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
}

#navigation > nav > a:hover {
	background-color: var(--yellow);
	color: var(--dark);
}

.home header {
	background-image: url(https://aaabinsinc.com/wp-content/uploads/2024/01/AAA-Bins-Sliders_1080x720_TOP_V8-copy.jpg);
	background-size: cover;
	min-height: 90vh;
	background-position: bottom;
}

header {
	padding-bottom: 4rem;
	background-image: url(https://aaabinsinc.com/wp-content/uploads/2024/01/AAA-Bins-Sliders_PAGES-copy.jpg);
	background-size: cover;
	background-position: bottom;
}

.home #hero {
	font-size: 1.8rem;
}


.single h1,
.page h1 {
	font-size: 3rem;
    text-align: center;
    color: var(--yellow);
    background-color: var(--dark);
    display: inline-block;
    margin: 0 auto;
    padding: 1rem;
    line-height: 1;
}

.single #hero .wrap,
.page #hero .wrap {
	text-align: center;
}

.home h1 {
	text-align: left;
}

header,
.home_section {
	border-bottom: 8px solid var(--yellow);
}

.home_section {
	padding: 4rem 0;
}

.home_section > .wrap > h2 {
	text-align: center;
	margin-top: 0;
	font-size: 3rem;
	color: var(--yellow);
}

#content.wrap {
	padding: 4rem 0;
}

.single main,
.page main {
	border-bottom: 8px solid var(--yellow);
}

/* Choose a Bin */
.bin_item {
	background-color: #fefefe;
	text-align: center;
	padding: 2rem;
	transition: all ease-in-out 350ms;
}
.bin_item h3,
.bin_item_price {
	color: var(--yellow);
	font-size: 2rem;
	line-height: 1.4;
	display: inline-block;
	margin: 0;
	font-weight: bolder;
}

.bin_item_content {
	background-color: var(--dark);
	padding: 1rem;
}

.bin_item_description > p {
	font-size: 0.8rem;
}

.bin_item_description > p > strong {
	display: block;
	font-size: 1.2em;
	color: #fff;
}

.bin_item .button {
	position: relative;
	top: 2rem;
}
.bin_item .button:hover {
	opacity: 1;
	color: var(--dark);
	background-color: #fefefe;
}
.bin_item:hover {
	background-color: var(--yellow);
}

/* Testimonials */
#home_testimonials {
	text-align: center;
}
#home_testimonials > .wrap > h2 {
	margin-bottom: 0;
}
#home_testimonal_wrapper blockquote {
	padding: 2rem;
	border: 1px solid var(--border);
	font-style: italic;
}
#home_testimonal_wrapper blockquote > cite {
	font-size: 1.1em;
}
#home_testimonal_wrapper a {
	color: var(--yellow);
	text-decoration: none;
	font-size: 1.4rem;
}

/* Footer */
#footer_header {
	background-image: url(https://aaabinsinc.com/wp-content/uploads/2024/01/AAA-Bins-Sliders_1080x720_BOTTOM_V2-copy.jpg);
	background-size: cover;
	display: grid;
	place-items: center;
	text-align: center;
	color: #2d2d2d;
	padding: 6em 0 12em 0;
	background-position: center;
}
#footer_header > .wrap {
	padding: 2em;
}
#footer_header h3 {
	font-size: 48px;
	margin-top: 0;
	padding: 0;
	color: #fff;
}
#footer_content {
	position: relative;
	top: -6em;
	margin-bottom: -1em;
	display: grid;
	grid-template-columns: minmax(10px, 1fr) minmax(10px, 1fr);
	text-align: center;
}
#footer_content h3 {
	font-size: 2rem;
	margin: 0;
}
#footer_content > div {
	padding: 2em;
	font-size: 0.8em;
	background-color: var(--dark);
}
#footer_content > div#footer_form {
	background-color: var(--yellow);
}
#footer_content > div > img {
	max-width: 80%;
}
#footer_social {
	padding: 0 !important;
}
#footer_social > a {
	border: 1px solid #bbb;
	display: inline-block;
	padding: 1em;
	line-height: 1;
	color: #575759;
	font-size: 14px;
}
#footer_social svg {
	width: 22px;
	fill: #fefefefe;
	display: block;
	line-height: 1;
}
#footer_social > a:hover {
	background-color: var(--border);
	color: #fff;
}

#footer_social > a:hover > svg {
	fill: var(--yellow);
}

#footer_bottom {
	padding: 1em 0;
	background-color: var(--yellow);
}

/* HDF */
.hdf-item,
#footer_content .hdf-label {
	text-align: left;
	color: var(--dark);
}
.hdf-label {
	color:#fefefe;
}

#footer_form .hdf-form .hdf-input {
	background-color: transparent;
}
#footer_form .hdf-button {
	background-color: var(--dark);
}
#footer_bottom > .wrap {
	color: #222;
	display: grid;
	grid-template-columns: 1fr max-content;
	font-size: 14px;
}

#footer_bottom a {
	margin-left: 1em;
	color: #222;
	text-decoration: none;
}

#mobile_toggle{
	display: none;
}

#mobile_toggle > span {
	width: 30px;
	height: 4px;
	background-color: white;
	margin: 6px 0;
	display: block;
}

#mobile_toggle.active > span {
	background-color: var(--yellow);
}

#navigation > nav.active {
	display: flex;
	flex-direction: column;
    justify-content: center;
    width: 100%;
    position: fixed;
	z-index: 3;
    top: 0;
    left: 0;
    height: 100vh;
    overflow: auto;
    background: var(--dark);
    padding: 4rem;
}

#navigation > nav.active > a {
    display: block;
    padding: 0;
    background-color: initial;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
	margin: 1rem 0;
}

@media (max-width: 1000px) {
	#top_bar,
	#navigation > nav {
		display: none;
	}
	
	#navigation {
		padding: 2rem;
    	grid-template-columns: 1fr max-content;
	}


	#mobile_toggle {
		display: block;
		z-index: 9999
	}
	
	.cols,
	#footer_content {
		grid-template-columns: 1fr;
	}
	
	.wrap {
		padding: 0 2rem;
	}
	
	#content.wrap {
		padding: 0 2rem;
	}
	
	h1 {
		font-size: 2.5rem;
	}
	
	.home_section > .wrap > h2 {
		line-height: 1.2;		
    	font-size: 2rem;
	}
	
	.home header {
		min-height: 60vh
	}
	
	header {
		padding: 0 0 2rem 0;
	}
	
	#logo {
		max-width: 100px
	}
	
	.hd-accordion-title {
		font-size: 1.15em !important
	}
	
	.single main,
	.page main {
		padding: 4rem 0
	}
	
	.home #hero > .wrap > div:first-child{
		display: none;
	}
	
	#footer_header h3 {
		font-size: 2rem;
		line-height: 1.2
	}
}