@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap");

/* BASE STYLES */
/* Box Sizing   */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* Text color for class text-primary which is in a <span> */
.text-primary {
  color: #b4ff3b;
}

/* Adventures Channel logo Channel word color */
.logo {
  color: #0284d0;
}

/* Base Body */
body {
  font-family: "Open Sans", sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* Base List */
ul {
  list-style: none;
}

/* All Links */
a {
  color: #333;
  text-decoration: none;
}

/* Large Header */
h1 {
  font-weight: 00;
  line-height: 1.2rem;
}

/* Medium Header */
h2,
h4,
p {
  font-weight: 600;
  line-height: 1.2rem;
  color: white;
  /* background-color: #333; */
  text-shadow: 2px 2px 5px rgb(0, 0, 0);
}

/* Images */
img {
  width: 100%;
  height: auto;
  margin-bottom: -10px;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #333;
  color: #fff;
  /* opacity: 0.8; */
  width: 100%;
  /* height: auto; */
  height: 70px;
  position: fixed;
  top: 0px;
  padding: 0 10px;
}

.navbar a {
  color: #fff;
  padding: 10px 20px;
  margin: 0 5px;
}

.navbar a:hover {
  border-bottom: #e1ff36 2px solid;
}

.navbar ul {
  display: flex;
}

.navbar .logo {
  font-weight: 400;
}

/* Flex items */
.flex-items {
  display: flex;
  text-align: center;
  justify-content: center;
  height: 100%;
}

.section-header h4 {
  font-size: 40px;
  /* margin: 10px 0; */
}

/* Flex grid */
.flex-grid .row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 5px;
}

.flex-grid .column {
  flex: 25%;
  max-width: 25%;
  padding: 4px;
}

.btn:hover {
  opacity: 0.8;
}

.btn-primary,
.bg-primary {
  background: #28a475;
  color: #fff;
}

.btn-secondary,
.bg-secondary {
  background: #0284d0;
  color: #fff;
}

.btn-dark,
.bg-dark {
  background: #333;
  color: #fff;
}

.btn-light,
.bg.light {
  background: #f4f4f4;
  color: #333;
}

.btn-outline {
  background: transparent;
  border: 1px solid #fff;
}

/* The asterisk selector in this case is selecting all elements in the defined hero class */
.hero * {
  z-index: 0;
}

.section-header {
  width: 100%;
  opacity: 1;
  background: #333;
  height: auto;
  padding: 30px 0 20px 0;
  background-size: auto;
}

.section-header h4 {
  color: #e1ff36;
  font-size: 1.5rem;
  padding: 10px;
}

.section-header p {
  color: burlywood;
  padding: 10px;
}

.row {
  background: #333;
}

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 200px;
}

.footer a {
  color: #28a475;
  /* color: #fff; */
}

.footer .social > * {
  margin-right: 30px;
}

.footer a:hover {
  color: #0284d0;
}

/* Mobile */
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    height: 60px;
    padding: 5px;
  }

  .navbar a {
    padding: 2px 2px;
    margin: 0 2px;
  }

  .flex-columns .column,
  .flex-grid .column {
    flex: 100;
    min-width: 100%;
  }
}

/* NOTES
- All media queries to go into the style.css file
- Essentially we just need to stack all the elements of the website so
the website looks correct when viewed on a small screen device
*/
