/* green: #71a242
orange: #ef6d25
blue: #337c9a
title font: #104c6a
font: Poppins (google) */

@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

* {
  box-sizing: border-box;
  margin: 0px;
  font-family: "Poppins", sans-serif;
}

html {
  font-size: 16px;
  height: 100%;
  width: 100%;
}

main {
  /* max-width: 80vw; */
  margin: auto;
  /* background-image: url('../images/fireplace-focal-point.jpg');
    background-position: center;
    background-size: cover;
    position: relative; */
}

.orange {
  color: #ef6d25;
}

.green {
  color: #71a242;
}

.blue {
  color: #337c9a;
}

.dk_gray {
  color: #333;
}

.white {
  color: #fff;
}

.orange_bkgd {
  background-color: #ef6d25;
}

.blue_bkgd {
  background-color: #337c9a;
}

.white_bkgd {
  background-color: white;
}

.rem1_3 {
  font-size: 1.3rem;
}
h3,
.rem1_5 {
  font-size: 1.5rem;
}

h2,
.rem2 {
  font-size: 2rem;
}

.rem2_5 {
  font-size: 2.5rem;
}

.rem3 {
  font-size: 3rem;
}

.rem4 {
  font-size: 4rem;
}

.center_text {
  text-align: center;
}

.heavy {
  font-weight: bold;
}

.upper {
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding-top: 20px;
}

/*========================*/
/*=======HEADER===========*/
/*========================*/
header {
  padding: 25px 25px 10px 25px;
  border-bottom: 5px double #71a242;
  /* border-bottom: 5px solid white;
    border-bottom: 12px solid #71a242; */
}

/*========LOGO============*/
.logo {
  width: 80vw;
}

/*==========NAV===========*/
.nav_menu {
  background: white;
  position: fixed;
  z-index: 1;
  height: 100%;
  top: 0px;
  right: 0px;
  overflow-x: hidden;
}

.nav_menu ul {
  margin-top: 50px;
}

.nav_menu li {
  list-style-type: none;
  /* display: inline; */
  padding: 5px 0px;
}

.nav_menu a {
  text-decoration: none;
  font-size: 1.5rem;
  color: #ef6d25;
  font-weight: 700;
}

.nav_menu a.active_nav {
  color: #337c9a;
  font-weight: bold;
}

.nav_menu a:hover {
  color: #71a242;
  font-weight: bold;
}

.nav_menu a.active_nav:hover {
  color: #337c9a;
  font-weight: normal;
}

.line {
  width: 50px;
  height: 5px;
  background-color: #ef6d25;
  margin-top: 6px;
  transition: 0.4s;
}

.menu_icon {
  cursor: pointer;
  display: grid;
  justify-items: end;
}

.nav_menu .close_icon {
  position: absolute;
  top: 10px;
  left: 40px;
  font-size: 2.3rem;
  color: #ef6d25;
}

/*=======PHONE===========*/
.phone {
  display: none;
}

/*========================*/
/*========MAIN===========*/
/*========================*/
.main {
  /* width: 80vw;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto;
    gap: 30px;
    padding: 30px 0px; */


  /* background-image: url("../images/pexels-kitchen-sm.jpg"); */
  background-image: url("../images/brittanicca.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
}

main h1 {
  line-height: 1.1;
  grid-column: 1/3;
  text-shadow: 2px 2px 4px #ddd;
  padding-top: 0px;
}

.container {
  width: 80vw;
  margin: auto;
  padding: 30px 0px;
}

button {
  padding: 5px 15px;
  margin-top: 10px;
  cursor: pointer;
}

form {
  text-align: center;
}

#address1,
#address2 {
  /* display: none; */
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

table, td {
  border: 1px solid #71a242;
}

/*=========MAP============*/
iframe {
  border: 5px solid #333;
  width: 80vw;
  height: 50vh;
}

/*========================*/
/*=======FOOTER===========*/
/*========================*/

footer {
  text-align: center;
  padding: 25px 0px;
  /* display: flex;
  justify-content: space-between; */
}

.footer_hr {
  width: 20vw;
  margin: 10px auto;
  background-color: #71a242;
  height: 2px;
  border: none;
}

/* .map {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.map iframe {
  box-shadow: 5px 5px 10px #333;
  margin: 10px 0px;
} */

/*========================*/
/*=====RESPONSIVE=========*/
/*========================*/

@media screen and (min-width: 650px) {
  /*==========HEADER=========*/
  header {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    /* padding-top: 15px; */
  }

  /*========LOGO============*/
  .logo {
    width: 60vw;
    grid-column: 1/2;
    grid-row: 1/2;
    align-self: flex-end;
    margin-bottom: -5px;
    margin-left: -5px;
    padding-top: 0px;
  }

  /*==========NAV===========*/
  .nav_menu {
    grid-column: 1/3;
    grid-row: 2/3;
    display: grid;
    justify-content: end;
    align-items: end;
    width: 100% !important;
    position: relative;
  }

  .nav_menu li {
    display: inline;
    padding: 0px 0px 0px 15px;
  }

  .nav_menu ul {
    margin-top: 0px;
  }

  .nav_menu a {
    font-size: 2rem;
    font-weight: normal;
  }

  .nav_menu a:hover {
    color: #71a242;
    font-weight: bold;
  }

  .menu_icon {
    display: none;
  }

  .nav_menu .close_menu {
    display: none;
  }

  /*=======PHONE===========*/
  .phone {
    grid-column: 2/3;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .phone a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    padding: 5px;
  }

  .phone img {
    width: 25px;
  }

  .phone a:hover {
    font-weight: bold;
  }

  /*========MAIN===========*/
  main h1 {
    font-size: 4rem !important;
  }

  .main .container {
    display: grid;
    grid-template-columns: auto auto;
    gap: 30px;
  }

  h2 {
    font-size: 2.5rem;
  }

  /*=======FOOTER===========*/

  footer {
    padding: 25px 80px;
    display: flex;
    justify-content: space-between;
  }

  .footer_hr {
    display: none;
  }
  .footer_address {
    text-align: right;
  }
}

@media screen and (min-width: 900px) {
  /*==========HEADER=========*/
  header {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    /* padding-top: 15px; */
  }

  /*========LOGO============*/
  .logo {
    width: 30vw;
    grid-column: 1/2;
    grid-row: 1/3;
    align-self: flex-end;
    margin-bottom: -5px;
    margin-left: -5px;
    padding-top: 0px;
  }

  /*==========NAV===========*/
  .nav_menu {
    grid-column: 2/3;
    grid-row: 2/3;
  }

  /*==========MAIN==========*/

}
