@charset "UTF-8";
/*
=============== 
Variables
===============
*/
:root {
  /* dark shades of primary color*/
  --clr-primary-1: hsl(205, 86%, 17%);
  --clr-primary-2: hsl(205, 77%, 27%);
  --clr-primary-3: hsl(205, 72%, 37%);
  --clr-primary-4: hsl(205, 63%, 48%);
  /* primary/main color */
  --clr-primary-5: #465928;
  /* lighter shades of primary color */
  --clr-primary-6: hsl(205, 89%, 70%);
  --clr-primary-7: hsl(205, 90%, 76%);
  --clr-primary-8: hsl(205, 86%, 81%);
  --clr-primary-9: hsl(205, 90%, 88%);
  --clr-primary-10: hsl(205, 100%, 96%);
  /* darkest grey - used for headings */
  --clr-grey-1: hsl(209, 61%, 16%);
  --clr-grey-2: hsl(211, 39%, 23%);
  --clr-grey-3: hsl(209, 34%, 30%);
  --clr-grey-4: hsl(209, 28%, 39%);
  /* grey used for paragraphs */
  --clr-grey-5: hsl(210, 22%, 49%);
  --clr-grey-6: hsl(209, 23%, 60%);
  --clr-grey-7: hsl(211, 27%, 70%);
  --clr-grey-8: hsl(210, 31%, 80%);
  --clr-grey-9: hsl(212, 33%, 89%);
  --clr-grey-10: hsl(210, 36%, 96%);
  --clr-white: #fff;
  --clr-red-dark: hsl(360, 67%, 44%);
  --clr-red-light: hsl(360, 71%, 66%);
  --clr-green-dark: hsl(125, 67%, 44%);
  --clr-green-light: hsl(125, 71%, 66%);
  --clr-gold: #c59d5f;
  --clr-black: #222;
  --ff-primary: 'Roboto', sans-serif;
  --ff-secondary: 'Open Sans', sans-serif;
  --ff-heading: 'Comforter';
  --transition: all 0.3s linear;
  --spacing: 0.15rem;
  --transition: all 0.3s linear;
  --spacing: 0.25rem;
  --radius: 2rem;
  --light-shadow: 0 5px 15px var(--clr-primary-4);
  --dark-shadow: 0 5px 15px var(--clr-primary-1);
  --fixed-width: 1400px;
  --btn-border-style: solid;
  --logo: url(./_images/logo.png);
  --background: url(https://meadowlandsbaptist.ca/wp-content/uploads/2020/03/Home-Page-Website-Photo-2020.jpg);
  }

/*
=============== 
Global Styles
===============
*/
* {
  box-sizing: border-box;
}
.clearfix::after,
.clearfix::before {
  content: '';
  clear: both;
  display: table;
}
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: var(--clr-white);
  color: var(--clr-grey-1);
  line-height: 1;
  font-size: 0.875rem;
  background-image: var(--background);
  background-repeat: no-repeat;
  background-size: cover;
}
table,
th,
td,
tr {
  background-color: var(--clr-grey-10);
  font-family: var(--ff-secondary);
  font-size: 1.5rem;
  line-height: 1.5;
  border-top: 4px solid #fff;
  border-left: 2px solid var(--clr-grey-8);
  border-right: 1px solid #fff;
  border-bottom: 1px solid var(--clr-grey-8);
  text-align: center;
  justify-content: center;
  word-wrap: wrap;
}
th {
  color: var(--clr-primary-10);
  font-size: 1.5rem;
  border-style: double;
  background-color: var(--clr-primary-1);
  font-family: var(--ff-primary);
}
table {
  border-radius: var(--radius);
}
.sr-only,
.gsc-adBlock {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; /* added line */
  border: 0;
}
/* content divider */
.content-divider ul:after {
  height: 0.5rem;
  background-image: linear-gradient(
    to left,
    var(--clr-primary-4),
    #e9b949,
    var(--clr-primary-4)
  );
  content: '';
  clear: both;
  display: block;
}
.container {
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
  overflow: auto;
}
.route-container {
  display: flex;
  /* background-color: green; */
  width: 85%;
  height: auto;
  margin: 0 auto;
  justify-content: space-around;
}
.route-name {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 65%;
  min-height: 60px;
  min-width: 200px;
  font-size: 20px;
  /* background-color: blue; */
  margin: 20px auto;
}
.route-name.btn {
  font-size: 2rem;
  text-transform: uppercase;
}

.section-center {
  display: block;
  background-color: var(--clr-grey-6);
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  letter-spacing: var(--spacing);
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
h1 {
  font-size: 2.75rem;
}
h2 {
  font-size: 2rem;
  text-align: center;
  color: #872c3d;
  font-style: italic;
  margin: 0px;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 0.875rem;
}
p {
  margin-bottom: 1.25rem;
  color: var(--clr-grey-5);
}
.logo {
  background: var(--logo) center/cover no-repeat fixed;
  float: left;
}
/*
=============== 
More Global CSS
===============
*/
/* .nav {
  display: flex;
  height: 1rem;
  justify-content: center;
  background: transparent;
  z-index: 1;
} */
img {
  width: 100%;
  display: block;
}
.imgwrap {
  top: 200px;
  left: 0;
  width: 180px;
  height: auto; /* maintain aspect ratio*/
  margin: auto; /*optional centering of image*/
  /* z-index: 2; */
}
.nav-center {
  margin: 0;
  width: 100%;
}

.nav-toggle .fa-bars {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
}
.showNav {
  transform: translate(0);
}
.nav-btn {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: var(--clr-grey-10);
  z-index: 2;
  box-shadow: 2px 0 2px rgba(0, 0, 0, 0.2);
  /* hide navbar */
  transform: translateX(-100%);
  transition: var(--transition);
}
.navbar-header {
  text-align: right;
  padding-right: 1rem;
}
.nav-close {
  font-size: 2.5rem;
  cursor: pointer;
  color: #f29c9c;
  transition: var(--transition);
}
.nav-close:hover {
  color: rgb(19, 5, 143);
}
.nav-items {
  list-style-type: none;
}
.nav-link {
  display: block;
  font-size: 1.5rem;
  padding: 0.25rem 1rem;
  text-transform: uppercase;
  letter-spacing: var(--spacing);
  color: var(--clr-grey-5);
  transition: var(--transition);
}
.nav-link:hover {
  background: var(--clr-primary-light);
  color: var(--clr-primary);
  padding-left: 1.5rem;
  border-left: 0.25rem solid var(--clr-primary);
}
.main-navbar {
  background: var(--clr-grey-9);
  padding: 0 2rem;
  max-width: 1170px;
  margin: 0 auto;
}
.main-navbar li {
  list-style: none;
}
.main-navbar a:hover {
  color: var(--clr-black);
}
.main-navbar a {
  text-transform: capitalize;
  display: block;
  padding: 1rem 0;
  color: var(--clr-gold);
  letter-spacing: var(--spacing);
  transition: var(--transition);
}
.header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('') center/cover no-repeat fixed;
  position: relative;
  /* animation */
  overflow-x: hidden;
}
.btn,
.edit-btn,
.delete-btn {
  font-size: 1rem;
  justify-content: center;
  border-radius: var(--radius);
  padding: 20px 0px 20px 0px;
  border-left: 1px;
  border-top: 1px;
  border-style: solid;
  border-color: var(--clr-grey-5);
  box-shadow: 4px 4px 8px var(--clr-primary-4);
  color: white;
  background: #000000;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  height: 2rem;
}
.inline-btn {
  float: none;
  display: inline-block;
}
.clear-btn {
  width: 125px;
}
.btn:hover {
  background: var(--clr-grey-4);
  color: var(--clr-primary-1);
  transition: var(--transition);
  transform: 0 5px;
}
.nav-links {
  width: 50%;
  max-width: 400px; /*actual image width*/
  height: auto; /* maintain aspect ratio*/
  margin: auto; /*optional centering of image*/
}
.signin-btn {
  display: none;
}
.hero::before {
  content: '';
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
  background: url(./images/hero.svg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: -5rem;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
}
.hero-center {
  width: 90vw;
  max-width: var(--max-width);
  display: flex;
  align-items: center;
  text-align: center;
}
.hero-info h1 {
  text-transform: none;
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-info p {
  max-width: 35em;
  line-height: 1.8;
}
.hero-images {
  display: none;
}
.underline {
  clear: both;
}
/*
=============== 
List Styles
===============
*/
.grocery-container {
  color: var(--clr-black);
  display: inline;
  background-color: wheat;
}
.form-control {
  width: 100px;
  display: block;
  float: left;
}
.grocery-list {
  clear: both;
  color: white;
  background-color: var(--clr-green-light);
  font-size: 0.3rem;
  border-right: 1px solid var(--clr-grey-4);
  border-left: 1px solid white;
  border-bottom: 1px solid var(--clr-grey-4);
  padding: 2px 1px;
}
/*
=============== 
Wheel Styles
===============
*/
.wheel-container {
  position: relative;
  width: 200px;
  height: 200px;
  top: 0;
  left: 0;
}
.wheel {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: var(--clr-grey-2);
  top: 50%;
  left: 50%;
  color: white;
}
/*
=============== 
Card Styles
===============
*/
.google-search {
  padding: 4rem 0;
}
.search-title{
  text-align: center;
  font-family: var(--ff-heading);
  color: var(--clr-primary-1);
 padding: 0;
}
.search-info h3 {
  text-align: center;
  font-size: 2rem;
  padding: 0 px;
}
.search-info p {
  text-align: center;
  font-size: 1.5rem;
  padding: 0 20px;
}
.search-footer {
  text-align: center;
  font-size: .5rem;
  padding: 0 20px 20px 20px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.search-center {
  display: grid;
  max-width: 1170px;
  margin: 2rem auto;
  grid-template-columns: 1fr;
}
.gcard {
  display:grid;
  background:var(--clr-white);
  border: 2px solid var(--clr-primary-1);
  margin: 2rem 2rem;
  border-radius: var(--radius);
}
.gcard img {
  object-fit: cover;
  width:100%;
  height:200px;
  padding: .1rem;
  border-radius: 30px 30px 0 0;
  }
/*
=============== 
Google Search Customizations
===============
*/
    /* Use a different font family for search results */
    .gs-title, .gs-snippet {
        font-family: courier;
    }

    /* Add a border between individual search results */
    .gs-webResult {
        border: 1px solid #eee;
        padding: 1em;
    }

    /* Do no display the count of search results 
    .gsc-result-info {
        display: none;
    }*/

    /* Hide the Google branding in search results */
    .gcsc-branding {
        display: none;
    }

    /* Hide the thumbnail images in search results */
    .gsc-thumbnail {
        display: none;
    }

    /* Hide the snippets in Google search results 
    .gs-snippet {
        display: none;
    }

    /* Change the font size of the title of search results */
    .gs-title a {
        font-size: 16px;
    }*/

    /* Change the font size of snippets inside search results */
    .gs-snippet {
        font-size: 14px;
    }

    /* Google Custom Search highlights matching words in bold, toggle that */
    .gs-title b, .gs-snippet b {
        font-weight: normal;
    }

    /* Do no display the URL of web pages in search results */
    .gsc-url-top, .gsc-url-bottom {
        display: none;
    }

    /* Highlight the pagination buttons at the bottom of search results */
    .gsc-cursor-page {
        font-size: 1.5em;
        padding: 4px 8px;
        border: 2px solid #ccc;
    }
    .gsc-input {
      font-size: 2rem !important;
    }
    .gsc-search-button svg {
      width: 26px !important;
      height: 26px !important;
    }
    /* .gcard {
     display: grid;
     grid-template-columns: 1fr;
     grid grid-template-rows: auto 1fr 1fr auto;
    } */
    
/*
=============== 
Media Queries
===============
*/
/* @media screen and (min-width: 576) {
  .scroll-link {
    float: left;
    width: 25%;
  }
}
@media screen and (min-width: 768px) {
  .navbar {
    width: 30vw;
    max-width: 20rem;
  }
 } */
@media screen and (min-width: 992px) {
  .main-navbar ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1170px;
    margin: 0 auto;
  }
}
