@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

/* --------------------------
		GENERAL STYLES
-------------------------- */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font: 1rem/1.375rem 'Open Sans', Helvetica, sans-serif; /* 16px/22px */
	color: #4a4a4a;
}

h1, h2, h3, h4 {
	font-family: 'Montserrat Alternates';
}

h2, h3 {
	text-transform: uppercase;
}

h1 {
	font-weight: 300;
	font-size: 3.0625rem; /* 49px */
	line-height: 3.375rem; /* 54px */
	color: #373737;
}

h2 {
	font-size: 1.875rem; /* 30px */
	line-height: 1.875rem;
}

h3 {
	font-size: 1.6875rem; /* 27px */
	line-height: 1.875rem;
}

a {
	text-decoration: none;
	color: #ba1022;
}

a:hover {
	text-decoration: underline;
	opacity: .8;
}

.container {
	width: 95%;
	max-width: 960px; /* Kept px for max-width per requirements */
	margin: 0 auto;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.txt-white {
	color: white;
}

.txt-red {
	color: #ba1022;
}

/* Fluid Grid System */
.col-3 { width: 22.91%; } /* 220/960 */
.col-4 { width: 31.25%; } /* 300/960 */
.col-9 { width: 72.91%; } /* 700/960 */

/* --------------------------
		HEADER & NAV
-------------------------- */
#pageHeader {
    padding: 1rem 0;
    align-items: center;
}

/* Hamburger Toggle (Hidden on Desktop) */
.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    background: none;
    border: none;
}

nav ul {
	list-style: none;
	padding: 0;
	display: flex;
}

nav ul li {
	text-transform: uppercase;
	font-size: 0.75rem; /* 12px */
}

nav ul li + li {
	margin-left: 1.25rem; /* 20px */
}

nav ul li a {
	padding: 0.125rem 0.25rem; /* 2px 4px */
	color: #706f6f;
}

nav ul li a:hover {
	background: #c90c20;
	color: white;
}

/* --------------------------
		HOME PAGE
-------------------------- */
#hero {
	background: url("../images/hero.jpg") no-repeat;
	background-size: cover;
	background-position: center;
	height: 640px; 
	padding-top: 4.6875rem; /* 75px */
}

#hero span {
	display: flex;
	justify-content: flex-end;
	margin-top: 1.5rem;
	font-size: 2.125rem; /* 34px */
	padding-right: 3.125rem; /* 50px */
}

#row2, #row3, #row4, #row5, #row6 {
	padding: 4.0625rem 0; /* 65px */
}

#row2 {
	background: #636363;
	color: white;
}

#row2 h2 {
	text-align: center;
}

#row3 {
	background: url("../images/product_background.jpg") no-repeat;
	background-size: cover;
	background-attachment: fixed;
	color: white;
}

#row3 .container {
	width: 90%;
}

#row3 ul {
	width: 23%;
	margin-bottom: 2rem;
}

#row3 h3 {
	margin-left: -1.25rem;
}

#row4 h3, #row5 h3 {
	text-align: center;
}

#row5 {
	background: url("../images/test-background.jpg") no-repeat;
	background-size: cover;
	background-attachment: fixed;
	color: white;
}

footer {
	background: black;
	color: white;
	font-size: 0.75rem;
	padding: 1.875rem 0;
	text-align: center;
}

/* ------ RESPONSIVE ------- */
@media (max-width: 768px) {
    .col-3, .col-4, .col-9, #row3 ul {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .nav-toggle {
        display: block; 
    }

   nav {
        width: 100%;
        order: 3;
    }

    

    nav ul {
    	display: none;
    	flex-direction: column;
    	width: 100%;
    	text-align: center;
    	background: #f4f4f4;
    	padding: 1rem 0;
    }


    
  #menu-btn:checked ~ nav ul {
    display: flex !important;
}

    nav ul li + li {
        margin-left: 0;
        margin-top: 1rem;
    }

    h1 {
        font-size: 2rem;
        line-height: 2.2rem;
    }

    #hero {
        height: auto;
        padding-bottom: 3rem;
    }
}